QOwnNotes
#91
26.4.0 
  • LanguageTool ignored rules and ignored words are now persisted across application restarts; previously, ignored rules were only stored in memory and lost when the application was closed (for #3496)
  • Added a new "Ignore word" option to the LanguageTool context menu that allows ignoring specific words (e.g. proper nouns, technical terms) without disabling the entire rule; ignored words are persisted across restarts (for #3496)
  • Added "Reset ignored rules" and "Reset ignored words" buttons to the LanguageTool settings page to clear all previously ignored rules and words (for #3496)
  • The last selected Nextcloud Deck card is now re-selected after the card list is reloaded when a card is stored or the archived cards view is toggled (for #3357)
  • Fixed Nextcloud Deck card updating that caused HTTP 400 errors: the PUT request now uses the correct API v1.1 endpoint with the card's actual 
    Code:
    stackId
     in the URL path; the request body includes the required 
    Code:
    owner
     field (which the Deck server validates as mandatory), sends the card's real 
    Code:
    order
     value, always includes 
    Code:
    description
    , and explicitly sets 
    Code:
    duedate
     to 
    Code:
    null
     when no due date is selected; also fixed spurious 
    Code:
    QString::arg
     warnings in the error dialogs for card operations where placeholder indices were wrong, and added response body logging on errors for better diagnostics (for #3357)
  • Added more Russian, German, Chinese Simplified, Korean, Spanish, French, Polish translation (thank you, pbek, VenusGirl, AlejandroMoc, jd-develop, Fresta24)
 
Source

More at Home Site
[-] The following 1 user says Thank You to Kool for this post:
  • harlan4096
Reply
#92
26.4.1 
  • Implemented QLiteHtml preview underline rendering so that when Enable underline rendering is turned on, Markdown like 
    Code:
    __underline__
     and 
    Code:
    _underline_
     is rendered as underlined text instead of bold or italic in the preview (for #3533)
  • Updated menu action text 
    Code:
    Use softwrap in note editor and preview
     to 
    Code:
    Use softwrap in note editor
    , since the QLiteHtml preview is always softwrapped for #2566)
  • Fixed the main window and panel sizes not being persisted when closing the application: resized dock panels, toolbar layout and the main window geometry are now stored during the actual close event and correctly restored on the next start (for #3532)
  • Changed the visual marker and wording for pinned note tabs: sticky tabs now use a pushpin symbol instead of a flag, and the related action and tooltip text now consistently refer to pinning and unpinning tabs (for #2595)
  • Fixed the read-only status bar button becoming visible even when note editing was allowed, which occurred when enabling the read-only mode feature for the first time in the settings and then closing the dialog; the toolbar action and the status bar button are now always kept in sync (for #3529)
  • Fixed a crash in the Find action command bar by hiding the Find action entry from the dialog itself, preventing recursive reopening of the command bar and the follow-up crash when another action was selected afterward (for #3530)
 
Source

More at Home Site
[-] The following 1 user says Thank You to Kool for this post:
  • harlan4096
Reply
#93
26.4.2 
  • Improved lookup of the 
    Code:
    Bookmarks
     and 
    Code:
    Commands
     notes so they are now found in note subfolders too instead of only being effectively recognized in the note folder root, addressing Recognize the bookmarks file regardless of where it is (for #2518)
  • Fixed command snippet parsing for 
    Code:
    bash
     and 
    Code:
    sh
     code blocks so 
    Code:
    qc
     now uses the nearest preceding heading as the snippet description instead of being misled by an earlier heading in the note (for #2526)
  • Fixed the editor color schema color picker in the settings dialog so closing it without changing the selected color no longer reapplies the schema and reloads the note folder (for #3506)
  • Changed the built-in 
    Code:
    Light
     editor color schema so internal note links now use 
    Code:
    #fc8f00
     as foreground color and 
    Code:
    #fff8ef
     as background color (for #2914)
 
Source

More at Home Site
[-] The following 1 user says Thank You to Kool for this post:
  • harlan4096
Reply
#94
26.4.3 
  • When pressing Ctrl+F to open the search bar in the note text edit, the preview, or the QLiteHTML preview, any currently selected text will now always be placed into the search field (replacing any existing search text) and selected, making it easy to search for the highlighted word or phrase (for #3538)
  • Added a built-in MCP (Model Context Protocol) server that allows external AI agents to access notes via HTTP+SSE transport with Bearer token authentication, providing 
    Code:
    search_notes
     and 
    Code:
    fetch_note
     tools for AI-powered note retrieval (for #3536)
    • See MCP Server for documentation and usage instructions
  • Improved wiki-style link backlink detection so that all wiki link variants — including links with heading anchors like 
    Code:
    [[Note#Heading]]
    , links with display-text aliases like 
    Code:
    [[Note|label]]
    , and subfolder-qualified links with aliases or headings like 
    Code:
    [[sub/Note#H|label]]
     — are now correctly found and shown in the Backlinks navigation panel (for #3535)
  • Updated the system Botan integration to avoid Botan 3 deprecation warnings in the note encryption wrapper, improving compatibility with downstream builds such as NixOS/nixpkgs#505517 (for #3501)
 
Source

More at Home Site
[-] The following 1 user says Thank You to Kool for this post:
  • harlan4096
Reply
#95
26.4.4 
  • Fixed a duplicate symbol assembler error in 
    Code:
    mcpservice.h
     when building with GCC 9 (Ubuntu Focal / Debian 11) caused by 
    Code:
    QStringLiteral
     being used in default function parameter values in a header file; replaced with 
    Code:
    QLatin1String
     to avoid the issue (for #3536)
 
Source

More at Home Site
[-] The following 1 user says Thank You to Kool for this post:
  • harlan4096
Reply
#96
26.4.5 
  • Fixed a preview font size mismatch when using editor highlighting styles in the preview on high-DPI displays (particularly on Windows with desktop scaling): the pixel-to-point conversion formula in the QLiteHtml container was inverted, causing fonts stored with a pixel size to be rendered at a massively inflated point size (e.g. a 9pt font appearing as ~100pt at 250% scaling); the formula is now 
    Code:
    pt = px * 72 / DPI
     instead of 
    Code:
    pt = DPI * px / 72
     (for #3539)
  • Fixed a possible crash (SIGSEGV) caused by inline markdown image previews for remote HTTP/HTTPS URLs performing a synchronous network download inside a paint event, which triggered a nested 
    Code:
    QEventLoop
     and caused Qt's widget repaint manager to re-enter itself recursively until the stack overflowed; remote images are now fetched asynchronously and the viewport is refreshed automatically once the download completes (for #1254)
  • When searching with selected text via Ctrl+F in the note text edit, the preview, or the QLiteHTML preview, the first result now highlights the originally selected occurrence instead of jumping to the next one, so the editor/view no longer scrolls away from the user's current position (for #3541)
  • Added more French, Korean, Spanish translation (thank you, jd-develop, VenusGirl, AlejandroMoc)
 
Source

More at Home Site
[-] The following 1 user says Thank You to Kool for this post:
  • harlan4096
Reply
#97
26.4.6 
  • Fixed a wrong settings path in portable mode when running as an AppImage launched from a desktop file (or any context where the working directory differs from the AppImage's directory): 
    Code:
    portableDataPath()
     was called before the 
    Code:
    QApplication
     object was constructed, so 
    Code:
    qApp
     was 
    Code:
    nullptr
     and the path fell back to 
    Code:
    "."
     (the current working directory) instead of the AppImage's directory; the function now directly reads the 
    Code:
    $APPIMAGE
     environment variable (always set by the AppImage runtime) when 
    Code:
    qApp
     is not yet available, and also accepts the 
    Code:
    argv[0]
     path as a fallback for non-AppImage portable builds to ensure the correct base directory is used in all cases (for #3542)
  • Trailing unbalanced brackets 
    Code:
    ()

    Code:
    {}

    Code:
    []
    , and 
    Code:
    <>
     are now stripped from bare URLs during both syntax highlighting and Ctrl+Click link opening in the note text editor, so that URLs wrapped in parentheses or other bracket types are detected correctly (for #2510)
  • Fixed a build failure on Debian 9.0 (Qt 5.7.1) caused by the use of 
    Code:
    QNetworkRequest::RedirectPolicyAttribute
     and 
    Code:
    QNetworkRequest::NoLessSafeRedirectPolicy
     which were only introduced in Qt 5.9; the call is now guarded with 
    Code:
    #if QT_VERSION >= QT_VERSION_CHECK(5, 9, 0)
     (for #1254)
 
Source

More at Home Site
[-] The following 1 user says Thank You to Kool for this post:
  • harlan4096
Reply
#98
26.4.7 
  • Opening the search bar in the note text edit, the preview, or the QLiteHTML preview now keeps the current horizontal and vertical scroll position during the initial search, so highlighting the first match no longer scrolls the view away from where you were reading (for #3541)
  • Updated the release workflow to build and publish the Qt6 Snap from 
    Code:
    build-systems/github/snap.qt6
    , so Snap Store installs now deliver the Qt6 package again, while the legacy Qt5 snap is still attached to releases under a separate asset name (for #3470)
  • Fixed the line and column status bar label being rendered too close to the window edge when the main window is maximized or fullscreen on some platforms/styles: the label had no internal horizontal padding, so it could appear cramped against the status bar border; it now uses left and right content margins like the other status bar controls (for #3543)
 
Source

More at Home Site
[-] The following 1 user says Thank You to Kool for this post:
  • harlan4096
Reply
#99
26.4.8 
  • Fixed two possible shutdown crashes while quitting the application: on macOS the app no longer re-enters Qt's 
    Code:
    commitDataRequest
     quit path during the Cocoa termination flow, and on all platforms the log panel now stops appending rich text once application teardown has started, avoiding late UI updates from Qt log messages during shutdown (for #3546)
  • Updated the Launchpad snapcraft configuration in 
    Code:
    build-systems/snap/
     to build the Ubuntu Snap with Qt6 on core24, aligned with the working GitHub Qt6 snap packaging so the Launchpad snap can ship the Qt6 build path as well (for #3470)
 
Source

More at Home Site
[-] The following 1 user says Thank You to Kool for this post:
  • harlan4096
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)
[-]
Welcome
You have to register before you can post on our site.

Username/Email:


Password:





[-]
Recent Posts
Sysinternals Suite 4.09.2026
Changes in 4.09.202...harlan4096 — 06:57
AnyDesk 9.7.0 for Windows
Version 9.7.0 for ...harlan4096 — 06:56
NVIDIA launches DLSS 4.5 Dynamic Multi ...
DLSS 4.5 Dynamic Fra...harlan4096 — 06:55
Google Chrome 146 Adds Device Bound Sess...
Google has introdu...harlan4096 — 06:54
WhatsApp is rolling out long-overdue use...
If you use the pop...harlan4096 — 06:53

[-]
Birthdays
Today's Birthdays
avatar (36)Kiran78
Upcoming Birthdays
avatar (45)wapedDow
avatar (49)oapedDow
avatar (42)Sanchowogy
avatar (46)MeighGoask
avatar (38)urumahiz
avatar (44)techlignub
avatar (43)Stevenmam
avatar (50)onlinbah
avatar (50)fuspeukChark
avatar (44)werriewWaiNg
avatar (38)Freemanleo
avatar (43)cdoubapKit
avatar (38)lystraPonia
avatar (31)smith8395john
avatar (51)steakelask
avatar (45)Termoplenka
avatar (43)bycoPaist
avatar (49)pieloKat
avatar (43)ilyagNeexy
avatar (51)donitascene
avatar (51)Toligo
avatar (46)Rodneykak
avatar (49)tradeSmode
avatar (38)RobertUtelt

[-]
Online Staff
There are no staff members currently online.

>