From 2954ab5eea5bf0b71c51b38cc8059db8ffc73b98 Mon Sep 17 00:00:00 2001 From: Serany <17505625+jmctune@users.noreply.github.com> Date: Mon, 8 Apr 2024 21:02:01 -0500 Subject: [PATCH 1/2] remove unneeded md5 lib --- app/launcher/dqxclarity.ahk | 1 - app/launcher/lib/md5.ahk | 10 ---------- 2 files changed, 11 deletions(-) delete mode 100644 app/launcher/lib/md5.ahk diff --git a/app/launcher/dqxclarity.ahk b/app/launcher/dqxclarity.ahk index 2c0ec73..0f850a6 100644 --- a/app/launcher/dqxclarity.ahk +++ b/app/launcher/dqxclarity.ahk @@ -2,7 +2,6 @@ #SingleInstance force #Include #Include -#Include /* read ini */ ini := {} diff --git a/app/launcher/lib/md5.ahk b/app/launcher/lib/md5.ahk deleted file mode 100644 index 592ba8f..0000000 --- a/app/launcher/lib/md5.ahk +++ /dev/null @@ -1,10 +0,0 @@ -MD5_File(Path, &md5 := "") { - ctx := Buffer(104, 0) - buf := FileRead(Path, "RAW") - DllCall("advapi32\MD5Init", "Ptr", ctx) - DllCall("advapi32\MD5Update", "Ptr", ctx, "Ptr", buf, "UInt", buf.Size) - DllCall("advapi32\MD5Final", "Ptr", ctx) - loop 16 - md5 .= Format("{:02x}", NumGet(ctx, 87 + A_Index, "UChar")) - return md5 -} From 90b4ec3fee699b35ad306c128728fff4ef1ecfb9 Mon Sep 17 00:00:00 2001 From: Serany <17505625+jmctune@users.noreply.github.com> Date: Mon, 8 Apr 2024 21:04:18 -0500 Subject: [PATCH 2/2] add dependency on previous step. --- .github/workflows/build-pr.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 791da47..78ba9a4 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -35,6 +35,7 @@ overwrite: true build: + needs: compile_launcher runs-on: ubuntu-latest if: github.event.issue.pull_request && contains(github.event.comment.body, '/build') steps: