diff --git a/android-webview-app/APP_CHANGELOG.md b/android-webview-app/APP_CHANGELOG.md index 669f14f..02d59ff 100644 --- a/android-webview-app/APP_CHANGELOG.md +++ b/android-webview-app/APP_CHANGELOG.md @@ -1,5 +1,9 @@ # App 更新说明 +# 1.0.16 +- 工作区顶部品牌图标改为内联 SVG 渲染(不再依赖静态路径加载) +- 修复深色/浅色主题下 logo 颜色适配问题,跟随主题文本色显示 + # 1.0.15 - 修复图片查看链路:`view_image` 工具结果可正确附带图片内容,降低“识别成其他图片/内容”的误判 - 新增「强约束系统」开关(个人空间):可分别约束 terminal 系列与子智能体系列工具,要求先阅读对应 `skills/*/SKILL.md`(且仅对已启用 skill 生效) diff --git a/android-webview-app/app/build.gradle.kts b/android-webview-app/app/build.gradle.kts index 49e8391..009dbbd 100644 --- a/android-webview-app/app/build.gradle.kts +++ b/android-webview-app/app/build.gradle.kts @@ -16,8 +16,8 @@ android { applicationId = "com.cyjai.agent" minSdk = 24 targetSdk = 35 - versionCode = 17 - versionName = "1.0.15" + versionCode = 18 + versionName = "1.0.16" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/config/ui.py b/config/ui.py index ca751cb..aee5e08 100644 --- a/config/ui.py +++ b/config/ui.py @@ -16,7 +16,7 @@ OUTPUT_FORMATS = { "session": "📺 [会话]", } -AGENT_VERSION = "v6.0" +AGENT_VERSION = "v6.1" LOG_LEVEL = "INFO" LOG_FORMAT = "%(asctime)s - %(name)s - %(levelname)s - %(message)s" diff --git a/static/logo/logo.svg b/static/logo/logo.svg new file mode 100644 index 0000000..559dd22 --- /dev/null +++ b/static/logo/logo.svg @@ -0,0 +1,190 @@ + + + diff --git a/static/src/components/panels/LeftPanel.vue b/static/src/components/panels/LeftPanel.vue index d1d2f6d..1490920 100644 --- a/static/src/components/panels/LeftPanel.vue +++ b/static/src/components/panels/LeftPanel.vue @@ -4,7 +4,7 @@