From 6ed05ed24d2627c69db5c5d16f96c8b9429c9f71 Mon Sep 17 00:00:00 2001 From: "dayuan.jiang" Date: Mon, 6 Apr 2026 10:13:40 +0900 Subject: [PATCH] chore: always bundle latest draw.io version in Electron builds Remove pinned v29.3.5 tag so the build always clones the latest draw.io. This adds the Animated GIF export and other new features to the Electron app. Closes #770 --- .github/workflows/electron-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/electron-release.yml b/.github/workflows/electron-release.yml index 54bf705..9e8ef19 100644 --- a/.github/workflows/electron-release.yml +++ b/.github/workflows/electron-release.yml @@ -37,7 +37,7 @@ jobs: - name: Download draw.io static files for offline use run: | rm -rf public/drawio - git clone --depth 1 --branch v29.3.5 https://github.com/jgraph/drawio.git /tmp/drawio + git clone --depth 1 https://github.com/jgraph/drawio.git /tmp/drawio mkdir -p public/drawio cp -r /tmp/drawio/src/main/webapp/* public/drawio/ rm -rf public/drawio/WEB-INF @@ -70,7 +70,7 @@ jobs: shell: bash run: | rm -rf public/drawio - git clone --depth 1 --branch v29.3.5 https://github.com/jgraph/drawio.git /tmp/drawio + git clone --depth 1 https://github.com/jgraph/drawio.git /tmp/drawio mkdir -p public/drawio cp -r /tmp/drawio/src/main/webapp/* public/drawio/ rm -rf public/drawio/WEB-INF