From 4eb3f6f6f8ddd3838980c98b472a07a24253374f Mon Sep 17 00:00:00 2001 From: jack-mil <62065280+jack-mil@users.noreply.github.com> Date: Sat, 26 Jul 2025 22:10:34 -0400 Subject: [PATCH] lutgen: Update to version 1.0.0 (#6965) The lutgen CLI tool is officially moving to a stable v1 release, with slightly different release naming with the introduction of "Lutgen Studio", a small GUI app with live preview. This commit update the lutgen(-cli) manifest to the new tag naming, adds the new website, and distinguishes as the CLI version. The original executable name is kept as `lutgen` for backwards compatibility. --- bucket/lutgen.json | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/bucket/lutgen.json b/bucket/lutgen.json index 8873a67cfc..9416b5e813 100644 --- a/bucket/lutgen.json +++ b/bucket/lutgen.json @@ -1,17 +1,21 @@ { - "version": "0.12.1", - "description": "Blazingly fast interpolated LUT generator and applicator for arbitrary and popular color palettes.", - "homepage": "https://github.com/ozwaldorf/lutgen-rs", + "version": "1.0.0", + "description": "Blazingly fast interpolated LUT generator and applicator for arbitrary and popular color palettes. (CLI version)", + "homepage": "http://lut.sh", "license": "MIT", "architecture": { "64bit": { - "url": "https://github.com/ozwaldorf/lutgen-rs/releases/download/v0.12.1/lutgen-0.12.1-x86_64-windows.zip", - "hash": "4d4e3af2c40a52ab63fdebe7dcb518b87a5183c096b3578d991b6a50576b2d8e" + "url": "https://github.com/ozwaldorf/lutgen-rs/releases/download/lutgen-v1.0.0/lutgen-cli-v1.0.0-x86_64-pc-windows-msvc.exe#/lutgen.exe", + "hash": "721cc8d1aeb65ff3506b26ec7097cd90ef9b735d972f0835eb0128da11f8eff7" } }, "bin": "lutgen.exe", - "checkver": "github", + "checkver": { + "url": "https://api.github.com/repositories/640093933/releases", + "jsonpath": "$..tag_name", + "regex": "lutgen-v([\\d.]+)" + }, "autoupdate": { - "url": "https://github.com/ozwaldorf/lutgen-rs/releases/download/v$version/lutgen-$version-x86_64-windows.zip" + "url": "https://github.com/ozwaldorf/lutgen-rs/releases/download/lutgen-v$version/lutgen-cli-v$version-x86_64-pc-windows-msvc.exe#/lutgen.exe" } }