From c17066476fd766c62daffb1d80a93fb72f7a5cce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A2=A6=E9=BE=99?= Date: Thu, 20 Nov 2025 03:34:38 +0000 Subject: [PATCH 1/4] update Ndk/Ndk2/entry/src/main/cpp/WorkerCallNapiLoop/WorkerCallNapiLoop.cpp. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 杨梦龙 --- .../src/main/cpp/WorkerCallNapiLoop/WorkerCallNapiLoop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ndk/Ndk2/entry/src/main/cpp/WorkerCallNapiLoop/WorkerCallNapiLoop.cpp b/Ndk/Ndk2/entry/src/main/cpp/WorkerCallNapiLoop/WorkerCallNapiLoop.cpp index a03c654..98402a6 100644 --- a/Ndk/Ndk2/entry/src/main/cpp/WorkerCallNapiLoop/WorkerCallNapiLoop.cpp +++ b/Ndk/Ndk2/entry/src/main/cpp/WorkerCallNapiLoop/WorkerCallNapiLoop.cpp @@ -23,7 +23,7 @@ void WorkerCallNapiLoop::SubThread(CallbackContext *context) { uv_loop_s *loop = nullptr; napi_get_uv_event_loop(context->env, &loop); - // Uvw_ork_t is the structure that associates loop and thread pool callback functions + // uv_work_t is the structure that associates loop and thread pool callback functions uv_work_t *work = new uv_work_t; work->data = (CallbackContext *)context; uv_queue_work( -- Gitee From 4cc423cc8a6abccbde4398bb9a1b282dec112caf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A2=A6=E9=BE=99?= Date: Thu, 20 Nov 2025 03:35:58 +0000 Subject: [PATCH 2/4] update CryptoArchitectureKit/entry/src/main/ets/pages/PublicKeysStored.ets. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 杨梦龙 --- .../entry/src/main/ets/pages/PublicKeysStored.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CryptoArchitectureKit/entry/src/main/ets/pages/PublicKeysStored.ets b/CryptoArchitectureKit/entry/src/main/ets/pages/PublicKeysStored.ets index f0ac58f..e088d0b 100644 --- a/CryptoArchitectureKit/entry/src/main/ets/pages/PublicKeysStored.ets +++ b/CryptoArchitectureKit/entry/src/main/ets/pages/PublicKeysStored.ets @@ -27,7 +27,7 @@ struct PublicKeysStored { build() { Row() { Column() { - Button('公钥转为base64进制数据存储').onClick(() => { + Button('公钥转为base64编码数据存储').onClick(() => { let publicKeys = new Uint8Array([ 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, -- Gitee From 1a40bfb19c974ef57b90e2d2bf6a58154da99a76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A2=A6=E9=BE=99?= Date: Thu, 20 Nov 2025 03:36:39 +0000 Subject: [PATCH 3/4] update CompilingAndBuilding/library1/build-profile.json5. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 杨梦龙 --- CompilingAndBuilding/library1/build-profile.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CompilingAndBuilding/library1/build-profile.json5 b/CompilingAndBuilding/library1/build-profile.json5 index b91446a..aff1c7d 100644 --- a/CompilingAndBuilding/library1/build-profile.json5 +++ b/CompilingAndBuilding/library1/build-profile.json5 @@ -14,7 +14,7 @@ ], //Used to set up the local ABI compilation environment "cppFlags": "" - //Set optional parameters for the C++compiler + //Set optional parameters for the C++ compiler }, // [End cpu_option] }, -- Gitee From 1fb5dc4e60a72c0561fa3ec77f3ffd791e1ab120 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A2=A6=E9=BE=99?= Date: Thu, 20 Nov 2025 03:37:57 +0000 Subject: [PATCH 4/4] update NetworkKit/entry/src/main/ets/pages/GetAxiosUTF.ets. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 杨梦龙 --- NetworkKit/entry/src/main/ets/pages/GetAxiosUTF.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetworkKit/entry/src/main/ets/pages/GetAxiosUTF.ets b/NetworkKit/entry/src/main/ets/pages/GetAxiosUTF.ets index 0b14c01..b4a3ad4 100644 --- a/NetworkKit/entry/src/main/ets/pages/GetAxiosUTF.ets +++ b/NetworkKit/entry/src/main/ets/pages/GetAxiosUTF.ets @@ -34,7 +34,7 @@ struct FriendsBook { axios, null>({ method: 'get', url: URL, - // When using the til.TextDecoder method, the encoding and decoding formats must be consistent, + // When using the util.TextDecoder method, the encoding and decoding formats must be consistent, // so the data type needs to be set to ARRAY_BUFFER when retrieving, otherwise garbled characters will appear. responseType: 'ARRAY_BUFFER' }) -- Gitee