mirror of
https://github.com/mue/mue.git
synced 2026-07-17 22:14:13 +02:00
chore: release 5.3.1
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"name": "__MSG_name__",
|
"name": "__MSG_name__",
|
||||||
"description": "__MSG_description__",
|
"description": "__MSG_description__",
|
||||||
"version": "5.3.0",
|
"version": "5.3.1",
|
||||||
"homepage_url": "https://muetab.com",
|
"homepage_url": "https://muetab.com",
|
||||||
"browser_action": {
|
"browser_action": {
|
||||||
"default_icon": "icons/128x128.png"
|
"default_icon": "icons/128x128.png"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Mue",
|
"name": "Mue",
|
||||||
"description": "Fast, open and free-to-use new tab page for modern browsers.",
|
"description": "Fast, open and free-to-use new tab page for modern browsers.",
|
||||||
"version": "5.3.0",
|
"version": "5.3.1",
|
||||||
"homepage_url": "https://muetab.com",
|
"homepage_url": "https://muetab.com",
|
||||||
"browser_action": {
|
"browser_action": {
|
||||||
"default_icon": "icons/128x128.png"
|
"default_icon": "icons/128x128.png"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"homepage": "https://muetab.com",
|
"homepage": "https://muetab.com",
|
||||||
"bugs": "https://github.com/mue/mue/issues/new?assignees=&labels=bug&template=bug-report.md&title=%5BBUG%5D",
|
"bugs": "https://github.com/mue/mue/issues/new?assignees=&labels=bug&template=bug-report.md&title=%5BBUG%5D",
|
||||||
"license": "BSD-3-Clause",
|
"license": "BSD-3-Clause",
|
||||||
"version": "5.3.0",
|
"version": "5.3.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/react": "^11.4.1",
|
"@emotion/react": "^11.4.1",
|
||||||
"@emotion/styled": "^11.3.0",
|
"@emotion/styled": "^11.3.0",
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
"start": "webpack serve",
|
"start": "webpack serve",
|
||||||
"build": "webpack --mode=production",
|
"build": "webpack --mode=production",
|
||||||
"chrome": "cp manifest/chrome.json build/manifest.json && cp -r manifest/_locales build/_locales && cp manifest/background-chrome.js build/background-chrome.js",
|
"chrome": "cp manifest/chrome.json build/manifest.json && cp -r manifest/_locales build/_locales && cp manifest/background-chrome.js build/background-chrome.js",
|
||||||
"firefox": "rm -rf build/_locales && cp manifest/firefox.json build/manifest.json && cp manifest/background-firefox.js build/background-firefox.js"
|
"firefox": "rm -rf build/_locales && cp manifest/firefox.json build/manifest.json"
|
||||||
},
|
},
|
||||||
"browserslist": {
|
"browserslist": {
|
||||||
"production": [
|
"production": [
|
||||||
|
|||||||
@@ -35,4 +35,4 @@ export const OFFLINE_IMAGES = 20;
|
|||||||
|
|
||||||
// Version
|
// Version
|
||||||
export const BETA_VERSION = false;
|
export const BETA_VERSION = false;
|
||||||
export const VERSION = '5.3.0';
|
export const VERSION = '5.3.1';
|
||||||
|
|||||||
@@ -91,8 +91,8 @@ export function loadSettings(hotreload) {
|
|||||||
const js = localStorage.getItem('customjs');
|
const js = localStorage.getItem('customjs');
|
||||||
if (js) {
|
if (js) {
|
||||||
try {
|
try {
|
||||||
// eslint-disable-next-line no-new-func
|
// eslint-disable-next-line no-eval
|
||||||
Function(`'use strict'; return (${js})`)();
|
eval(js);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error('Failed to run custom JS: ', e);
|
console.error('Failed to run custom JS: ', e);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ export default class Stats {
|
|||||||
payload: {
|
payload: {
|
||||||
website: this.id,
|
website: this.id,
|
||||||
url: '/',
|
url: '/',
|
||||||
language: localStorage.getItem('language').replace('_', '-'),
|
language: window.languagecode.replace('_', '-'),
|
||||||
screen: `${window.screen.width}x${window.screen.height}`
|
screen: `${window.screen.width}x${window.screen.height}`
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"stats": {
|
"stats": {
|
||||||
"title": "Stats",
|
"title": "Stats",
|
||||||
"warning": "You need to enable usage data in order to use this feature. This will also post anonymous statistics to our umami instance.",
|
"warning": "You need to enable usage data in order to use this feature. This will post anonymous statistics to our umami instance.",
|
||||||
"sections": {
|
"sections": {
|
||||||
"tabs_opened": "Tabs opened",
|
"tabs_opened": "Tabs opened",
|
||||||
"backgrounds_favourited": "Backgrounds favourited",
|
"backgrounds_favourited": "Backgrounds favourited",
|
||||||
|
|||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"stats": {
|
"stats": {
|
||||||
"title": "Stats",
|
"title": "Stats",
|
||||||
"warning": "You need to enable usage data in order to use this feature. This will also post anonymous statistics to our umami instance.",
|
"warning": "You need to enable usage data in order to use this feature. This will post anonymous statistics to our umami instance.",
|
||||||
"sections": {
|
"sections": {
|
||||||
"tabs_opened": "Tabs opened",
|
"tabs_opened": "Tabs opened",
|
||||||
"backgrounds_favourited": "Backgrounds favourited",
|
"backgrounds_favourited": "Backgrounds favourited",
|
||||||
|
|||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"stats": {
|
"stats": {
|
||||||
"title": "Stats",
|
"title": "Stats",
|
||||||
"warning": "You need to enable usage data in order to use this feature. This will also post anonymous statistics to our umami instance.",
|
"warning": "You need to enable usage data in order to use this feature. This will post anonymous statistics to our umami instance.",
|
||||||
"sections": {
|
"sections": {
|
||||||
"tabs_opened": "Tabs opened",
|
"tabs_opened": "Tabs opened",
|
||||||
"backgrounds_favourited": "Backgrounds favourited",
|
"backgrounds_favourited": "Backgrounds favourited",
|
||||||
|
|||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"stats": {
|
"stats": {
|
||||||
"title": "Estadísticas",
|
"title": "Estadísticas",
|
||||||
"warning": "Tienes que activar las estadísticas de uso para poder utilizar esta función. Esto también enviará estadísticas anónimas a nuestra instancia de umami.",
|
"warning": "Tienes que activar las estadísticas de uso para poder utilizar esta función. Esto enviará estadísticas anónimas a nuestra instancia de umami.",
|
||||||
"sections": {
|
"sections": {
|
||||||
"tabs_opened": "Pestañas abiertas",
|
"tabs_opened": "Pestañas abiertas",
|
||||||
"backgrounds_favourited": "Fondos favoritos",
|
"backgrounds_favourited": "Fondos favoritos",
|
||||||
|
|||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"stats": {
|
"stats": {
|
||||||
"title": "Stats",
|
"title": "Stats",
|
||||||
"warning": "You need to enable usage data in order to use this feature. This will also post anonymous statistics to our umami instance.",
|
"warning": "You need to enable usage data in order to use this feature. This will post anonymous statistics to our umami instance.",
|
||||||
"sections": {
|
"sections": {
|
||||||
"tabs_opened": "Tabs opened",
|
"tabs_opened": "Tabs opened",
|
||||||
"backgrounds_favourited": "Backgrounds favourited",
|
"backgrounds_favourited": "Backgrounds favourited",
|
||||||
|
|||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"stats": {
|
"stats": {
|
||||||
"title": "Stats",
|
"title": "Stats",
|
||||||
"warning": "You need to enable usage data in order to use this feature. This will also post anonymous statistics to our umami instance.",
|
"warning": "You need to enable usage data in order to use this feature. This will post anonymous statistics to our umami instance.",
|
||||||
"sections": {
|
"sections": {
|
||||||
"tabs_opened": "Tabs opened",
|
"tabs_opened": "Tabs opened",
|
||||||
"backgrounds_favourited": "Backgrounds favourited",
|
"backgrounds_favourited": "Backgrounds favourited",
|
||||||
|
|||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"stats": {
|
"stats": {
|
||||||
"title": "Stats",
|
"title": "Stats",
|
||||||
"warning": "You need to enable usage data in order to use this feature. This will also post anonymous statistics to our umami instance.",
|
"warning": "You need to enable usage data in order to use this feature. This will post anonymous statistics to our umami instance.",
|
||||||
"sections": {
|
"sections": {
|
||||||
"tabs_opened": "Tabs opened",
|
"tabs_opened": "Tabs opened",
|
||||||
"backgrounds_favourited": "Backgrounds favourited",
|
"backgrounds_favourited": "Backgrounds favourited",
|
||||||
|
|||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"stats": {
|
"stats": {
|
||||||
"title": "Stats",
|
"title": "Stats",
|
||||||
"warning": "You need to enable usage data in order to use this feature. This will also post anonymous statistics to our umami instance.",
|
"warning": "You need to enable usage data in order to use this feature. This will post anonymous statistics to our umami instance.",
|
||||||
"sections": {
|
"sections": {
|
||||||
"tabs_opened": "Tabs opened",
|
"tabs_opened": "Tabs opened",
|
||||||
"backgrounds_favourited": "Backgrounds favourited",
|
"backgrounds_favourited": "Backgrounds favourited",
|
||||||
|
|||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"stats": {
|
"stats": {
|
||||||
"title": "Stats",
|
"title": "Stats",
|
||||||
"warning": "You need to enable usage data in order to use this feature. This will also post anonymous statistics to our umami instance.",
|
"warning": "You need to enable usage data in order to use this feature. This will post anonymous statistics to our umami instance.",
|
||||||
"sections": {
|
"sections": {
|
||||||
"tabs_opened": "Tabs opened",
|
"tabs_opened": "Tabs opened",
|
||||||
"backgrounds_favourited": "Backgrounds favourited",
|
"backgrounds_favourited": "Backgrounds favourited",
|
||||||
|
|||||||
Reference in New Issue
Block a user