Pushed version 2.1.0
This commit is contained in:
parent
d5610ad6be
commit
fcf2b87d1c
4 changed files with 7 additions and 6 deletions
2
.env
2
.env
|
@ -1,5 +1,5 @@
|
||||||
PORT=5005
|
PORT=5005
|
||||||
NODE_ENV=development
|
NODE_ENV=development
|
||||||
VERSION=2.0.1
|
VERSION=2.1.0
|
||||||
PASSWORD=flame_password
|
PASSWORD=flame_password
|
||||||
SECRET=e02eb43d69953658c6d07311d6313f2d4467672cb881f96b29368ba1f3f4da4b
|
SECRET=e02eb43d69953658c6d07311d6313f2d4467672cb881f96b29368ba1f3f4da4b
|
|
@ -1,8 +1,10 @@
|
||||||
### v2.0.2 (TBA)
|
### v2.1.0 (2021-11-26)
|
||||||
|
- Added option to set custom order for bookmarks ([#43](https://github.com/pawelmalak/flame/issues/43)) and ([#187](https://github.com/pawelmalak/flame/issues/187))
|
||||||
- Added support for .ico files for custom icons ([#209](https://github.com/pawelmalak/flame/issues/209))
|
- Added support for .ico files for custom icons ([#209](https://github.com/pawelmalak/flame/issues/209))
|
||||||
- Empty apps and categories sections will now be hidden from guests ([#210](https://github.com/pawelmalak/flame/issues/210))
|
- Empty apps and categories sections will now be hidden from guests ([#210](https://github.com/pawelmalak/flame/issues/210))
|
||||||
- Fixed bug with fahrenheit degrees being displayed as float ([#221](https://github.com/pawelmalak/flame/issues/221))
|
- Fixed bug with fahrenheit degrees being displayed as float ([#221](https://github.com/pawelmalak/flame/issues/221))
|
||||||
- Added option to change visibilty of apps and categories directly from table view
|
- Fixed bug with alphabetical order not working for bookmarks until the page was refreshed ([#224](https://github.com/pawelmalak/flame/issues/224))
|
||||||
|
- Added option to change visibilty of apps, categories and bookmarks directly from table view
|
||||||
- Password input will now autofocus when visiting /settings/app
|
- Password input will now autofocus when visiting /settings/app
|
||||||
|
|
||||||
### v2.0.1 (2021-11-19)
|
### v2.0.1 (2021-11-19)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
REACT_APP_VERSION=2.0.1
|
REACT_APP_VERSION=2.1.0
|
|
@ -139,8 +139,7 @@ export const BookmarksForm = ({
|
||||||
modalHandler();
|
modalHandler();
|
||||||
}
|
}
|
||||||
|
|
||||||
setFormData(newBookmarkTemplate);
|
setFormData({ ...newBookmarkTemplate, categoryId: formData.categoryId });
|
||||||
|
|
||||||
setCustomIcon(null);
|
setCustomIcon(null);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue