feat: 新增CTC云端笔记仓库功能

- 新增多语言国际化文案支持笔记仓库模块
- 配置Universal Links与App Links支持ctc.s2ss.com域名跳转
- 实现CTS会话入口与会话时间更新逻辑
- 新增CTC笔记完整服务栈:API客户端、本地存储、同步服务
- 新增笔记编辑、预览、冲突解决、版本对比组件
- 新增二维码扫码/分享功能与路由配置
- 修复UrlAnalyzerService调用参数冗余问题
- 修复ProfileHeader组件样式问题
- 统一macOS部署目标版本为13.0
- 抑制liquid_glass_widgets高频调试日志
This commit is contained in:
Developer
2026-06-11 08:46:46 +08:00
parent 7a6d555e4c
commit 016ad3cea1
60 changed files with 8372 additions and 760 deletions

View File

@@ -140,6 +140,27 @@
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="*/*"/>
</intent-filter>
<!-- Deep Link — s2ss.com 通用链接 (App Links) -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="https" android:host="s2ss.com"/>
</intent-filter>
<!-- Deep Link — ctc.s2ss.com CTC笔记通用链接 (App Links) -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="https" android:host="ctc.s2ss.com"/>
</intent-filter>
<!-- Deep Link — xianyan:// 自定义 Scheme -->
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="xianyan"/>
</intent-filter>
</activity>
<!-- 管理空间Activity — 系统应用信息页"管理空间"按钮入口 -->
<activity