Add GBP currency support and update comprehensive documentation

- Add British Pound (GBP) support to all database schemas and constraints
- Update API validation to accept EUR, USD, and GBP currencies
- Implement centralized currency symbol mapping with getCurrencySymbol()
- Replace all hardcoded currency mappings throughout frontend code
- Add GBP options to all currency dropdown menus in UI forms
- Update README with enhanced feature descriptions and changelog
- Document multi-currency support and historical price tracking features
- Improve project documentation with comprehensive feature overview

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
kris
2025-09-01 17:37:41 +00:00
co-authored by Claude
parent 4119143283
commit ae6b0ac80e
4 changed files with 51 additions and 22 deletions
+3
View File
@@ -222,6 +222,7 @@
<option value="">Select currency</option>
<option value="EUR">Euro (€)</option>
<option value="USD">US Dollar ($)</option>
<option value="GBP">British Pound (£)</option>
</select>
</div>
@@ -448,6 +449,7 @@ curl -H "Authorization: Bearer YOUR_TOKEN" \<br>
<select id="account-currency">
<option value="EUR" selected>EUR (€)</option>
<option value="USD">USD ($)</option>
<option value="GBP">GBP (£)</option>
</select>
</div>
</div>
@@ -509,6 +511,7 @@ curl -H "Authorization: Bearer YOUR_TOKEN" \<br>
<select id="edit-account-currency">
<option value="EUR">EUR (€)</option>
<option value="USD">USD ($)</option>
<option value="GBP">GBP (£)</option>
</select>
</div>
</div>