This commit is contained in:
Developer
2026-06-04 00:29:44 +08:00
parent ae1df22732
commit 91f1d80a9f
93 changed files with 3433 additions and 430 deletions

View File

@@ -4,6 +4,65 @@
***
## [v6.10.5] - 2026-06-02
### 🧭 修复多个页面缺少AppBar标题和返回按钮
**问题:** 多个页面使用 `AdaptiveBackButton` 但当 `canPop()` 为 false 时按钮消失,或缺少 `middle` 标题导致导航栏空白;部分页面使用自定义导航栏而非标准 `CupertinoNavigationBar`,风格不统一。
**修复内容:**
-`login_page.dart` — 添加动态 `middle` 标题(登录/注册切换),替换 `AdaptiveBackButton` 为始终可见的导航按钮(可返回时显示返回箭头,不可返回时显示关闭按钮并导航回首页)
-`chat_video_bubble.dart` — 添加 `middle` 标题「🎬 视频播放」
-`chat_image_bubble.dart` — 添加 `middle` 标题「🖼️ 图片预览」
-`tts_plugin_page.dart``CupertinoSliverNavigationBar` 添加 `middle` 属性,滚动折叠后仍显示标题
-`widget_management_page.dart` — 自定义导航替换为标准 `CupertinoSliverNavigationBar`
-`source_page.dart` — 自定义导航替换为标准 `CupertinoNavigationBar`
-`leisure_timeline_page.dart` — 自定义 BackdropFilter 导航替换为标准 `CupertinoNavigationBar`
**涉及文件:**
- `lib/features/auth/presentation/login_page.dart`
- `lib/features/discover/presentation/widgets/chat_bubble/chat_video_bubble.dart`
- `lib/features/discover/presentation/widgets/chat_bubble/chat_image_bubble.dart`
- `lib/features/mine/settings/presentation/plugin/tts_plugin_page.dart`
- `lib/features/widget/presentation/widget_management_page.dart`
- `lib/features/source/presentation/source_page.dart`
- `lib/features/tool_center/leisure/presentation/pages/leisure_timeline_page.dart`
***
## [v6.10.4] - 2026-06-02
### 🌐 Me页面、缓存管理、账户洞察多语言支持
**变更:** 为三个核心页面添加完整多语言支持覆盖项目全部14种语言。
**新增翻译类型:**
-`TAccountInsights` — 账户洞察页面翻译类型26个字段
-`TProfile` 扩展23个新字段连续签到、收藏、点赞、每日签到、学习中心、成就中心、每日任务、排行榜、数据统计、我的笔记、内容纠错、我的设备、标签云、个人信息、用户名、昵称、个性签名、未设置、未填写、已设置、审核中、修改用户名、修改昵称
-`TSettingsCache` 扩展61个新字段存储空间、数据库、缓存条数、分类统计、各类缓存清理确认对话框、缓存策略、缓存上限、过期天数、离线模式、WiFi预加载、自动同步等
**页面组件修改:**
-`user_stats_bar.dart` — 积分/连续签到/收藏/笔记/点赞标签国际化
-`quick_action_grid.dart` — 10个功能入口标题国际化
-`editable_info_section.dart` — 个人信息区域标签国际化
-`user_center_page.dart` — 传入翻译参数
-`cache_management_page.dart` — 44处硬编码中文替换为翻译字段
-`account_insights_sheet.dart` — 全部硬编码中文替换为翻译字段
**语言覆盖14种**
- zh_cn, en, ja, zh_tw, ko, de, it, es, ar, bn, hi, pt, ru, fr
**涉及文件:**
- `lib/l10n/types/t_profile.dart` — 扩展23个字段
- `lib/l10n/types/t_settings_cache.dart` — 扩展61个字段
- `lib/l10n/types/t_account_insights.dart` — 新建
- `lib/l10n/types/t_root.dart` — 注册accountInsights
- `lib/l10n/types/t.dart` — 导出新类型
- `lib/l10n/translation_io_service.dart` — 更新_importProfile和T构造
- `lib/l10n/languages/*.dart` — 14个语言文件更新
***
## [v6.10.3] - 2026-06-02
### 🌐 多语言翻译字段补全