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,41 @@
# 05. Implement Linux data models (C/Vala)
meta:
id: native-business-logic-migration-05
feature: native-business-logic-migration
priority: P0
depends_on: [native-business-logic-migration-02]
tags: [implementation, linux, data-models]
objective:
- Implement all data models in Vala/C following Linux/GNOME conventions
deliverables:
- feed-item.vala
- feed.vala
- feed-subscription.vala
- search-result.vala
- search-filters.vala
- notification-preferences.vala
- reading-preferences.vala
- Supporting structs and enums
tests:
- Unit: Test JSON serialization with Gio
- Unit: Test property accessors
- Unit: Test equality methods
acceptance_criteria:
- All models properly structured
- JSON serialization working
- Memory management correct (no leaks)
- GObject integration ready
validation:
- Run `meson test -C build`
- Check with valgrind for memory leaks
notes:
- Use Vala objects for reference types
- Use structs for value types
- Follow GNOME HIG for naming