From 6bf6cca8c60090165883eebc3f452ec6242b0ba3 Mon Sep 17 00:00:00 2001 From: David Ralph Date: Sun, 22 Aug 2021 16:12:13 +0100 Subject: [PATCH] chore: release 5.3 --- manifest/chrome.json | 2 +- manifest/firefox.json | 8 ++------ package.json | 2 +- .../modals/main/marketplace/sections/Create.jsx | 6 ++++-- src/modules/constants.js | 4 ++-- 5 files changed, 10 insertions(+), 12 deletions(-) diff --git a/manifest/chrome.json b/manifest/chrome.json index 1c7abf12..1760d9c1 100644 --- a/manifest/chrome.json +++ b/manifest/chrome.json @@ -4,7 +4,7 @@ "default_locale": "en", "name": "__MSG_name__", "description": "__MSG_description__", - "version": "5.2.0", + "version": "5.3.0", "homepage_url": "https://muetab.com", "browser_action": { "default_icon": "icons/128x128.png" diff --git a/manifest/firefox.json b/manifest/firefox.json index af6e8919..fb625c46 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.2.0", + "version": "5.3.0", "homepage_url": "https://muetab.com", "browser_action": { "default_icon": "icons/128x128.png" @@ -18,9 +18,5 @@ "chrome_settings_overrides": { "homepage": "index.html" }, - "content_security_policy": "script-src 'self' https://api.bing.com https://www.google.com; object-src 'self'", - "background": { - "persistent": false, - "scripts": [ "background-firefox.js" ] - } + "content_security_policy": "script-src 'self' https://api.bing.com https://www.google.com; object-src 'self'" } diff --git a/package.json b/package.json index ba28b5cb..0912f448 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.2.0", + "version": "5.3.0", "dependencies": { "@emotion/react": "^11.4.1", "@emotion/styled": "^11.3.0", diff --git a/src/components/modals/main/marketplace/sections/Create.jsx b/src/components/modals/main/marketplace/sections/Create.jsx index 82883387..29c050b0 100644 --- a/src/components/modals/main/marketplace/sections/Create.jsx +++ b/src/components/modals/main/marketplace/sections/Create.jsx @@ -1,3 +1,4 @@ +/* eslint-disable no-unused-vars */ import { PureComponent } from 'react'; import { SettingsRounded as Settings, @@ -95,14 +96,15 @@ export default class Create extends PureComponent {

{time.type}

-
this.changeTab(2, 'photos')}> + {/*
this.changeTab(2, 'photos')}> {marketplace.photo_packs}
this.changeTab(2, 'quotes')}> {marketplace.quote_packs} -
+
+ */}
this.changeTab(2, 'settings')}> {marketplace.preset_settings} diff --git a/src/modules/constants.js b/src/modules/constants.js index ed19ae30..5683d27f 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-2'; +export const BLOG_POST = 'https://blog.muetab.com/posts/version-5-3'; 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.2.0'; +export const VERSION = '5.3.0';