From 0a6db21ae3a991091a530604ab71f11ed8307e50 Mon Sep 17 00:00:00 2001 From: w4tchdoge Date: Thu, 30 Oct 2025 08:45:09 +0800 Subject: [PATCH] gallery-dl@1.30.10: Add 32bit architecture (#7295) gallery-dl@1.30.10: Add architecture --- bucket/gallery-dl.json | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/bucket/gallery-dl.json b/bucket/gallery-dl.json index 98e16e665a..f09f9c851d 100644 --- a/bucket/gallery-dl.json +++ b/bucket/gallery-dl.json @@ -3,13 +3,28 @@ "description": "Command-line program to download image-galleries and -collections from several image hosting sites.", "homepage": "https://github.com/mikf/gallery-dl", "license": "GPL-2.0-only", - "url": "https://github.com/mikf/gallery-dl/releases/download/v1.30.10/gallery-dl.exe", - "hash": "d22723e46d10e26ce18d6ffd1796de2b8e0f7e0b6ae41e3c6196283ea8e421cb", - "bin": "gallery-dl.exe", + "architecture": { + "64bit": { + "url": "https://github.com/mikf/gallery-dl/releases/download/v1.30.10/gallery-dl.exe", + "hash": "d22723e46d10e26ce18d6ffd1796de2b8e0f7e0b6ae41e3c6196283ea8e421cb" + }, + "32bit": { + "url": "https://github.com/mikf/gallery-dl/releases/download/v1.30.10/gallery-dl_x86.exe#/gallery-dl.exe", + "hash": "b37e4f740dffe0a013c4507648cd1fd9c62867de385db0c33ccda16653a74f6a" + } + }, "pre_install": "if (-not (Test-Path \"$persist_dir\\gallery-dl.conf\")) { Set-Content \"$dir\\gallery-dl.conf\" '{}' -Encoding Ascii | Out-Null }", + "bin": "gallery-dl.exe", "persist": "gallery-dl.conf", "checkver": "github", "autoupdate": { - "url": "https://github.com/mikf/gallery-dl/releases/download/v$version/gallery-dl.exe" + "architecture": { + "64bit": { + "url": "https://github.com/mikf/gallery-dl/releases/download/v$version/gallery-dl.exe" + }, + "32bit": { + "url": "https://github.com/mikf/gallery-dl/releases/download/v$version/gallery-dl_x86.exe#/gallery-dl.exe" + } + } } }