| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| QOwnNotes.zip.sha256sum | 2026-04-06 | 81 Bytes | |
| QOwnNotes.zip.sha256 | 2026-04-06 | 66 Bytes | |
| QOwnNotes.zip | 2026-04-06 | 51.5 MB | |
| QOwnNotes.dmg | 2026-04-06 | 46.4 MB | |
| QOwnNotes-amd64.snap | 2026-04-06 | 155.5 MB | |
| QOwnNotesQt5.dmg | 2026-04-06 | 21.4 MB | |
| QOwnNotes-x86_64.AppImage.sha256sum | 2026-04-06 | 92 Bytes | |
| QOwnNotes-x86_64.AppImage | 2026-04-06 | 60.0 MB | |
| qownnotes-26.4.6.tar.xz.sha512sum | 2026-04-06 | 154 Bytes | |
| qownnotes-26.4.6.tar.xz | 2026-04-06 | 5.6 MB | |
| qownnotes-26.4.6.tar.xz.md5 | 2026-04-06 | 33 Bytes | |
| qownnotes-26.4.6.tar.xz.sha256 | 2026-04-06 | 65 Bytes | |
| qownnotes-26.4.6.tar.xz.sha256sum | 2026-04-06 | 90 Bytes | |
| qownnotes-26.4.6.tar.xz.sha512 | 2026-04-06 | 129 Bytes | |
| README.md | 2026-04-06 | 1.4 kB | |
| Release v26.4.6 source code.tar.gz | 2026-04-06 | 27.5 MB | |
| Release v26.4.6 source code.zip | 2026-04-06 | 28.5 MB | |
| Totals: 17 Items | 396.4 MB | 0 | |
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):
portableDataPath()was called before theQApplicationobject was constructed, soqAppwasnullptrand the path fell back to"."(the current working directory) instead of the AppImage's directory; the function now directly reads the$APPIMAGEenvironment variable (always set by the AppImage runtime) whenqAppis not yet available, and also accepts theargv[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
(),{},[], and<>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
QNetworkRequest::RedirectPolicyAttributeandQNetworkRequest::NoLessSafeRedirectPolicywhich were only introduced in Qt 5.9; the call is now guarded with#if QT_VERSION >= QT_VERSION_CHECK(5, 9, 0)(for #1254)