Releases: dullage/flatnotes
v5.5.4
🗒️ Notable Changes:
- Bumped Python dependencies.
- Bumped JS dependencies.
- Previously, an unauthenticated call to the API was required before the app knew a login was required. When the first page loaded didn't make any API calls (e.g. the new note page), you would incorrectly appear logged in until a subsequent API call were made. Now an auth check call is made to the API on app load regardless of the page loaded. Thanks for your help on this @kontaxis.
🪲 Bug Fixes:
v5.5.3
v5.5.2
v5.5.1
v5.5.0
🗒️ Notable Changes:
- Tags in notes are now automatically linked to a search for other notes with that tag! #240
- Added support for a
FLATNOTES_HOSTenvironment variable. Thanks @serenissi. #297 - Bumped Python dependencies.
- Bumped JavaScript dependencies.
🪲 Bug Fixes:
v5.4.1
v5.4.0
🗒️ Notable Changes:
- Hyphens are now supported in tags, e.g.
#tag-with-hyphen🎉. Thanks @ChristianAvila! #77 - 2 new keyboard shortcuts have been added.
CTRL/CMD+SHIFT+Nto create a new note andCTRL/CMD+SHIFT+Hto go to the home page. #241
🚨 Note: These keyboard shortcuts were later updated in v5.4.1.
🪲 Bug Fixes:
- The filtering of suggested tags when searching is now case-insensitive. #269
- Fixed theming of the edit toolbar when dark theme is enabled. #265
🚨 WARNING: The change to how tags are indexed means that, upon updating to this version, all notes will be re-indexed. Depending on how many notes you have, this may take some time.
v5.3.2
v5.3.1
🗒️ Notable Changes:
- Loading animations are now only shown if loading takes longer than 400ms. For quick connections, this makes flatnotes feel much snappier.
- Bumped all Python dependencies.
🪲 Bug Fixes:
CMD-ENTER(on Macs) now works to save a note. Thanks @waschmittel.- Prevent "This page is asking you to confirm that you want to leave..." warnings from being shown when they shouldn't. #261.
v5.3.0
🗒️ Notable Changes:
You can now customise the notes that are shown on the home page! 🎉
The "RECENTLY MODIFIED" section can now be customised to your liking 😎. This is now known as "Quick Access Notes". You are able to configure:
- The search term used to generate the list of notes (defaults to
*, all notes). - How the notes are ordered (defaults to
lastModified). - The limit of how many notes to show (defaults to
4). - The title (defaults to
RECENTLY MODIFIED).
A couple of examples of how this can be useful:
- You could now pin notes to the home page by adding a
#pinnedtag to the relevant notes and configuring the quick access search term totags:pinned. - You could hide certain notes from being shown on the home page. In my case, I wanted to hide work related notes, which I achieved by setting the quick access search term to
NOT tags:work.
Additionally, if there are more "Quick Access Notes" than can be shown, there is now a button to view the full results.
This feature was heavily inspired by this PR, so thanks to @michaelkennethdavid for that.
See the wiki for more info.
🚨 Breaking Changes:
The config option FLATNOTES_HIDE_RECENTLY_MODIFIED has been deprecated in favour of a new FLATNOTES_QUICK_ACCESS_HIDE option. The old option will continue to work for now, but may be removed in a future release.