Skip to content

Releases: dullage/flatnotes

v5.5.2

13 Jun 11:27
Compare
Choose a tag to compare

🪲 Bug Fixes:

  • Fixed an issue where an empty wikilink (e.g. [[ ]]) would prevent notes from rendering. #310

v5.5.1

04 Apr 11:41
Compare
Choose a tag to compare

🪲 Bug Fixes:

  • Search results from tag auto links are now sorted by title.

v5.5.0

03 Apr 20:08
Compare
Choose a tag to compare

🗒️ Notable Changes:

  • Tags in notes are now automatically linked to a search for other notes with that tag! #240
  • Added support for a FLATNOTES_HOST environment variable. Thanks @serenissi. #297
  • Bumped Python dependencies.
  • Bumped JavaScript dependencies.

🪲 Bug Fixes:

  • Fixed issue affecting multiple wikilinks in the same line. #285
  • Bundled additional font weights and styles to fix font rendering issue. #287
  • Disabled auto linking in edit mode to prevent auto links from being written to note. #244

v5.4.1

21 Jan 21:08
Compare
Choose a tag to compare

🪲 Bug Fixes:

  • Updated the keyboard shortcuts for creating a new note and going home to resolve browser compatibility issue. These are now CTRL+ALT/OPT+N and CTRL+ALT/OPT+H. #241

v5.4.0

16 Jan 13:02
Compare
Choose a tag to compare

🗒️ 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+N to create a new note and CTRL/CMD+SHIFT+H to 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

10 Dec 17:36
Compare
Choose a tag to compare

🪲 Bug Fixes:

  • Fixed an issue when creating a new note whilst editing another. #266

v5.3.1

16 Nov 16:04
Compare
Choose a tag to compare

🗒️ 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

18 Sep 16:09
Compare
Choose a tag to compare

🗒️ 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 #pinned tag to the relevant notes and configuring the quick access search term to tags: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.

v5.2.3

04 Sep 07:27
Compare
Choose a tag to compare

🗒️ Notable Changes:

  • Printing a note now uses the full width.
  • Added IDs to login form fields to resolve issue with 1Password autofill. #224
  • Bumped server dependencies.
  • Bumped client dependencies.

🪲 Bug Fixes:

  • Fixed issue scanning TOTP QR code in Google Authenticator. #237

v5.2.2

24 Jul 18:12
Compare
Choose a tag to compare

🗒️ Notable Changes:

  • The nav bar and buttons are now hidden when printing a note.
  • The padding at the bottom of the note view has been increased for better readability (particularly on mobile devices).

🪲 Bug Fixes:

  • Fixed a data directory ownership issue affecting version 5.2.1. Thanks @zerint.
  • Applied client file ownership fix to Dockerfile.experimental. Thanks @Code-Otto.