Skip to content

Commit 455d015

Browse files
author
CIS Guru
committed
chore: update README.md for v1.1.0 release
1 parent 27c585e commit 455d015

1 file changed

Lines changed: 60 additions & 32 deletions

File tree

β€ŽREADME.mdβ€Ž

Lines changed: 60 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Modern Property Management for Landlords**
44

5-
[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/xnodeoncode/Aquiis/releases)
5+
[![Version](https://img.shields.io/badge/version-1.1.0-blue.svg)](https://github.com/xnodeoncode/Aquiis/releases)
66
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
77
[![.NET](https://img.shields.io/badge/.NET-10.0-purple.svg)](https://dotnet.microsoft.com/)
88
[![Platform](https://img.shields.io/badge/platform-Linux%20%7C%20Windows-lightgrey.svg)](#installation)
@@ -62,23 +62,26 @@
6262
- πŸ“… Background tasks for scheduling and cleanup
6363
- 🎯 Configurable notification preferences
6464

65-
### Database Management
65+
### Database & Security
6666

6767
- πŸ’Ύ SQLite file-based database (no server required)
68+
- πŸ”’ **NEW:** Database encryption at rest (SQLCipher AES-256)
69+
- πŸ”‘ **NEW:** OS keychain integration for password management
6870
- πŸ”„ Automatic schema migrations
6971
- πŸ“¦ Manual and scheduled backups
7072
- ♻️ Staged restore with preview
73+
- πŸ” Content Security Policy (CSP) headers for web security
7174

7275
---
7376

7477
## οΏ½ Download
7578

76-
**Latest Release: v1.0.0**
79+
**Latest Release: v1.1.0**
7780

78-
[![Download for Linux](https://img.shields.io/badge/Download-Linux%20AppImage-blue.svg?style=for-the-badge&logo=linux)](https://github.com/xnodeoncode/Aquiis/releases/download/v1.0.0/AquiisPropertyManagement-1.0.0.AppImage)
79-
[![Download for Windows](https://img.shields.io/badge/Download-Windows%20Portable-blue.svg?style=for-the-badge&logo=windows)](https://github.com/xnodeoncode/Aquiis/releases/download/v1.0.0/AquiisPropertyManagement%201.0.0.exe)
81+
[![Download for Linux](https://img.shields.io/badge/Download-Linux%20AppImage-blue.svg?style=for-the-badge&logo=linux)](https://github.com/xnodeoncode/Aquiis/releases/download/v1.1.0/Aquiis-1.1.0-x86_64.AppImage)
82+
[![Download for Windows](https://img.shields.io/badge/Download-Windows%20Setup-blue.svg?style=for-the-badge&logo=windows)](https://github.com/xnodeoncode/Aquiis/releases/download/v1.1.0/Aquiis-1.1.0-x64-Setup.exe)
8083

81-
**All Downloads:** [View v1.0.0 Release](https://github.com/xnodeoncode/Aquiis/releases/tag/v1.0.0)
84+
**All Downloads:** [View v1.1.0 Release](https://github.com/xnodeoncode/Aquiis/releases/tag/v1.1.0)
8285

8386
---
8487

@@ -90,41 +93,48 @@
9093

9194
```bash
9295
# Download from releases page or use wget
93-
wget https://github.com/xnodeoncode/Aquiis/releases/download/v1.0.0/AquiisPropertyManagement-1.0.0.AppImage
96+
wget https://github.com/xnodeoncode/Aquiis/releases/download/v1.1.0/Aquiis-1.1.0-x86_64.AppImage
9497

9598
# Make executable
96-
chmod +x AquiisPropertyManagement-1.0.0.AppImage
99+
chmod +x Aquiis-1.1.0-x86_64.AppImage
97100

98101
# Option 1: Desktop integration (recommended)
99-
wget https://github.com/xnodeoncode/Aquiis/releases/download/v1.0.0/install-desktop-integration.sh
102+
wget https://github.com/xnodeoncode/Aquiis/releases/download/v1.1.0/install-desktop-integration.sh
100103
chmod +x install-desktop-integration.sh
101-
./install-desktop-integration.sh AquiisPropertyManagement-1.0.0.AppImage
104+
./install-desktop-integration.sh Aquiis-1.1.0-x86_64.AppImage
102105

103106
# Option 2: Run directly
104-
./AquiisPropertyManagement-1.0.0.AppImage
107+
./Aquiis-1.1.0-x86_64.AppImage
105108
```
106109

107-
#### Windows (Portable Executable)
110+
#### Windows (Installer or Portable)
108111

109-
1. **Download** `AquiisPropertyManagement 1.0.0.exe` from [releases page](https://github.com/xnodeoncode/Aquiis/releases/tag/v1.0.0)
112+
**Option A: Installer (Recommended)**
113+
114+
1. **Download** `Aquiis-1.1.0-x64-Setup.exe` from [releases page](https://github.com/xnodeoncode/Aquiis/releases/tag/v1.1.0)
115+
2. **Run installer** and follow the setup wizard
116+
3. **Launch** from Start Menu or Desktop shortcut
117+
118+
**Option B: Portable Executable**
119+
120+
1. **Download** `Aquiis-1.1.0-x64-Portable.exe` from [releases page](https://github.com/xnodeoncode/Aquiis/releases/tag/v1.1.0)
110121
2. **Move to permanent location** (e.g., `C:\Program Files\Aquiis\`)
111122
- ⚠️ Database and settings are stored relative to the .exe location
112123
3. **Double-click** to run
113-
4. **First launch**: Windows SmartScreen warning is expected (app is unsigned)
114-
- Click **"More info"** β†’ **"Run anyway"**
115-
- Code signing planned for v1.1.0
124+
125+
**Note:** Windows SmartScreen warning may appear (app is unsigned). Click **"More info"** β†’ **"Run anyway"**. Code signing planned for future release.
116126

117127
#### Verify Download (Optional)
118128

119129
```bash
120130
# Download checksums
121-
wget https://github.com/xnodeoncode/Aquiis/releases/download/v1.0.0/checksums.txt
131+
wget https://github.com/xnodeoncode/Aquiis/releases/download/v1.1.0/checksums.txt
122132

123133
# Linux
124134
sha256sum -c checksums.txt
125135

126136
# Windows PowerShell
127-
Get-FileHash "AquiisPropertyManagement 1.0.0.exe" -Algorithm SHA256
137+
Get-FileHash "Aquiis-1.1.0-x64-Setup.exe" -Algorithm SHA256
128138
```
129139

130140
### First Run
@@ -136,7 +146,7 @@ Get-FileHash "AquiisPropertyManagement 1.0.0.exe" -Algorithm SHA256
136146

137147
### 15-Minute Tutorial
138148

139-
Follow our [Quick Start Guide](Documentation/v1.0.0/v1.0.0-Quick-Start-Guide.md) to:
149+
Follow our [Quick Start Guide](Documentation/Quick-Start-Guide.md) to:
140150

141151
- Add your first property
142152
- Add a tenant
@@ -182,9 +192,11 @@ Aquiis is available as a portable Windows executable (.exe). No installation req
182192

183193
### User Documentation
184194

185-
- πŸ“– **[Release Notes](Documentation/v1.0.0/v1.0.0-Release-Notes.md)** - What's new in v1.0.0
186-
- πŸš€ **[Quick Start Guide](Documentation/v1.0.0/v1.0.0-Quick-Start-Guide.md)** - Get started in 15 minutes
187-
- πŸ’Ύ **[Database Management Guide](Documentation/v1.0.0/v1.0.0-Database-Management-Guide.md)** - Backup, restore, troubleshooting
195+
- πŸ“– **[Release Notes](Documentation/v1.1.0/v1.1.0-Release-Notes.md)** - What's new in v1.1.0
196+
- πŸš€ **[Quick Start Guide](Documentation/Quick-Start-Guide.md)** - Get started in 15 minutes
197+
- πŸ’Ύ **[Database Management Guide](Documentation/Database-Management-Guide.md)** - Backup, restore, troubleshooting
198+
- πŸ”’ **[Security Features](Documentation/v1.1.0/Security-Enhancements.md)** - Database encryption, CSP, and more
199+
- πŸ“Š **[Compatibility Matrix](Documentation/Compatibility-Matrix.md)** - Version compatibility and upgrade paths
188200

189201
### Developer Documentation
190202

@@ -303,21 +315,34 @@ We use [Semantic Versioning](https://semver.org/):
303315
- **MINOR** version (0.X.0): New features, UI changes (backward compatible)
304316
- **PATCH** version (0.0.X): Bug fixes, minor updates
305317

306-
**Current version:** 1.0.0 (Initial production release)
318+
**Current version:** 1.1.0 (Security and schema enhancement release)
319+
**Database version:** 1.1.0
307320

308321
---
309322

310323
## πŸ—ΊοΈ Roadmap
311324

312-
### v1.1.0 (Q2 2026)
325+
### v1.1.0 (Released February 2026) βœ…
313326

314-
- 🎯 Tenant portal for online payment and maintenance requests
315-
- 🎯 Calendar refactoring (remove legacy service dependencies)
316-
- 🎯 Enhanced reporting and customization
317-
- 🎯 Mobile companion app (view-only)
327+
- βœ… Database encryption at rest (SQLCipher AES-256)
328+
- βœ… OS keychain integration (Linux)
329+
- βœ… Sample data management (IsSampleData flag)
330+
- βœ… Multi-tenant index fixes
331+
- βœ… Content Security Policy headers
332+
- βœ… Database schema v1.1.0 with automatic migrations
333+
334+
### v1.2.0 (Q2 2026)
335+
336+
- 🎯 Windows/macOS keychain integration
337+
- 🎯 Rate limiting for login endpoints
338+
- 🎯 Antiforgery tokens in all forms
339+
- 🎯 Code signing for Windows
340+
- 🎯 Calendar refactoring
318341

319-
### v1.2.0 (Q3 2026)
342+
### v1.3.0 (Q3 2026)
320343

344+
- 🎯 Tenant portal for online payment and maintenance requests
345+
- 🎯 Enhanced reporting and customization
321346
- πŸ’³ Online rent payment processing (Stripe integration)
322347
- πŸ“Š Advanced analytics and forecasting
323348

@@ -345,7 +370,8 @@ Licensed under the **MIT License** - see [LICENSE](LICENSE) file for details.
345370
- πŸ“§ **Email:** cisguru@outlook.com
346371
- πŸ› **Bug Reports:** [GitHub Issues](https://github.com/xnodeoncode/Aquiis/issues)
347372
- πŸ’‘ **Feature Requests:** [GitHub Discussions](https://github.com/xnodeoncode/Aquiis/discussions)
348-
- πŸ“– **Documentation:** [/Documentation/v1.0.0/](Documentation/v1.0.0/)
373+
- πŸ“– **Documentation:** [/Documentation/](Documentation/)
374+
- πŸ”’ **Security Issues:** Please report privately to cisguru@outlook.com
349375

350376
### Community
351377

@@ -376,12 +402,14 @@ Licensed under the **MIT License** - see [LICENSE](LICENSE) file for details.
376402

377403
## 🎊 Status
378404

379-
**v1.0.0 - General Availability** πŸŽ‰
405+
**v1.1.0 - Security & Schema Enhancement Release** πŸŽ‰
380406

381-
- βœ… **95.75% Production Ready**
407+
- βœ… **Production Ready**
382408
- βœ… **303 tests passing**
409+
- βœ… **Database encryption at rest**
383410
- βœ… **CI/CD pipeline complete**
384411
- βœ… **Documentation complete**
412+
- πŸ”’ **Enterprise-grade security features**
385413
- πŸš€ **Ready for production use!**
386414

387415
---

0 commit comments

Comments
Β (0)