Browse Source

build:切换到调试模式并更新版本号

- 在 BuildProfile.ets 文件中将 BUILD_MODE_NAME 从 'release' 改为 'debug'
- 将 DEBUG 从 false 改为 true- 更新 CHANGELOG.md,添加 v1.0.11 版本信息
- 修改初始化逻辑,解决窗口状态异常问题
徐勤民 1 week ago
parent
commit
07d1e906df
2 changed files with 6 additions and 3 deletions
  1. 2 2
      BuildProfile.ets
  2. 4 1
      CHANGELOG.md

+ 2 - 2
BuildProfile.ets

@@ -2,8 +2,8 @@
  * Use these variables when you tailor your ArkTS code. They must be of the const type.
  */
 export const HAR_VERSION = '1.0.10';
-export const BUILD_MODE_NAME = 'release';
-export const DEBUG = false;
+export const BUILD_MODE_NAME = 'debug';
+export const DEBUG = true;
 export const TARGET_NAME = 'default';
 
 /**

+ 4 - 1
CHANGELOG.md

@@ -1,9 +1,12 @@
+# [v1.0.11] 2025.xx.xx
+
+> - 修改初始化逻辑,解决`This window state is abnormal`的问题
+>
 # [v1.0.10] 2025.05.30
 
 > - `ToolsHelper.showConfirmDialog()`&`ToolsHelper.showAlertDialog()`添加自定义`UI`功能
 > - 添加一个`ImageHelper`,处理图片相关
 > - 添加一个`SwipeView`,左滑删除的item组件
-> - 修改初始化逻辑,解决`This window state is abnormal`的问题
 >
 
 # [v1.0.9] 2025.04.06