No description
- Dart 91.1%
- C++ 4.3%
- CMake 3.3%
- Ruby 0.5%
- Swift 0.4%
- Other 0.4%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
Birthday Detection:
- Add CelebrationKeywords extensible language system (en/fr)
- Fix French event title detection ('Anniversaire romane' -> 'Romane')
- Fix _normalizePersonName destroying French names via destructive regex
- Cross-language deduplication support
- 93 new tests (CelebrationKeywords, name extraction, integration)
Performance:
- LiquidGlass lifecycle pause/resume (WidgetsBindingObserver)
- Reduce blur sigmas (28->16, 14->8), aurora step (4->8), particles (20->12)
- Share GlassCard shimmer controller across instances
- Batch contact loading (N+1 -> 1 lookup)
- RepaintBoundary wrapping list items
Bugfix:
- Add missing break in paused lifecycle case (prevent fall-through to resumed)
Tested: 370/370 tests pass, flutter analyze clean
|
||
| .sisyphus | ||
| android | ||
| ios | ||
| lib | ||
| linux | ||
| macos | ||
| test | ||
| web | ||
| windows | ||
| .gitignore | ||
| .metadata | ||
| analysis_options.yaml | ||
| pubspec.lock | ||
| pubspec.yaml | ||
| README.md | ||
TessApp
iOS
Deployment target
This project targets iOS 17.0+.
If you change the iOS version, keep these in sync:
ios/Podfile(platform :ios, '...')ios/Runner.xcodeproj/project.pbxproj(IPHONEOS_DEPLOYMENT_TARGET)ios/Flutter/AppFrameworkInfo.plist(MinimumOSVersion)
iOS 26 debug: EXC_BREAKPOINT at Flutter NOTIFY_DEBUGGER_ABOUT_RX_PAGES
On Xcode 26.4+ / iOS 26 devices, flutter run in debug can stop at:
EXC_BREAKPOINT ... Flutter`NOTIFY_DEBUGGER_ABOUT_RX_PAGES
This is a known Flutter/LLDB issue in debug mode (JIT RX-page notifications), and is more likely over wireless debugging.
Workarounds:
- Prefer a wired (USB) device connection
- Run without JIT:
flutter run --profile(or--release) - Upgrade Flutter to a version that includes the fix (Flutter 3.41.7+ per Flutter issue tracker)