Compare commits

..

2 Commits
6.0.0 ... 6.0.1

Author SHA1 Message Date
David Ralph
9da0cb611e chore: release 6.0.1 2021-11-18 15:08:33 +00:00
David Ralph
7c7994c63f fix: greeting date picker, addons sort dropdown 2021-11-18 14:49:20 +00:00
7 changed files with 13 additions and 7 deletions

View File

@@ -4,7 +4,7 @@
"default_locale": "en", "default_locale": "en",
"name": "__MSG_name__", "name": "__MSG_name__",
"description": "__MSG_description__", "description": "__MSG_description__",
"version": "6.0.0", "version": "6.0.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"

View File

@@ -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": "6.0.0", "version": "6.0.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"

View File

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

View File

@@ -121,3 +121,9 @@ p.author {
max-width: 250px; max-width: 250px;
overflow-x: hidden; overflow-x: hidden;
} }
@media (max-height: 1080px) {
.dropdownsortAddons {
margin-top: 40px !important;
}
}

View File

@@ -50,7 +50,7 @@ export default class Dropdown extends PureComponent {
const label = this.props.label || ''; const label = this.props.label || '';
return ( return (
<FormControl fullWidth> <FormControl fullWidth className={id}>
<InputLabel id={id}>{label}</InputLabel> <InputLabel id={id}>{label}</InputLabel>
<Select labelId={id} id={this.props.name} value={this.state.value} label={label} onChange={this.onChange} ref={this.dropdown} key={id}> <Select labelId={id} id={this.props.name} value={this.state.value} label={label} onChange={this.onChange} ref={this.dropdown} key={id}>
{this.props.manual ? this.props.children : this.props.children.map((e, index) => { {this.props.manual ? this.props.children : this.props.children.map((e, index) => {

View File

@@ -15,10 +15,10 @@ export default class GreetingSettings extends PureComponent {
} }
changeDate = (e) => { changeDate = (e) => {
localStorage.setItem('birthday', e.target.value); localStorage.setItem('birthday', e.target.value || new Date());
this.setState({ this.setState({
birthday: new Date(e.target.value) birthday: e.target.value ? new Date(e.target.value) : new Date()
}); });
} }

View File

@@ -29,4 +29,4 @@ export const DONATE_USERNAME = 'davidcralph'; // this only works if you use the
export const OFFLINE_IMAGES = 20; export const OFFLINE_IMAGES = 20;
export const VERSION = '6.0.0'; export const VERSION = '6.0.1';