Skip to content

Releases: pbek/QOwnNotes

Release v26.3.7

09 Mar 20:52
da28317

Choose a tag to compare

26.3.7

  • Fixed an xUbuntu 20.04 / GCC build failure caused by duplicate qstring_literal
    symbols in WebSocketServerService::httpResponse by replacing
    QStringLiteral default arguments with overloads
    (for #3484)

Release v26.3.6

09 Mar 20:32
b03021c

Choose a tag to compare

26.3.6

  • Added a local Homepage-compatible
    bookmark suggestion API endpoint (GET /suggest) based on existing bookmark
    parsing and Web Companion data sources, with prefix-first matching,
    deduplication, limit handling, and response format compatibility
    (for #3484)
    • Added a separate webpage documentation page for the Homepage suggestion API
      integration at Homepage suggestion API,
      including links to reusable custom.js / custom.css assets for externally
      hosted Homepage instances
  • Fixed the default note sorting in the "Link to a URL or note" dialog regressing
    to alphabetical order when note subfolders are disabled; it now again defaults
    to modification date descending (for #3482)
  • Fixed switching note folders from the selector when multiple configured note
    folders point to the same local directory, ensuring folder-specific UI state
    like subfolder panel visibility updates correctly (for #3489)

Release v26.3.5

06 Mar 20:19
c79c5f9

Choose a tag to compare

26.3.5

  • Disabled hanging indentation for wrapped Markdown list items by default in the
    note text edit (for #1581)
  • Try to fix hanging-indented wrapped Markdown list items still occasionally showing
    no visible caret after clicking into continuation text in the note text edit
    (for #3480)
  • Fixed caret blink artifacts in hanging-indented wrapped Markdown list items,
    where the caret could appear partially clipped or show a stray tick while typing
    (for #3480)
  • Fixed caret visibility and blinking on the last wrapped visual line of
    hanging-indented Markdown list items, where the caret could disappear entirely
    while typing (for #3480)

Release v26.3.4

05 Mar 21:00
28a8cff

Choose a tag to compare

26.3.4

  • Fixed hanging-indented wrapped Markdown list items still occasionally clipping
    the caret on click on Windows and Linux/X11, and fixed current-line highlight
    alignment drifting after nested list items in the note text edit
    (for #3480)
  • Fixed cursor placement and text selection becoming offset in hanging-indented
    wrapped Markdown list items after keyboard navigation, which could also draw
    the current-line highlight on the wrong visual line
    (for #3480)
  • Fixed clicking percent-encoded relative attachment links in the note preview opening
    a non-decoded path (for #3483)
  • Added moving note subfolders to another folder via the note subfolder tree context menu,
    including optional migration of relative note links, media file links and attachment links
    for moved notes (for #2581)
  • In the "Link to a URL or note" dialog, when note subfolders are enabled,
    the Note tab now shows sortable "Note", "Folder", and "Modified" columns,
    sorted by modification date descending by default, to make similarly named
    notes easier to distinguish (for #3482)
  • Added more improvements to the note list search and filtering in note tree mode
    for #790)
    • In note tree mode, searching in the note list now hides folders that don't
      match and don't contain matching notes in their subtree, while keeping
      parent folders visible for matching note names or note content, and
      expanding visible folders so matching results are uncollapsed
      (for #2868)
    • In note tree mode, note and folder search now always searches across all
      folders instead of only the currently selected folder
      (for #2868)
    • Fixed note tree mode not refreshing the note/folder tree after selecting a
      folder cleared the search text, so hidden items are now shown again
      (for #2868)

Release v26.3.3

04 Mar 21:59
521585e

Choose a tag to compare

26.3.3

  • Added small inline Markdown image previews in the note text edit with a new
    setting (enabled by default), supporting local files, remote http(s) image URLs,
    base64 data:image/... images, and Nextcloud /core/preview image URLs
    (for #1254)
    • Inline Markdown image previews are currently only shown when no visible text
      follows the image tag on the same editor line, to avoid caret positioning
      mismatches after the image tag
  • Fixed caret blinking and visibility when the cursor is on hanging-indented
    wrapped lines in Markdown list items in the note text edit
    (for #3480)

Release v26.3.2

03 Mar 20:23
fd6ec54

Choose a tag to compare

26.3.2

  • Moved the setting for hanging indentation in wrapped Markdown list items to the
    Tabs and Indents panel in the settings dialog (for #1581)
  • Try to fix hanging indentation in wrapped Markdown list items causing caret placement
    and drawing issues on mouse clicks on Windows (for #3480)
  • Try to better fix the end of the last line of text being cut off on hanging-indented
    wrapped list items when the text almost fits the available width
    (for #3478)

Release v26.3.1

02 Mar 19:59
9612904

Choose a tag to compare

26.3.1

  • Added a setting to toggle hanging indentation for wrapped Markdown list items
    in the note text edit (for #1581)
  • Fixed text selection start positions in wrapped Markdown list items with
    hanging indentation in the note text edit (for #3477)
  • Fixed wrapped list item continuation lines with hanging indentation sometimes
    clipping the last characters of a line (for #3478)
  • Fixed QLiteHtml preview selection drawing occasionally leaving vertical highlight
    stripes when dragging a selection (for #3466)

Release v26.3.0

01 Mar 18:19
3eb2726

Choose a tag to compare

26.3.0

  • Fixed hanging indentation for wrapped Markdown list lines not matching the
    indentation of non-wrapped list items in the note text edit
    (for #3476)
  • Added more Russian, French, Korean translation (thank you, catmenmilota, jd-develop, venusgirl)

Release v26.2.15

27 Feb 21:33
fa7d1a6

Choose a tag to compare

26.2.15

  • Fix Qt5 build error (for #3467)

Release v26.2.14

27 Feb 21:19
33bdf08

Choose a tag to compare

26.2.14

  • Added hanging indentation for wrapped Markdown list lines in the note text edit so that
    continuation lines align with the list content rather than the list marker
    (for #1581)
  • Added <meta name="viewport" content="width=device-width, initial-scale=1.0"> to the HTML
    export head for better responsiveness on mobile devices (for #3475)
  • Fixed horizontal rules (---) in the QLiteHtml preview widget always rendering with a black
    border in dark mode (for #3466)
    • QLiteHtml's built-in master CSS uses border-style: inset for <hr> with no color override,
      producing hardcoded black/gray borders regardless of the active color scheme
    • The hr { border-color: <color>; } rule is now injected into the HTML head alongside the
      existing strikeout fix, using the schema's "Horizontal rule" foreground color
      (MarkdownHighlighter::HorizontalRule) so the rule matches the color configured in
      the editor's font & color settings