From 313e2dd27559799beffd3d18842726d4c79ab89a Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 2 Dec 2025 10:29:17 +0900 Subject: [PATCH 1/2] Update DownloadUrls.psd1 added more download links --- data/DownloadUrls.psd1 | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/data/DownloadUrls.psd1 b/data/DownloadUrls.psd1 index 3fb3e88..f0a2eb6 100644 --- a/data/DownloadUrls.psd1 +++ b/data/DownloadUrls.psd1 @@ -182,7 +182,7 @@ arm64 = $null # no official ARM64 build x86 = "https://github.com/brechtsanders/winlibs_mingw/releases/download/15.2.0posix-13.0.0-ucrt-r3/winlibs-x86_64-posix-seh-gcc-15.2.0-mingw-w64ucrt-13.0.0-r3.zip" } - + # =========================== # The Go Language Programming # =========================== @@ -191,11 +191,36 @@ arm64 = "https://go.dev/dl/go1.25.4.windows-arm64.zip" x86 = "https://go.dev/dl/go1.25.4.windows-386.zip" } - + # =========================== # x86dbg # =========================== - x86dbg = @{ - any = "https://twds.dl.sourceforge.net/project/x64dbg/snapshots/snapshot_2025-08-19_19-40.zip?viasf=1" - } + x86dbg = @{ + any = "https://twds.dl.sourceforge.net/project/x64dbg/snapshots/snapshot_2025-08-19_19-40.zip?viasf=1" + } + + # =========================== + # 7-zip + # =========================== + 7zip = @{ + x64 = "https://www.7-zip.org/a/7z2501-x64.exe" + arm64 = "https://www.7-zip.org/a/7z2501-arm64.exe" + x86 = "https://www.7-zip.org/a/7z2501.exe" + } + + # =========================== + # hashcat + # =========================== + hashcat = @{ + any = "https://hashcat.net/files/hashcat-7.1.2.7z" + } + + # =========================== + # Microsoft OpenJDK build + # =========================== + microsoft_jdk = @{ + x64 = "https://aka.ms/download-jdk/microsoft-jdk-25.0.1-windows-x64.zip" + arm64 = $null # no official ARM64 build + x86 = $null # no official X86 build + } } From 996cc898ff60cf91c9c4ba8c423ec2e02bf38c59 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 2 Dec 2025 10:32:38 +0900 Subject: [PATCH 2/2] Update DownloadUrls.psd1 Fix parse error --- data/DownloadUrls.psd1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/DownloadUrls.psd1 b/data/DownloadUrls.psd1 index f0a2eb6..54bd34c 100644 --- a/data/DownloadUrls.psd1 +++ b/data/DownloadUrls.psd1 @@ -202,7 +202,7 @@ # =========================== # 7-zip # =========================== - 7zip = @{ + w7zip = @{ x64 = "https://www.7-zip.org/a/7z2501-x64.exe" arm64 = "https://www.7-zip.org/a/7z2501-arm64.exe" x86 = "https://www.7-zip.org/a/7z2501.exe"