From e920835d2ba996e2315befd53c34e52e8ae77824 Mon Sep 17 00:00:00 2001 From: handyohos Date: Wed, 15 Feb 2023 16:59:01 +0800 Subject: [PATCH] Bugfix: update startup JS API 1) change systemParameterV9 to systemParameterEnhance 2) add deprecated for @ohos.deviceInfo.hardwareProfile Signed-off-by: handyohos Change-Id: Iae3d4f66e3b53764ae57553dcfad5c4e51d10f2c #I6C8I5 --- .../application-dev/reference/apis/Readme-CN.md | 2 +- ...rV9.md => js-apis-system-parameterEnhance.md} | 4 ++-- .../OpenHarmony_4.0.3.2/changelogs-startup.md | 16 ++++++++++++++++ 3 files changed, 19 insertions(+), 3 deletions(-) rename zh-cn/application-dev/reference/apis/{js-apis-system-parameterV9.md => js-apis-system-parameterEnhance.md} (98%) create mode 100755 zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/changelogs-startup.md diff --git a/zh-cn/application-dev/reference/apis/Readme-CN.md b/zh-cn/application-dev/reference/apis/Readme-CN.md index 4c5f786f68..a1c8f4130f 100755 --- a/zh-cn/application-dev/reference/apis/Readme-CN.md +++ b/zh-cn/application-dev/reference/apis/Readme-CN.md @@ -318,7 +318,7 @@ - [@ohos.settings (设置数据项名称)](js-apis-settings.md) - [@ohos.stationary (设备状态感知框架)](js-apis-stationary.md) - [@ohos.systemCapability (系统能力)](js-apis-system-capability.md) - - [@ohos.systemParameterV9 (系统属性)](js-apis-system-parameterV9.md) + - [@ohos.systemParameterEnhance (系统参数)](js-apis-system-parameterEnhance.md) - [@ohos.thermal (热管理)](js-apis-thermal.md) - [@ohos.update (升级)](js-apis-update.md) - [@ohos.usbManager (USB管理)](js-apis-usbManager.md) diff --git a/zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md b/zh-cn/application-dev/reference/apis/js-apis-system-parameterEnhance.md similarity index 98% rename from zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md rename to zh-cn/application-dev/reference/apis/js-apis-system-parameterEnhance.md index 7f07d9d9bf..a874db108d 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md +++ b/zh-cn/application-dev/reference/apis/js-apis-system-parameterEnhance.md @@ -1,4 +1,4 @@ -# @ohos.systemParameterV9 (系统属性) +# @ohos.systemParameterEnhance (系统参数) 系统参数(SystemParameter)是为各系统服务提供的简单易用的键值对访问接口,各个系统服务可以定义系统参数来描述该服务的状态信息,或者通过系统参数来改变系统服务的行为。其基本操作原语为get和set,通过get可以查询系统参数的值,通过set可以修改系统参数的值。 详细的系统参数设计原理及定义可参考 @@ -13,7 +13,7 @@ ## 导入模块 ```ts -import systemparameter from '@ohos.systemParameterV9' +import systemparameter from '@ohos.systemParameterEnhance' ``` ## systemparameter.getSync diff --git a/zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/changelogs-startup.md b/zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/changelogs-startup.md new file mode 100755 index 0000000000..99fc2b75b3 --- /dev/null +++ b/zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/changelogs-startup.md @@ -0,0 +1,16 @@ +# 启动子系统JS API变更ChangeLog + +## cl.startup.1 包名变更 + +**变更影响** + +原有的@ohos.systemParameterV9包名将被删除无法再使用,需更换为新的@ohos.systemParameterEnhance包名。 + +**适配指导** + +原有的@ohos.systemParameterV9需要变更为@ohos.systemParameterEnhance,包内接口都不变,示例: + +```js +import @ohos.systemParameterEnhance +``` + -- GitLab