From 6b4f97a4892c711fa739ffb16f4b3cb8314f7802 Mon Sep 17 00:00:00 2001 From: scillidan Date: Wed, 24 Dec 2025 22:14:15 +0800 Subject: [PATCH 1/2] nomeiryoui@3.4.0: Update architecture write --- bucket/nomeiryoui.json | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/bucket/nomeiryoui.json b/bucket/nomeiryoui.json index 67802fd9f6bda6..9f0291d970cc2d 100644 --- a/bucket/nomeiryoui.json +++ b/bucket/nomeiryoui.json @@ -3,16 +3,8 @@ "description": "No!! MeiryoUI is Windows system font setting tool on Windows 8.1/10/11.", "homepage": "https://github.com/Tatsu-syo/noMeiryoUI", "license": "MIT", - "architecture": { - "64bit": { - "url": "https://github.com/Tatsu-syo/noMeiryoUI/releases/download/TAG-3.4.0/noMeiryoUI3.4.0.zip", - "hash": "97b7d4eb6b04c9a4a617267823fa98c75ae5559765ecb5c1192ee473d4e78ec8" - }, - "32bit": { - "url": "https://github.com/Tatsu-syo/noMeiryoUI/releases/download/TAG-3.4.0/noMeiryoUI3.4.0.zip", - "hash": "97b7d4eb6b04c9a4a617267823fa98c75ae5559765ecb5c1192ee473d4e78ec8" - } - }, + "url": "https://github.com/Tatsu-syo/noMeiryoUI/releases/download/TAG-3.4.0/noMeiryoUI3.4.0.zip", + "hash": "97B7D4EB6B04C9A4A617267823FA98C75AE5559765ECB5C1192EE473D4E78EC8", "pre_install": "New-Item -Type File -Path \"$dir\\noMeiryoUI.ini\"", "bin": [ [ @@ -27,13 +19,6 @@ "regex": "^TAG-([\\d.]+)$" }, "autoupdate": { - "architecture": { - "64bit": { - "url": "https://github.com/Tatsu-syo/noMeiryoUI/releases/download/TAG-$version/noMeiryoUI$version.zip" - }, - "32bit": { - "url": "https://github.com/Tatsu-syo/noMeiryoUI/releases/download/TAG-$version/noMeiryoUI$version.zip" - } - } + "url": "https://github.com/Tatsu-syo/noMeiryoUI/releases/download/TAG-$version/noMeiryoUI$version.zip" } } From 910db8e872a1c7cafa90512648f579ccbd3346c4 Mon Sep 17 00:00:00 2001 From: z-Fng <54583083+z-Fng@users.noreply.github.com> Date: Thu, 25 Dec 2025 08:27:17 +0800 Subject: [PATCH 2/2] Fix pre_install script, add shortcuts, simplify bin --- bucket/nomeiryoui.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/bucket/nomeiryoui.json b/bucket/nomeiryoui.json index 9f0291d970cc2d..d092af06a51318 100644 --- a/bucket/nomeiryoui.json +++ b/bucket/nomeiryoui.json @@ -4,12 +4,17 @@ "homepage": "https://github.com/Tatsu-syo/noMeiryoUI", "license": "MIT", "url": "https://github.com/Tatsu-syo/noMeiryoUI/releases/download/TAG-3.4.0/noMeiryoUI3.4.0.zip", - "hash": "97B7D4EB6B04C9A4A617267823FA98C75AE5559765ECB5C1192EE473D4E78EC8", - "pre_install": "New-Item -Type File -Path \"$dir\\noMeiryoUI.ini\"", - "bin": [ + "hash": "97b7d4eb6b04c9a4a617267823fa98c75ae5559765ecb5c1192ee473d4e78ec8", + "pre_install": [ + "if (-not (Test-Path \"$persist_dir\\noMeiryoUI.ini\")) {", + " New-Item -Path \"$dir\\noMeiryoUI.ini\" -ItemType File -Force | Out-Null", + "}" + ], + "bin": "noMeiryoUI.exe", + "shortcuts": [ [ "noMeiryoUI.exe", - "noMeiryoUI" + "No!! Meiryo UI" ] ], "persist": "noMeiryoUI.ini",