From 6cdfb9db3e82170944d299aa1c51e8275fefe6d9 Mon Sep 17 00:00:00 2001 From: David Ralph Date: Mon, 2 Aug 2021 13:47:06 +0100 Subject: [PATCH] chore: release 5.2 --- .gitignore | 3 +-- manifest/chrome.json | 2 +- manifest/firefox.json | 2 +- package.json | 4 ++-- src/modules/constants.js | 4 ++-- 5 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 21025e35..6e8fa39d 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,6 @@ build/ package-lock.json yarn-error.log .eslintcache -Firefox.zip -Chrome.zip stats.json yarn.lock +*.zip \ No newline at end of file diff --git a/manifest/chrome.json b/manifest/chrome.json index 362d6bf5..b331f54b 100644 --- a/manifest/chrome.json +++ b/manifest/chrome.json @@ -4,7 +4,7 @@ "default_locale": "en", "name": "__MSG_name__", "description": "__MSG_description__", - "version": "5.1.1", + "version": "5.2.0", "homepage_url": "https://muetab.com", "browser_action": { "default_icon": "icons/128x128.png" diff --git a/manifest/firefox.json b/manifest/firefox.json index f513127a..39620958 100644 --- a/manifest/firefox.json +++ b/manifest/firefox.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Mue", "description": "Fast, open and free-to-use new tab page for modern browsers.", - "version": "5.1.1", + "version": "5.2.0", "homepage_url": "https://muetab.com", "browser_action": { "default_icon": "icons/128x128.png" diff --git a/package.json b/package.json index 93af65c9..ec543500 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "homepage": "https://muetab.com", "bugs": "https://github.com/mue/mue/issues/new?assignees=&labels=bug&template=bug-report.md&title=%5BBUG%5D", "license": "BSD-3-Clause", - "version": "5.1.1", + "version": "5.2.0", "dependencies": { "@emotion/react": "^11.4.0", "@emotion/styled": "^11.3.0", @@ -56,7 +56,7 @@ "start": "webpack serve", "build": "webpack --mode=production", "chrome": "cp manifest/chrome.json build/manifest.json && cp -r manifest/_locales build/_locales", - "firefox": "cp manifest/firefox.json build/manifest.json" + "firefox": "rm -rf build/_locales && cp manifest/firefox.json build/manifest.json" }, "browserslist": { "production": [ diff --git a/src/modules/constants.js b/src/modules/constants.js index e77058de..ed19ae30 100644 --- a/src/modules/constants.js +++ b/src/modules/constants.js @@ -9,7 +9,7 @@ export const DDG_IMAGE_PROXY = 'https://external-content.duckduckgo.com/iu/?u='; // Mue URLs export const WEBSITE_URL = 'https://muetab.com'; export const PRIVACY_URL = 'https://muetab.com/privacy'; -export const BLOG_POST = 'https://blog.muetab.com/posts/version-5-1'; +export const BLOG_POST = 'https://blog.muetab.com/posts/version-5-2'; export const FEEDBACK_FORM = 'https://api.formcake.com/api/form/349b56cb-7e2b-4004-b32b-e8964d217dd1/submission'; // Mue Info @@ -34,4 +34,4 @@ export const OFFLINE_IMAGES = 20; // Version export const BETA_VERSION = false; -export const VERSION = '5.1.1'; +export const VERSION = '5.2.0';