Flatnotes Versions Save

A self-hosted, database-less note taking web app that utilises a flat folder of markdown files for storage.

v4.0.4

3 weeks ago

🗒️ Notable Changes:

  • The port flatnotes runs on inside a Docker container can now be controlled with a FLATNOTES_PORT environment variable. Thanks @aguileraGit.

🪲 Bug Fixes:

  • Fixed an issue (#178) affecting some users updating to 4.0.3. Thanks @Code-Otto.

v4.0.3

4 weeks ago

🗒️ Notable Changes:

  • A /health API endpoint has been added that simply returns a 200 "OK" response.
  • The Dockerfile now includes a HEALTHCHECK instruction that will check the /health endpoint every 60 seconds.
  • Pip and Pipenv caches are now removed during the build process to reduce the image size. Thanks @Code-Otto!
  • An experimental Dockerfile has been added that uses Alpine to reduce the image size even further. It should also be possible to build for older arm architectures using this file. Thanks again @Code-Otto!
  • All Python dependencies updated.
  • All JS dependencies updated.

v4.0.2

3 months ago

🪲 Bug Fixes:

  • Fixed a bug preventing the "Attachment Too Large" toast message from showing.

v4.0.1

3 months ago

🚨 Breaking Changes:

  • API: The GET /api/notes/{title} endpoint no longer supports an include_content query parameter. Content is now always included in the response (which was the default before anyway).

🗒️ Notable Changes:

  • The Python server has been completely refactored to allow for easier maintenance and future development.
  • The "Poppins" font is now bundled with flatnotes rather than being loaded from Google Fonts (#145).
  • A new GET /api/attachments endpoint has been added. This mirrors the behaviour of the existing GET /attachments endpoint but is included for consistency with the other API endpoints (and is also now visible in the API docs).
  • When inserting an image, the decision as to the URL and filename to insert into the note is now made by the server rather than the client. This allows filename clashes to be handled automatically by appending a timestamp to the filename when required.

🪲 Bug Fixes:

  • Fixed menu icon alignment issue.
  • Fixed bullet point alignment issue (mainly visible on larger fonts).
  • Fixed a bug that prevented phrase searching (#152).
  • Fixed a bug that affected the naming of pasted screenshots on machines using a non-English language (#153).

v3.6.1

5 months ago

🪲 Bug Fixes:

  • Fixes a display issue affecting the PWA icon on certain devices (#140).

v3.6.0

5 months ago

🗒️ Notable Changes:

  • flatnotes has had a facelift! The big focus has been on typography (font family and font sizes) but there are many other smaller improvements as well. Update or check out the demo site to take a look.
  • Wikilinks are now supported! You can now easily create a link to another note by enclosing the note's name in double square brackets. For example, [[My Note]] will create a link to the note titled "My Note". Thanks @trescenzi.

🪲 Bug Fixes:

  • The increased font size resolves an annoying issue where mobile browsers would zoom in on the page when the keyboard was opened.

v3.5.0

6 months ago

🗒️ Notable Changes:

  • A drop-down menu in the navbar now tidies away the lesser-used buttons.

🪲 Bug Fixes:

  • Fixed various layout issues with note title and buttons.

v3.4.0

6 months ago

🗒️ Notable Changes:

  • Improved image support 🎉. flatnotes now supports an attachments directory for storing and serving images. See the wiki article for more information.

v3.3.1

6 months ago

🚨 Breaking Changes:

  • The API will now return a float value for lastModified. Previously it would return an int.

🪲 Bug Fixes:

  • Resolved an issue (present since v3.2.3) whereby some/all notes would be incorrectly identified as requiring an index update. This would likely have caused performance issues on affected versions.

v3.3.0

7 months ago

🗒️ Notable changes:

  • Cancelling a note edit after making changes now requires user confirmation. Thanks @kitsumed!
  • Closing the browser whilst editing a note now requires user confirmation. Thanks @kitsumed!
  • Support for docker --user flag. Thanks @kitsumed!
  • Additonal docker entrypoint.sh improvements.
  • Docker logs now show real IP addresses. Thanks for your help @modem7!