migration start
Some checks failed
CI - Multi-Platform Native / Build iOS (RSSuper) (push) Has been cancelled
CI - Multi-Platform Native / Build macOS (push) Has been cancelled
CI - Multi-Platform Native / Build Android (push) Has been cancelled
CI - Multi-Platform Native / Build Linux (push) Has been cancelled
CI - Multi-Platform Native / Build Summary (push) Has been cancelled

This commit is contained in:
2026-03-29 14:12:17 -04:00
parent af87f9f571
commit d346b527e6
51 changed files with 4476 additions and 69 deletions

View File

@@ -0,0 +1,39 @@
# 29. Implement Linux settings/preferences store
meta:
id: native-business-logic-migration-29
feature: native-business-logic-migration
priority: P1
depends_on: [native-business-logic-migration-17]
tags: [implementation, linux, settings]
objective:
- Implement settings store using GSettings and JSON file
deliverables:
- settings-store.vala
- app-settings.vala
- reading-preferences.vala
- notification-preferences.vala
- GSettings schema
tests:
- Unit: Test property storage/retrieval
- Unit: Test defaults
- Unit: Test synchronization
acceptance_criteria:
- All settings persisted
- Defaults properly set
- Changes observed in real-time
- Settings follow XDG spec
- Settings migrated between versions
validation:
- Run `meson test -C build`
- Test with gsettings CLI
notes:
- Use GSettings for system integration
- Use JSON file for app-specific
- Follow XDG Base Directory spec