qzl
2cdf075e92
feat: 添加用户行为分析功能
2026-04-01 18:35:32 +08:00
qzl
19aa33a609
fix: correct test failures and error propagation
...
- Add CacheScope provider in UserProfileCacheRepository tests
- Remove catch blocks that swallowed errors in _loadHistory/_loadMoreHistory
- Errors now properly propagate to switchUser() caller
2026-04-01 15:11:49 +08:00
qzl
640b4d15a3
test(logging): optimize logging tests and fix broken tests
2026-04-01 14:46:47 +08:00
qzl
49c062d5a5
feat(logging): add logging to home voice recorder
2026-04-01 14:34:36 +08:00
qzl
b8e5a42a12
feat(logging): add logging to chat bloc history and attachments
2026-04-01 14:33:41 +08:00
qzl
4fb41d2b36
feat(logging): add logging to todo repository
2026-04-01 14:32:29 +08:00
qzl
ad37ca3c64
feat(logging): add logging to settings automation_jobs_cubit
2026-04-01 14:32:04 +08:00
qzl
ccf6da60a1
feat(logging): add logging to messages inbox_repository
2026-04-01 14:31:28 +08:00
qzl
7c311b0785
feat(logging): add logging to contacts friend_repository
2026-04-01 14:30:44 +08:00
qzl
11ab3d0e22
feat(logging): add logging to calendar repository
2026-04-01 14:29:38 +08:00
qzl
63d225c567
feat(logging): add logging to auth feature
2026-04-01 14:28:30 +08:00
qzl
227c9c123c
feat(logging): add logging to ChatBloc
2026-04-01 14:20:08 +08:00
zl-q
6722f3d74b
refactor: 重构提醒通知系统
2026-04-01 00:42:34 +08:00
qzl
9a231dae9e
feat: 重构会话管理与提醒通知系统
2026-03-31 18:26:36 +08:00
qzl
91bf3c3f96
feat: 重构 Reminder Notification 系统并更新应用包名
2026-03-30 18:36:57 +08:00
qzl
9fb2a6857b
feat: 日历分享改为按手机号+好友关系校验
2026-03-30 11:37:41 +08:00
zl-q
60318b7aaa
chore: 更新国际化翻译及 UI 组件优化
2026-03-30 09:07:30 +08:00
zl-q
4285b4ec80
refactor: 重构聊天模块支持 SSE 断线重连及用户上下文隔离
2026-03-30 09:06:10 +08:00
zl-q
1aac62f39e
feat: 添加日历事件订阅者功能及权限重构
2026-03-30 09:05:50 +08:00
zl-q
f126d7a547
refactor: 重构聊天数据层至core并简化首页UI
2026-03-29 21:46:26 +08:00
zl-q
4db9a13bfe
refactor(apps): 重构数据层目录结构并新增启动预热编排器
2026-03-29 20:26:30 +08:00
qzl
ae29a8209b
refactor(apps): 主题系统迁移至 ColorScheme + 扩展架构并支持 Dark Mode
2026-03-27 19:07:39 +08:00
qzl
c592cc7854
feat(apps): 重构 UI 架构为 presentation 层并新增 l10n 国际化支持
2026-03-27 14:05:03 +08:00
qzl
5900993ee7
refactor: unify storage config keys and refresh local dev setup
2026-03-26 13:25:25 +08:00
qzl
96fc4a1e77
feat: 支持 agent 运行取消功能
2026-03-25 18:33:25 +08:00
qzl
d22ded21f8
refactor: 重构 schemas 结构,统一枚举定义
2026-03-25 12:36:31 +08:00
qzl
389f5248fc
feat: 统一自动化任务调度配置并增强聊天流恢复
2026-03-24 18:19:33 +08:00
qzl
23359c2d01
feat: 添加自动化任务(automation_jobs)功能模块
2026-03-24 12:38:11 +08:00
qzl
f4b7eb7e09
refactor: 梳理规则体系并统一记忆与部署流程
2026-03-23 17:57:24 +08:00
qzl
6be616f108
feat: 重构 memory 系统,支持 user memory 和 work memory 分离
2026-03-23 14:25:47 +08:00
qzl
20b9e70e84
fix(apps): 修复通知点击不显示ReminderOverlay和日历编辑后不刷新问题
...
- AppDelegate: 只存储payload字段而非整个userInfo字典
- LocalNotificationService: 移除旧的取消/稍后提醒action按钮配置
- ReminderNotificationCallbacks: 添加onNotificationPayloadReceived静态回调
- IOSNotificationPayloadBridge: 添加setPendingPayload方法
- main.dart: 设置onNotificationPayloadReceived触发ReminderOverlay显示,添加WidgetsBindingObserver处理后台恢复
- CalendarEventDetailScreen: 编辑保存后正确传递刷新信号给日视图
2026-03-20 19:34:06 +08:00
qzl
fcf98b1142
feat(apps): refine login consent and calendar day/month UX
2026-03-20 19:00:24 +08:00
qzl
d17f5d78aa
refactor: cleanup dead code from reminder system
...
- Remove permission fallback logic from LocalNotificationService
- Remove unused methods: _scheduleInApp*, _trackFallback, bindInAppReminderHandler
- Remove unused fields: _permissionFallbackTracker, _inAppReminderHandler, _inAppFallbackTimersByEventId, _canDeliverSystemNotification
- Remove unused _showSnoozeOptions from ReminderOverlay
- Remove unused reminderActionExecutor from AuthSessionBootstrapper
- Remove obsolete test files: reminder_permission_fallback_test, reminder_notification_bridge_test, auth_session_bootstrapper_test
- Add native notification grouping (threadIdentifier/groupKey)
2026-03-20 18:53:32 +08:00
qzl
4b29b300da
feat(calendar): implement ReminderOverlay and supporting components
...
- Add ReminderQueueManager for managing notification queue
- Add IOSNotificationPayloadBridge for iOS cold start handling
- Add ReminderOverlay UI component with snooze (5/15 min) and complete actions
- Update main.dart to integrate ReminderOverlay
- LocalNotificationService: remove permission fallback logic, add native grouping
2026-03-20 18:47:50 +08:00
qzl
6e35fff9a4
refactor(calendar): remove deprecated reminder components
2026-03-20 18:42:58 +08:00
qzl
55f3805ee9
fix: resolve navigation-cache regressions and todo UX
2026-03-20 16:45:08 +08:00
qzl
20f3285244
fix: prioritize realtime reminder archive with cold-start fallback
2026-03-20 15:41:48 +08:00
qzl
e64b9c670c
feat: add todo cache repository and precise invalidation
2026-03-20 15:37:59 +08:00
qzl
8883248968
refactor: decouple calendar screens from route-driven reload
2026-03-20 15:34:44 +08:00
qzl
0476f7f80c
feat: switch main navigation to stateful shell tabs
2026-03-20 15:31:08 +08:00
qzl
a99973fb96
refactor: merge profile cache into unified cache repository
2026-03-20 15:29:06 +08:00
qzl
cbbed29a75
feat: enforce hierarchical back navigation and home-only exit
2026-03-20 15:20:29 +08:00
qzl
fbf15bc937
refactor(todo): 移除 due_at 字段,改用 order 字段管理象限内顺序
2026-03-20 11:09:38 +08:00
zl-q
d574128815
feat: 实现日历提醒 in-app fallback 机制及通知服务重构
2026-03-20 01:30:34 +08:00
qzl
8d4a14150b
feat(apps): update UI screens and shared components
...
- Update home screen with new composer and interactions
- Update settings screens with new profile flow
- Update calendar share dialog
- Update contacts screen
- Add new shared widgets: confirm_sheet, phone_prefix_selector
- Add new formatters: phone_display_formatter
- Update tests for modified components
2026-03-19 18:43:08 +08:00
qzl
0661016827
feat(auth): transition from email to phone-based OTP authentication
...
- Replace Email+Password login with Phone+OTP flow
- Remove RegisterCubit and registration screens (email verification)
- Remove ResetPasswordCubit and reset password screens
- Add phone normalization and international dial code support
- Update LoginCubit with sendCode/resend cooldown logic
- Add new widgets: phone prefix selector, confirm sheet
- Update all auth API endpoints: /otp/send, /phone-session
- Update form inputs: Email -> Phone with E.164 validation
- Update tests for new auth flow
2026-03-19 18:42:05 +08:00
zl-q
29a4ea5294
feat(apps): 更新消息邀请详情和认证流程路由
2026-03-19 00:51:58 +08:00
zl-q
81cbc14219
feat(apps/chat): 新增 UI Schema 导航和路由导航工具
2026-03-19 00:51:57 +08:00
zl-q
82a7d594bd
feat(apps/todo): 新增 TodoEditScreen 编辑功能
2026-03-19 00:51:52 +08:00
zl-q
039e8b73d6
feat(apps/home): 新增 HomeScreen 录音交互与导航组件
2026-03-19 00:51:52 +08:00