- 在 BuildProfile.ets 文件中将 BUILD_MODE_NAME 从 'debug' 修改为 'release'- 在 BuildProfile.ets 文件中将 DEBUG 从 true 修改为 false - 更新 CHANGELOG.md 文件,添加新的更新内容 - 优化 README.md 文件中的代码示例和说明
@@ -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.5';
-export const BUILD_MODE_NAME = 'debug';
-export const DEBUG = true;
+export const BUILD_MODE_NAME = 'release';
+export const DEBUG = false;
export const TARGET_NAME = 'default';
/**
@@ -1,13 +1,12 @@
-
# [v1.0.5] 2024.xx.xx
------
> - 优化confirm弹窗样式
> - ToolsHelper优化
+> - 限制RefreshView接口调用频率
> - 其它优化,可自行探索
>
# [v1.0.5] 2024.11.08
@@ -36,21 +35,18 @@
> - ToolsHelper添加一个方法,获取调用栈第一个类
# [v1.0.2] 2024.09.04
> - 新增携带`loading`的自定义View
->
+>
# [v1.0.1] 2024.05.08
> - 优化网络请求方法
> - 简化自定义弹窗的使用
-> -
+> -
# [v1.0.0] 2024.04.23