From 3bc00c3761ff53237993b8b877ff778c1bb66651 Mon Sep 17 00:00:00 2001 From: sfchu Date: Fri, 21 Mar 2025 14:41:42 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E3=80=90=E5=9F=BA=E4=BA=8E=E9=A2=84?= =?UTF-8?q?=E6=B8=B2=E6=9F=93=E6=8A=80=E6=9C=AF=E5=AE=9E=E7=8E=B0Web?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=9E=AC=E5=BC=80=E6=95=88=E6=9E=9C=E3=80=91?= =?UTF-8?q?HMOS=E4=B8=96=E7=95=8C=E9=9B=86=E6=88=90sample=E6=95=B4?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d6ac0d4..a6c233b 100644 --- a/README.md +++ b/README.md @@ -34,10 +34,10 @@ ohos.permission.INTERNET ### 约束与限制 -1.本示例仅支持标准系统上运行,支持设备:华为手机。 +1. 本示例仅支持标准系统上运行,支持设备:phone,tablet,2in1。 -2.HarmonyOS系统:HarmonyOS NEXT Developer Beta1及以上。 +2. HarmonyOS系统:HarmonyOS 5.0.0 Release及以上。 -3.DevEco Studio版本:DevEco Studio NEXT Developer Beta1及以上。 +3. DevEco Studio版本:DevEco Studio 5.0.0 Release及以上。 -4.HarmonyOS SDK版本:HarmonyOS NEXT Developer Beta1 SDK及以上。 \ No newline at end of file +4. HarmonyOS SDK版本:HarmonyOS 5.0.0 Release SDK及以上。 \ No newline at end of file -- Gitee From 2896282a5e50f1c8e2739aa441e678efe8768ff5 Mon Sep 17 00:00:00 2001 From: sfchu Date: Sat, 22 Mar 2025 11:09:34 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E3=80=90=E5=9F=BA=E4=BA=8E=E9=A2=84?= =?UTF-8?q?=E6=B8=B2=E6=9F=93=E6=8A=80=E6=9C=AF=E5=AE=9E=E7=8E=B0Web?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=9E=AC=E5=BC=80=E6=95=88=E6=9E=9C=E3=80=91?= =?UTF-8?q?HMOS=E4=B8=96=E7=95=8C=E9=9B=86=E6=88=90sample=E6=95=B4?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.en.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.en.md b/README.en.md index e557821..2c5ea32 100644 --- a/README.en.md +++ b/README.en.md @@ -34,10 +34,10 @@ ohos.permission.INTERNET ### Constraints -1. The sample app is only supported on Huawei phones with standard systems. +1. The sample app is supported only on Huawei phones, tablets, and 2in1 devices running the standard system. -2. The HarmonyOS version must be HarmonyOS NEXT Developer Beta1 or later. +2. The HarmonyOS version must be HarmonyOS 5.0.0 Release or later. -3. The DevEco Studio version must be DevEco Studio NEXT Developer Beta1 or later. +3. The DevEco Studio version must be DevEco Studio 5.0.0 Release or later. -4. The HarmonyOS SDK version must be HarmonyOS NEXT Developer Beta1 or later. +4. The HarmonyOS SDK version must be HarmonyOS 5.0.0 Release or later. -- Gitee From 739bb4392c66a17e048480e4cc4dd3a85c9a8e22 Mon Sep 17 00:00:00 2001 From: sfchu Date: Sat, 22 Mar 2025 16:07:19 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E3=80=90=E5=9F=BA=E4=BA=8E=E9=A2=84?= =?UTF-8?q?=E6=B8=B2=E6=9F=93=E6=8A=80=E6=9C=AF=E5=AE=9E=E7=8E=B0Web?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=9E=AC=E5=BC=80=E6=95=88=E6=9E=9C=E3=80=91?= =?UTF-8?q?HMOS=E4=B8=96=E7=95=8C=E9=9B=86=E6=88=90sample=E6=95=B4?= =?UTF-8?q?=E6=94=B9=09CodeCheck?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/src/main/ets/common/Constants.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entry/src/main/ets/common/Constants.ets b/entry/src/main/ets/common/Constants.ets index 223fb04..8b29a77 100644 --- a/entry/src/main/ets/common/Constants.ets +++ b/entry/src/main/ets/common/Constants.ets @@ -32,12 +32,12 @@ export class Constants { /** * Full Screen width */ - public static readonly FULL_WIDTH: string = "100%"; + public static readonly FULL_WIDTH: string = '100%'; /** * Full Screen height */ - public static readonly FULL_HEIGHT: string = "100%"; + public static readonly FULL_HEIGHT: string = '100%'; /** * Index page padding top size. -- Gitee