diff --git a/android-webview-app/APP_CHANGELOG.md b/android-webview-app/APP_CHANGELOG.md index 013f2b8..2114846 100644 --- a/android-webview-app/APP_CHANGELOG.md +++ b/android-webview-app/APP_CHANGELOG.md @@ -1,5 +1,10 @@ # App 更新说明 +# 1.0.19 +- 修复 Android APK 内「个人空间-新手教程」期间无法上下滚动的问题:教程遮罩层现在会正确转发触摸滑动到可滚动容器 +- 优化教程滚动目标识别:优先命中当前可滚动页面区域,减少 WebView 场景下滑动失效 +- 调整软件更新页版本展示:移除括号内的构建代数,仅显示语义版本号(如 1.0.19) + # 1.0.18 - 新增完整「新手教程」系统(高光 + 悬浮说明窗):覆盖桌面端与手机端核心功能入口 - 教程交互统一优化:仅保留“下一步”,支持自动点击与点击特效,避免误触真实页面 diff --git a/android-webview-app/app/build.gradle.kts b/android-webview-app/app/build.gradle.kts index cd81597..1489eb8 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 = 20 - versionName = "1.0.18" + versionCode = 21 + versionName = "1.0.19" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/static/src/components/overlay/TutorialOverlay.vue b/static/src/components/overlay/TutorialOverlay.vue index 675e822..d8b05bc 100644 --- a/static/src/components/overlay/TutorialOverlay.vue +++ b/static/src/components/overlay/TutorialOverlay.vue @@ -1,5 +1,14 @@