Convert all other badges to flat-square style

This commit is contained in:
tycrek 2020-06-01 15:44:10 -06:00
parent 594abe5738
commit 626ed88825

View File

@ -29,7 +29,7 @@ const BUILD_SECTION = {
} }
// Button that brings the user to the top of the page // Button that brings the user to the top of the page
const BACK_TO_TOP = '[![Back to top](https://img.shields.io/badge/Back%20to%20top-lightgrey.svg)](#index)'; const BACK_TO_TOP = '[![Back to top](https://img.shields.io/badge/Back%20to%20top-lightgrey?style=flat-square)](#index)';
/** /**
* Main method * Main method
@ -134,7 +134,7 @@ function generateServiceSection(data) {
* @param {String} appId The package identifier on F-Droid * @param {String} appId The package identifier on F-Droid
*/ */
function fdroidLink(appId) { function fdroidLink(appId) {
return `[![F-Droid](https://img.shields.io/f-droid/v/${appId})](https://f-droid.org/en/packages/${appId}/)`; return `[![F-Droid](https://img.shields.io/f-droid/v/${appId}?style=flat-square)](https://f-droid.org/en/packages/${appId}/)`;
} }
/** /**
@ -143,7 +143,7 @@ function fdroidLink(appId) {
*/ */
function addonLink(link) { function addonLink(link) {
let addonId = link.split('/')[link.split('/').length - 1] let addonId = link.split('/')[link.split('/').length - 1]
return `![Mozilla Add-on](https://img.shields.io/amo/users/${addonId})`; return `![Mozilla Add-on](https://img.shields.io/amo/users/${addonId}?style=flat-square)`;
} }
/** /**
@ -151,7 +151,7 @@ function addonLink(link) {
* @param {String|Number} date Date of publication * @param {String|Number} date Date of publication
*/ */
function dateBadge(date) { function dateBadge(date) {
return `![Published](https://img.shields.io/badge/${date.toString().replace(/\-/g, '--')}-informational.svg)` return `![Published](https://img.shields.io/badge/${date.toString().replace(/\-/g, '--')}-informational?style=flat-square)`
} }
/** /**