From 6697a0a71890c03f6ac4e29888892e2edcbc7df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E5=8B=A4=E6=B0=91?= Date: Mon, 21 Oct 2024 11:11:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=B7=E6=B7=86=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BuildProfile.ets | 2 +- CHANGELOG.md | 2 +- README.md | 8 ++++---- oh-package.json5 | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) 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",