chore: release 6.0, fix firefox bug

This commit is contained in:
David Ralph 2021-11-17 22:10:07 +00:00
parent da6c1bba63
commit 42f89b3fc3
7 changed files with 11 additions and 11 deletions

View File

@ -4,7 +4,7 @@
"default_locale": "en",
"name": "__MSG_name__",
"description": "__MSG_description__",
"version": "5.3.3",
"version": "6.0.0",
"homepage_url": "https://muetab.com",
"browser_action": {
"default_icon": "icons/128x128.png"

View File

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Mue",
"description": "Fast, open and free-to-use new tab page for modern browsers.",
"version": "5.3.3",
"version": "6.0.0",
"homepage_url": "https://muetab.com",
"browser_action": {
"default_icon": "icons/128x128.png"

View File

@ -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.3.3",
"version": "6.0.0",
"dependencies": {
"@eartharoid/i18n": "^1.0.2",
"@emotion/react": "^11.5.0",

View File

@ -37,7 +37,7 @@ export default class GreetingSettings extends PureComponent {
<br/>
<Checkbox name='birthdayage' text={getMessage('modals.main.settings.sections.greeting.birthday_age')} category='greeting'/>
<p>{getMessage('modals.main.settings.sections.greeting.birthday_date')}</p>
<input type='date' onChange={this.changeDate} value={this.state.birthday.toISOString().substr(0, 10)}/>
<input type='date' onChange={this.changeDate} value={this.state.birthday.toISOString().substr(0, 10)} required/>
</>
);
}

View File

@ -42,9 +42,9 @@ if (localStorage.getItem('stats') === 'true') {
variables.stats = Stats;
}
if (localStorage.getItem('keybindsEnabled') === 'true') {
/*if (localStorage.getItem('keybindsEnabled') === 'true') {
variables.keybinds = JSON.parse(localStorage.getItem('keybinds') || '{}');
}
}*/
render(
<App/>,

View File

@ -5,12 +5,12 @@ export const MARKETPLACE_URL = 'https://marketplace.muetab.com';
export const SPONSORS_URL = 'https://sponsors.muetab.com';
export const GITHUB_URL = 'https://api.github.com';
export const DDG_IMAGE_PROXY = 'https://external-content.duckduckgo.com/iu/?u=';
export const MAPBOX_URL = 'https://api.mapbox.com';
//export const MAPBOX_URL = 'https://api.mapbox.com';
// 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-3';
export const BLOG_POST = 'https://blog.muetab.com/posts/version-6-0';
export const TRANSLATIONS_URL = 'https://docs.muetab.com/translations/';
export const CDN_URL = 'https://res.cloudinary.com/mue/image/upload';
@ -24,9 +24,9 @@ export const FACEBOOK_HANDLE = 'muetab';
export const DISCORD_SERVER = 'zv8C9F8';
export const COPYRIGHT_NAME = 'The Mue Authors';
export const COPYRIGHT_YEAR = '2018';
export const COPYRIGHT_LICENSE = 'BSD-3 License';
export const COPYRIGHT_LICENSE = 'BSD-3-Clause License';
export const DONATE_USERNAME = 'davidcralph'; // this only works if you use the same username for Patreon, GitHub and Ko-Fi
export const OFFLINE_IMAGES = 20;
export const VERSION = '5.3.3';
export const VERSION = '6.0.0';

View File

@ -7,7 +7,7 @@ const variables = {
tabLoad: () => '',
postEvent: () => ''
},
keybinds: {},
//keybinds: {},
constants: Constants
};