diff --git a/BuildProfile.ets b/BuildProfile.ets index 3b7bc46..78213b9 100644 --- a/BuildProfile.ets +++ b/BuildProfile.ets @@ -1,7 +1,7 @@ /** * Use these variables when you tailor your ArkTS code. They must be of the const type. */ -export const HAR_VERSION = '1.0.3'; +export const HAR_VERSION = '1.0.4'; export const BUILD_MODE_NAME = 'release'; export const DEBUG = false; export const TARGET_NAME = 'default'; diff --git a/CHANGELOG.md b/CHANGELOG.md index 020a0fd..034d72f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -# [v1.0.4] 2024.xx.xx +# [v1.0.4] 2024.10.21 ------ > - 优化缓存工具 diff --git a/README.md b/README.md index f942eba..49e6c58 100644 --- a/README.md +++ b/README.md @@ -207,8 +207,8 @@ MyView HttpHelper.get() .get>(url.url.startsWith('http') ? url.url : GlobalValue.getInstance().envUrl + url.url, data ? JSON.stringify(data) : undefined, { - userId: GlobalValue.getInstance().userId, - clientId: GlobalValue.getInstance().getClientId(), + userId: GlobalValue.getInstance().userIds, + clientId: GlobalValue.getInstance().getClientIds(), version: ConstantValue.VERSION, deviceType: '01', timeStamp: timeStamp + '', @@ -237,8 +237,8 @@ HttpHelper.get() HttpHelper.get() .post>(url.url.startsWith('http') ? url.url : GlobalValue.getInstance().envUrl + url.url, data ? JSON.stringify(data) : undefined, { - userId: GlobalValue.getInstance().userId, - clientId: GlobalValue.getInstance().getClientId(), + userId: GlobalValue.getInstance().userIds, + clientId: GlobalValue.getInstance().getClientIds(), version: ConstantValue.VERSION, deviceType: '01', timeStamp: timeStamp + '', diff --git a/oh-package.json5 b/oh-package.json5 index 4f5fa5a..95e4430 100644 --- a/oh-package.json5 +++ b/oh-package.json5 @@ -1,6 +1,6 @@ { "name": "@szyx/sdk_base", - "version": "1.0.3", + "version": "1.0.4", "description": "数字医信公司,鸿蒙app开发基础工具。", "main": "Index.ets", "author": "szyx",