From 17b9ec0b3ffb42776a7db2face0729a0f1daf3ca Mon Sep 17 00:00:00 2001 From: ftboy Date: Wed, 12 Nov 2025 11:39:05 +0800 Subject: [PATCH 1/7] feat(build): Support Linux ARM64 build --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 17e26e1..af65212 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,10 +77,12 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - arch: [x64] + arch: [x64, arm64] include: - arch: x64 platform: linux-x64 + - arch: arm64 + platform: linux-arm64 steps: - uses: actions/checkout@v4 -- Gitee From d5547ee5b9527290d36fbca761759bda744dc861 Mon Sep 17 00:00:00 2001 From: ftboy Date: Wed, 12 Nov 2025 15:52:04 +0800 Subject: [PATCH 2/7] fix(update): Disable automatic updates --- src/renderer/src/App.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/renderer/src/App.vue b/src/renderer/src/App.vue index 6347422..f74cafa 100644 --- a/src/renderer/src/App.vue +++ b/src/renderer/src/App.vue @@ -1,7 +1,6 @@