Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 4-Aquiis.SimpleStart/Assets/aquiis.desktop
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[Desktop Entry]
Name=Aquiis Property Management
Comment=Multi-tenant property management system for small landlords
Exec=AquiisPropertyManagement.AppImage
Exec=Aquiis-1.1.0-x86_64.AppImage
Copy link

Copilot AI Feb 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Exec field references a version-specific filename 'Aquiis-1.1.0-x86_64.AppImage', which will become outdated with every version release. This creates maintenance burden as the desktop file needs updating for each new version. Consider using a version-agnostic symlink or executable name (e.g., 'Aquiis.AppImage' or just 'aquiis') that points to the current version, or configure the build system to handle this dynamically.

Suggested change
Exec=Aquiis-1.1.0-x86_64.AppImage
Exec=Aquiis.AppImage

Copilot uses AI. Check for mistakes.
Icon=aquiis
Type=Application
Categories=Office;Finance;
Terminal=false
StartupWMClass=Aquiis Property Management
X-AppImage-Version=1.0.0
X-AppImage-Version=1.1.0
X-AppImage-Name=Aquiis Property Management
X-AppImage-Arch=x86_64
Keywords=property;management;landlord;rental;lease;tenant;invoice;
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,21 @@
</provides>

<releases>
<release version="1.1.0" date="2026-02-19">
<description>
<p>Security and Schema Enhancement Release</p>
<ul>
<li>Database encryption at rest with SQLCipher AES-256</li>
<li>Sample data management system with IsSampleData flags</li>
<li>Content Security Policy (CSP) headers for web security</li>
<li>Multi-tenant data integrity enhancements</li>
<li>Database schema v1.1.0 with automatic migrations</li>
<li>OS keychain integration for password caching (Linux)</li>
<li>Automatic database location migration</li>
<li>New application naming convention</li>
</ul>
</description>
</release>
<release version="1.0.0" date="2026-01-28">
<description>
<p>First stable release for public distribution</p>
Expand Down