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

- 在 BuildProfile.ets 文件中将 BUILD_MODE_NAME 从 'release' 改为 'debug'
- 将 DEBUG 从 false 改为 true- 更新 CHANGELOG.md,添加 v1.0.11 版本信息
- 修改初始化逻辑,解决窗口状态异常问题
这个提交包含在:
徐勤民 2025-08-26 15:40:52 +08:00
父节点 caa51066e2
当前提交 07d1e906df
共有 2 个文件被更改,包括 6 次插入3 次删除

查看文件

@ -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';
/**

查看文件

@ -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