From 07d1e906dfa5bb5ebcca910a0e21696510bc9ba8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E5=8B=A4=E6=B0=91?= Date: Tue, 26 Aug 2025 15:40:52 +0800 Subject: [PATCH] =?UTF-8?q?build:=E5=88=87=E6=8D=A2=E5=88=B0=E8=B0=83?= =?UTF-8?q?=E8=AF=95=E6=A8=A1=E5=BC=8F=E5=B9=B6=E6=9B=B4=E6=96=B0=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 BuildProfile.ets 文件中将 BUILD_MODE_NAME 从 'release' 改为 'debug' - 将 DEBUG 从 false 改为 true- 更新 CHANGELOG.md,添加 v1.0.11 版本信息 - 修改初始化逻辑,解决窗口状态异常问题 --- BuildProfile.ets | 4 ++-- CHANGELOG.md | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/BuildProfile.ets b/BuildProfile.ets index b2b828e..7b63954 100644 --- a/BuildProfile.ets +++ b/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'; /** diff --git a/CHANGELOG.md b/CHANGELOG.md index f6bd62e..1a237f4 100644 --- a/CHANGELOG.md +++ b/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