Skip to content

Releases: gamosoft/NoteDiscovery

v0.23.0 - Draw your own sketches!

24 Apr 14:35

Choose a tag to compare

What's Changed

  • Drawing editor. Create quick sketches and annotations directly in the browser. Saved as PNG files alongside your notes. Supports freehand, line, rectangle, ellipse, eraser, eyedropper, and undo/redo. Autosaves on idle.
image

More information here: https://github.com/gamosoft/NoteDiscovery/blob/main/documentation/DRAWING.md

  • Fixed-resolution drawings. Every drawing has an intrinsic document size (default 1200x800). Pointer input, redraws and exports all live in the same coordinate space, so the saved PNG is byte-deterministic regardless of screen size, window size, or device pixel ratio. Resizing the editor pane won't shifts strokes. Mobile viewports automatically letterbox to the drawing's aspect ratio.

  • Shared notes panel. New sidebar icon (below Backlinks) opens a dedicated panel listing every currently shared note, with a count badge and one-click navigation. Consistent with how other note lists are rendered.

image
  • Automatic share-token cleanup. When you create or revoke a share link, entries in .share-tokens.json pointing to notes that no longer exist are pruned automatically. No manual maintenance required.

Docker Images

This release is available as a Docker image:

docker pull ghcr.io/gamosoft/NoteDiscovery:0.23.0

Full Changelog: v0.22.1...v0.23.0

v0.22.1

20 Apr 10:50

Choose a tag to compare

What's Changed

Docker Images

This release is available as a Docker image:

docker pull ghcr.io/gamosoft/NoteDiscovery:0.22.1

Full Changelog: v0.22.0...v0.22.1

v0.22.0

20 Apr 07:04

Choose a tag to compare

What's Changed

  • Replaced browser alerts with toast notifications, as well as prompts, confirms... (47c6668)

Docker Images

This release is available as a Docker image:

docker pull ghcr.io/gamosoft/NoteDiscovery:0.22.0

Full Changelog: v0.21.1...v0.22.0

v0.21.1

16 Apr 15:47

Choose a tag to compare

What's Changed

  • Added auto continuation for numbered lists
  • Added Hacker theme
image
  • Added Ubuntu theme
image

Docker Images

This release is available as a Docker image:

docker pull ghcr.io/gamosoft/NoteDiscovery:0.21.1

Full Changelog: v0.21.0...v0.21.1

v0.21.0 - Auto continuation of list items

13 Apr 14:28

Choose a tag to compare

What's Changed

continuation-rules.mp4
  • List & blockquote continuation: Pressing Enter at the end of a bullet, task line (- [ ] / - [x]), or blockquote (>) inserts the next marker; Enter on an empty continued line exits the list or quote. Does not run inside fenced code blocks; Shift+Enter always inserts a plain newline.
  • Fix for relative media paths #203 . After this fix if you were using relative paths you may need to adjust your notes' content to conform to this, sorry about that
  • Changed sorting tooltips to indicate when folders are not rearranged

Docker Images

This release is available as a Docker image:

docker pull ghcr.io/gamosoft/NoteDiscovery:0.21.0

Full Changelog: v0.20.1...v0.21.0

v0.20.1

07 Apr 11:03

Choose a tag to compare

What's Changed

  • Added configurable upload size limits #194
  • Added treeview sorting capabilities #193
  • Added additional protocols #191
  • Updated hu-HU.json translation (80c51da), thanks @Adv3n10!

Docker Images

This release is available as a Docker image:

docker pull ghcr.io/gamosoft/NoteDiscovery:0.20.1

Full Changelog: v0.20.0...v0.20.1

v0.20.0

06 Apr 11:07

Choose a tag to compare

What's Changed

  • Added option to use TAB key to actually insert a tab #197 (@jasinco)
  • Use alternate Mathjax syntax #196 (@Trashman0007)
  • As part of that effort, refactored the export/sharing functionality to share a single codebase, now it's all done backend side to avoid more headaches, so a new export endpoint was created for it
  • Added print preview option #195 (@xrxca)
  • Doc changes

Docker Images

This release is available as a Docker image:

docker pull ghcr.io/gamosoft/NoteDiscovery:0.20.0

Full Changelog: v0.19.2...v0.20.0

v0.19.2 - New stats endpoint

27 Mar 16:24

Choose a tag to compare

What's Changed

  • New /api/stats endpoint that gives you the number of notes, tags etc.. such as:
{
  "notes_count": 73,
  "folders_count": 50,
  "tags_count": 4,
  "templates_count": 3,
  "media_count": 0,
  "total_size_bytes": 121717,
  "last_modified": "2026-03-24T11:22:40.187832+00:00",
  "plugins_enabled": 1,
  "version": "0.19.2"
}

This way you can integrate in your dashboards like Homepage something like:

    - NoteDiscovery:
        href: https://notediscovery.{{HOMEPAGE_VAR_HOMELAB_DOMAIN}}
        icon: notediscovery
        container: homelab-notediscovery
        widget:
          type: customapi
          url: http://notediscovery:8000/api/stats
          refreshInterval: 60000
          mappings:
            - field: notes_count
              label: Notes
            - field: tags_count
              label: Tags
            - field: folders_count
              label: Folders
            - field: version
              label: Version

To look like this:
image
More info here: https://github.com/gamosoft/NoteDiscovery/blob/main/documentation/API.md#get-stats

  • Also fixed the locales for the Hungarian translation of backlinks. (b7052a1) thanks @Adv3n10

Docker Images

This release is available as a Docker image:

docker pull ghcr.io/gamosoft/NoteDiscovery:0.19.2

Full Changelog: v0.19.1...v0.19.2

v0.19.1 - Backlinks... and Graph bugfix 😎

24 Mar 12:28

Choose a tag to compare

What's Changed

  • Backlinks Panel - New sidebar panel showing all notes that link to the current note

    • Displays linking notes with context snippets and line numbers
    • Supports both [[wikilinks]] and standard [markdown](links)
    • Click any backlink to navigate directly to the source note
    • Badge shows backlink count on the panel icon
image image
  • Backlinks API - New backlinks property in note response

    • GET /api/notes/{path} now returns backlinks by default
    • Optional ?include_backlinks=false to disable for performance
    • Returns path, name, and up to 3 references per linking note
  • MCP Tool - New get_backlinks tool for AI assistants

    • Find notes that reference a specific note
    • Returns context snippets showing where links appear
image
  • Also a bug in the graph view that was not properly rendering it when notes where in a different folder (and not wikilinks), but now I think they're ok:
image

Docker Images

This release is available as a Docker image:

docker pull ghcr.io/gamosoft/NoteDiscovery:0.19.1

Full Changelog: v0.19.0...v0.19.1

v0.19.0 - Backlinks!

24 Mar 11:24

Choose a tag to compare

What's Changed

  • Backlinks Panel - New sidebar panel showing all notes that link to the current note

    • Displays linking notes with context snippets and line numbers
    • Supports both [[wikilinks]] and standard [markdown](links)
    • Click any backlink to navigate directly to the source note
    • Badge shows backlink count on the panel icon
image image
  • Backlinks API - New backlinks property in note response

    • GET /api/notes/{path} now returns backlinks by default
    • Optional ?include_backlinks=false to disable for performance
    • Returns path, name, and up to 3 references per linking note
  • MCP Tool - New get_backlinks tool for AI assistants

    • Find notes that reference a specific note
    • Returns context snippets showing where links appear
image

Docker Images

This release is available as a Docker image:

docker pull ghcr.io/gamosoft/NoteDiscovery:0.19.0

Full Changelog: v0.18.2...v0.19.0