From e52338dda9145d52b49390267f5859393799037b Mon Sep 17 00:00:00 2001 From: entr0pia Date: Sat, 8 Aug 2026 12:22:17 +0800 Subject: [PATCH 1/2] WinMute: Add version 2.5.4 --- bucket/winmute.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 bucket/winmute.json diff --git a/bucket/winmute.json b/bucket/winmute.json new file mode 100644 index 00000000000000..be47feee761a40 --- /dev/null +++ b/bucket/winmute.json @@ -0,0 +1,21 @@ +{ + "version": "2.5.4", + "description": "Automatically mutes PC volume on specific events (e.g. Screensaver, Workstation Lock, Shutdown, etc.)", + "homepage": "https://github.com/lx-s/WinMute", + "license": "BSD-3-Clause", + "url": "https://github.com/lx-s/WinMute/releases/download/2.5.4.0/WinMute-2.5.4.zip", + "hash": "74a11d223c5a8d07cd8e841cec2491edb6aeebbf7efc095de7c4abdc49398fe7", + "shortcuts": [ + [ + "WinMute.exe", + "WinMute" + ] + ], + "checkver": { + "github": "https://github.com/lx-s/WinMute", + "regex": "(?\\d+\\.\\d+\\.\\d+)\\.0" + }, + "autoupdate": { + "url": "https://github.com/lx-s/WinMute/releases/download/$version.0/WinMute-$version.zip" + } +} From 351e75995f5bd197379297a635becbcc67f8477c Mon Sep 17 00:00:00 2001 From: z-Fng <54583083+z-Fng@users.noreply.github.com> Date: Sat, 8 Aug 2026 16:03:15 +0000 Subject: [PATCH 2/2] Refactor winmute.json for versioning and structure Updated version and description fields, added architecture and suggest sections, modified checkver and autoupdate structure. --- bucket/winmute.json | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/bucket/winmute.json b/bucket/winmute.json index be47feee761a40..32a89e6e131cfb 100644 --- a/bucket/winmute.json +++ b/bucket/winmute.json @@ -1,21 +1,29 @@ { - "version": "2.5.4", - "description": "Automatically mutes PC volume on specific events (e.g. Screensaver, Workstation Lock, Shutdown, etc.)", + "version": "2.5.4.0", + "description": "A small and simple tool, that automatically mutes (and unmutes) your workstation based on triggers.", "homepage": "https://github.com/lx-s/WinMute", "license": "BSD-3-Clause", - "url": "https://github.com/lx-s/WinMute/releases/download/2.5.4.0/WinMute-2.5.4.zip", - "hash": "74a11d223c5a8d07cd8e841cec2491edb6aeebbf7efc095de7c4abdc49398fe7", + "suggest": { + "vcredist": "extras/vcredist2022" + }, + "architecture": { + "64bit": { + "url": "https://github.com/lx-s/WinMute/releases/download/2.5.4.0/WinMute-2.5.4.zip", + "hash": "74a11d223c5a8d07cd8e841cec2491edb6aeebbf7efc095de7c4abdc49398fe7" + } + }, "shortcuts": [ [ "WinMute.exe", "WinMute" ] ], - "checkver": { - "github": "https://github.com/lx-s/WinMute", - "regex": "(?\\d+\\.\\d+\\.\\d+)\\.0" - }, + "checkver": "github", "autoupdate": { - "url": "https://github.com/lx-s/WinMute/releases/download/$version.0/WinMute-$version.zip" + "architecture": { + "64bit": { + "url": "https://github.com/lx-s/WinMute/releases/download/$version/WinMute-$matchHead.zip" + } + } } }