Summary
The About dialog always displays Version 0.1.5, no matter which release is actually installed.
Steps to reproduce
- Install the latest release (e.g. v0.2.0) from RPM/Deb/AppImage.
- Verify the installed version:
rpm -q thinkutils → thinkutils-0.2.0-1.x86_64.
- Open the app → About dialog → it shows
Version 0.1.5.
Expected
The About dialog should show the version of the running build (e.g. 0.2.0).
Actual
Version 0.1.5 is hardcoded in src/templates/dialogs.html and is not synchronized with release versions. It is still 0.1.5 on the main branch, while src-tauri/tauri.conf.json declares 0.2.0.
Suggested fix
Instead of a hardcoded string, read the app version at runtime via Tauri's getVersion() (__TAURI__.app.getVersion()) and inject it into the dialog. That keeps the About dialog accurate across all packaging channels (RPM, Deb, AppImage, AUR/COPR/PPA) without manual bumping.
Summary
The About dialog always displays
Version 0.1.5, no matter which release is actually installed.Steps to reproduce
rpm -q thinkutils→thinkutils-0.2.0-1.x86_64.Version 0.1.5.Expected
The About dialog should show the version of the running build (e.g.
0.2.0).Actual
Version 0.1.5is hardcoded insrc/templates/dialogs.htmland is not synchronized with release versions. It is still0.1.5on themainbranch, whilesrc-tauri/tauri.conf.jsondeclares0.2.0.Suggested fix
Instead of a hardcoded string, read the app version at runtime via Tauri's
getVersion()(__TAURI__.app.getVersion()) and inject it into the dialog. That keeps the About dialog accurate across all packaging channels (RPM, Deb, AppImage, AUR/COPR/PPA) without manual bumping.