From b78ddcba7fecd877a992c75387764668f9da6cd6 Mon Sep 17 00:00:00 2001 From: scillidan Date: Sat, 23 May 2026 13:40:42 +0800 Subject: [PATCH 1/3] diffnav: Add version 0.11.0 --- bucket/diffnav.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 bucket/diffnav.json diff --git a/bucket/diffnav.json b/bucket/diffnav.json new file mode 100644 index 0000000000000..fb6f4b499d854 --- /dev/null +++ b/bucket/diffnav.json @@ -0,0 +1,39 @@ +{ + "version": "0.11.0", + "description": "A git diff pager based on delta but with a file tree, à la GitHub.", + "homepage": "https://github.com/dlvhdr/diffnav", + "license": "MIT", + "architecture": { + "64bit": { + "url": "https://github.com/dlvhdr/diffnav/releases/download/v0.11.0/diffnav_Windows_x86_64.zip", + "hash": "cd246c70f90e1346ec363f5819b9d9259112ce13c216f2aeebe7795f66288732" + }, + "32bit": { + "url": "https://github.com/dlvhdr/diffnav/releases/download/v0.11.0/diffnav_Windows_i386.zip", + "hash": "e24700a1936ae875e252abcadb466f9228f299271e27047c81e57ffe93bf9d59" + }, + "arm64": { + "url": "https://github.com/dlvhdr/diffnav/releases/download/v0.11.0/diffnav_Windows_arm64.zip", + "hash": "24ceb39f6df1032ba8711c367ce124cbe82444d4d6c4b1ea1c6caf1db9964f7e" + } + }, + "bin": "diffnav.exe", + "checkver": "github", + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/dlvhdr/diffnav/releases/download/v$version/diffnav_Windows_x86_64.zip" + }, + "32bit": { + "url": "https://github.com/dlvhdr/diffnav/releases/download/v$version/diffnav_Windows_i386.zip" + }, + "arm64": { + "url": "https://github.com/dlvhdr/diffnav/releases/download/v$version/diffnav_Windows_arm64.zip" + } + }, + "hash": { + "url": "$baseurl/diffnav_$version_checksums.txt", + "regex": "$basename\\s+$sha256" + } + } +} From 5a0892102137154e4f6b03f557df2746cc765b04 Mon Sep 17 00:00:00 2001 From: z-Fng <54583083+z-Fng@users.noreply.github.com> Date: Sat, 23 May 2026 05:48:05 +0000 Subject: [PATCH 2/3] Update description and hash values in diffnav.json --- bucket/diffnav.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bucket/diffnav.json b/bucket/diffnav.json index fb6f4b499d854..c81a5f48d6d32 100644 --- a/bucket/diffnav.json +++ b/bucket/diffnav.json @@ -1,6 +1,6 @@ { "version": "0.11.0", - "description": "A git diff pager based on delta but with a file tree, à la GitHub.", + "description": "A git diff pager based on delta but with a file tree.", "homepage": "https://github.com/dlvhdr/diffnav", "license": "MIT", "architecture": { @@ -10,11 +10,11 @@ }, "32bit": { "url": "https://github.com/dlvhdr/diffnav/releases/download/v0.11.0/diffnav_Windows_i386.zip", - "hash": "e24700a1936ae875e252abcadb466f9228f299271e27047c81e57ffe93bf9d59" + "hash": "cd246c70f90e1346ec363f5819b9d9259112ce13c216f2aeebe7795f66288732" }, "arm64": { "url": "https://github.com/dlvhdr/diffnav/releases/download/v0.11.0/diffnav_Windows_arm64.zip", - "hash": "24ceb39f6df1032ba8711c367ce124cbe82444d4d6c4b1ea1c6caf1db9964f7e" + "hash": "e24700a1936ae875e252abcadb466f9228f299271e27047c81e57ffe93bf9d59" } }, "bin": "diffnav.exe", From 8006eb29cbd8df27164d8838f96aa66d65d456dd Mon Sep 17 00:00:00 2001 From: z-Fng <54583083+z-Fng@users.noreply.github.com> Date: Sat, 23 May 2026 05:56:36 +0000 Subject: [PATCH 3/3] Fix hash extraction --- bucket/diffnav.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bucket/diffnav.json b/bucket/diffnav.json index c81a5f48d6d32..ab9b5f30e157a 100644 --- a/bucket/diffnav.json +++ b/bucket/diffnav.json @@ -10,11 +10,11 @@ }, "32bit": { "url": "https://github.com/dlvhdr/diffnav/releases/download/v0.11.0/diffnav_Windows_i386.zip", - "hash": "cd246c70f90e1346ec363f5819b9d9259112ce13c216f2aeebe7795f66288732" + "hash": "e24700a1936ae875e252abcadb466f9228f299271e27047c81e57ffe93bf9d59" }, "arm64": { "url": "https://github.com/dlvhdr/diffnav/releases/download/v0.11.0/diffnav_Windows_arm64.zip", - "hash": "e24700a1936ae875e252abcadb466f9228f299271e27047c81e57ffe93bf9d59" + "hash": "24ceb39f6df1032ba8711c367ce124cbe82444d4d6c4b1ea1c6caf1db9964f7e" } }, "bin": "diffnav.exe", @@ -33,7 +33,7 @@ }, "hash": { "url": "$baseurl/diffnav_$version_checksums.txt", - "regex": "$basename\\s+$sha256" + "regex": "$sha256\\s+$basename" } } }