build(basic & sdk_ywx): 将构建模式从 debug 修改为 release

- 在 BuildProfile.ets 文件中将 BUILD_MODE_NAME 从 'debug' 修改为 'release'- 在 BuildProfile.ets 文件中将 DEBUG 从 true 修改为 false
- 更新 CHANGELOG.md 文件,添加新的更新内容
- 优化 README.md 文件中的代码示例和说明
这个提交包含在:
徐勤民 2024-11-27 16:26:52 +08:00
父节点 06435857b5
当前提交 bb42ec7ea1
共有 2 个文件被更改,包括 5 次插入9 次删除

查看文件

@ -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,14 +35,12 @@
> - ToolsHelper添加一个方法,获取调用栈第一个类
>
# [v1.0.2] 2024.09.04
------
> - 新增携带`loading`的自定义View
>
# [v1.0.1] 2024.05.08
------
@ -51,7 +48,6 @@
> - 简化自定义弹窗的使用
> -
# [v1.0.0] 2024.04.23
------