From 3af2e5d3672545f62b6a6c2299fc0678b74a5989 Mon Sep 17 00:00:00 2001 From: TC999 <88823709+TC999@users.noreply.github.com> Date: Wed, 16 Oct 2024 15:06:18 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E4=B8=AD=E6=96=87=E8=AF=AD=E8=A8=80?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/res/values-zh/strings.xml | 44 ++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 app/src/main/res/values-zh/strings.xml diff --git a/app/src/main/res/values-zh/strings.xml b/app/src/main/res/values-zh/strings.xml new file mode 100644 index 0000000..69248a8 --- /dev/null +++ b/app/src/main/res/values-zh/strings.xml @@ -0,0 +1,44 @@ + + + 设置数据库编辑器 + 保存 + SetEdit 当前不支持编辑此表。要启用编辑,请在root或ADB shell中运行以下命令: + 意外失败: + 删除 + 获取帮助 + 系统表 + 安全表 + 全局表 + Android属性 + Java属性 + Linux环境 + 警告!我们不保证可以修复因不当使用此工具引起的问题,并且我们无法帮助您解决任何此类问题。我们只支持此应用程序,而不是您的设备。 + 保存为JSON + 新项目 + 关闭 + + 名称 + 已保存 + 失败 + 已保存到%s + 跟随系统 + 日间 + 夜间 + 跟随电池节能 + 主题 + 启动项 + 在重启时执行此操作 + 快捷方式 + 通过快捷方式执行此操作 + 选择快捷方式 + 创建新快捷方式 + 添加到现有快捷方式 + 图标 + 选择一个图标 + 失败! + 无法创建快捷方式,因为启动器不支持创建固定快捷方式。 + 创建快捷方式 + 删除快捷方式 + SetEdit无法自动删除快捷方式。要删除快捷方式,您必须从最初添加它的启动器中移除它。 + 拖动项目 + From b15e6ec3e508d9b081bf65ca3e82025ea41413bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E7=94=9F=E6=9D=82=E7=89=A9=E6=88=BF?= <3177754310@qq.com> Date: Wed, 16 Oct 2024 15:53:05 +0800 Subject: [PATCH 2/5] Create main.yml --- .github/workflows/main.yml | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..3279f57 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,43 @@ +name: APK Build +on: + push: + branches: + - master + + pull_request: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout the code + uses: actions/checkout@v3 + + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '17' + + - name: Cache Gradle packages + uses: actions/cache@v3 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} + restore-keys: | + ${{ runner.os }}-gradle- + + - name: Build the app + run: | + chmod +x gradlew + ./gradlew build --stacktrace + + - name: Upload APK + uses: actions/upload-artifact@v3 + with: + name: debug-apk + path: app/build/outputs/apk/debug/*.apk + if-no-files-found: error From 27376ba214684b0b4cab0a36b1825f4edb7054f3 Mon Sep 17 00:00:00 2001 From: TC999 <88823709+TC999@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:01:21 +0800 Subject: [PATCH 3/5] =?UTF-8?q?=E7=AE=80=E4=BD=93=E4=B8=AD=E6=96=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/res/{values-zh => values-zh-rCN}/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename app/src/main/res/{values-zh => values-zh-rCN}/strings.xml (97%) diff --git a/app/src/main/res/values-zh/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml similarity index 97% rename from app/src/main/res/values-zh/strings.xml rename to app/src/main/res/values-zh-rCN/strings.xml index 69248a8..93b38e9 100644 --- a/app/src/main/res/values-zh/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -1,6 +1,6 @@ - 设置数据库编辑器 + Settings Database Editor 保存 SetEdit 当前不支持编辑此表。要启用编辑,请在root或ADB shell中运行以下命令: 意外失败: From 54e1b41e9365e07e0f04cf6a7759e3dd5b7f254e Mon Sep 17 00:00:00 2001 From: TC999 <88823709+TC999@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:02:56 +0800 Subject: [PATCH 4/5] Github Actions --- .github/workflows/{main.yml => build.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{main.yml => build.yml} (100%) diff --git a/.github/workflows/main.yml b/.github/workflows/build.yml similarity index 100% rename from .github/workflows/main.yml rename to .github/workflows/build.yml From be52578626be4213d6890cb7a54d57f72aa74a12 Mon Sep 17 00:00:00 2001 From: TC999 <88823709+TC999@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:24:07 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E7=A9=BA=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/res/values-zh-rCN/strings.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 93b38e9..4044c96 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -2,18 +2,18 @@ Settings Database Editor 保存 - SetEdit 当前不支持编辑此表。要启用编辑,请在root或ADB shell中运行以下命令: + SetEdit 当前不支持编辑此表。要启用编辑,请在 root 或 ADB shell 中运行以下命令: 意外失败: 删除 获取帮助 系统表 安全表 全局表 - Android属性 - Java属性 - Linux环境 + Android 属性 + Java 属性 + Linux 环境 警告!我们不保证可以修复因不当使用此工具引起的问题,并且我们无法帮助您解决任何此类问题。我们只支持此应用程序,而不是您的设备。 - 保存为JSON + 保存为 JSON 新项目 关闭 @@ -39,6 +39,6 @@ 无法创建快捷方式,因为启动器不支持创建固定快捷方式。 创建快捷方式 删除快捷方式 - SetEdit无法自动删除快捷方式。要删除快捷方式,您必须从最初添加它的启动器中移除它。 + SetEdit 无法自动删除快捷方式。要删除快捷方式,您必须从最初添加它的启动器中移除它。 拖动项目