| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| checksums-macos.txt | 2026-08-05 | 95 Bytes | |
| Mini-Diarium-0.6.5-macos.dmg | 2026-08-05 | 28.4 MB | |
| checksums-windows.txt | 2026-08-05 | 194 Bytes | |
| Mini-Diarium-0.6.5-windows.exe | 2026-08-05 | 12.9 MB | |
| Mini-Diarium-0.6.5-windows.msi | 2026-08-05 | 15.8 MB | |
| checksums-linux.txt | 2026-08-05 | 195 Bytes | |
| Mini-Diarium-0.6.5-linux.AppImage | 2026-08-05 | 93.5 MB | |
| Mini-Diarium-0.6.5-linux.deb | 2026-08-05 | 16.7 MB | |
| 0.6.5 source code.tar.gz | 2026-08-05 | 16.1 MB | |
| 0.6.5 source code.zip | 2026-08-05 | 16.7 MB | |
| README.md | 2026-08-05 | 2.0 kB | |
| Totals: 11 Items | 200.1 MB | 0 | |
What's Changed
This release makes the minimum OS requirements visible to users before download and fixes broken title-bar buttons on Linux with Wayland.
Added
- Published minimum supported OS versions: the minimum version for each platform (Windows 10 1809+, macOS 10.15 Catalina+, Linux with
glibc2.31+ / WebKitGTK 4.1) was only recorded intauri.conf.jsonand appeared nowhere a user could find it. It is now stated in the README download section, a new "System requirements" section indocs/INSTALLATION.md, the Getting Started documentation page, and on each platform card in the website download section. Requested in issue [#241] by a user who could not tell whether the app would run on their Mac before downloading it.
Fixed
- Title-bar buttons did nothing on Linux/Wayland (issue [#238], reported on Arch + KDE Plasma 6 + Flatpak): the minimize, maximize, and close buttons were drawn but ignored every click, and the only way to make them work was to double-click the title bar first, which had to be repeated on every launch. The cause is upstream in
tao, the windowing library Tauri uses: on Wayland it draws its own title bar and covers it with a transparent input layer that intercepted the clicks before the buttons could see them. That layer is re-applied every time the window is shown, and Mini Diarium deliberately starts hidden so your saved window position is restored before the window appears, which is why it was broken from the first frame. The app now removes the layer after showing the window. The fix is Linux-only, turns itself off on X11, and will be dropped once a Tauri release includes the upstream fix (tao#1218, TODO-0097).