From e8f7c4edd1778dc85f8ef070cede605b29e0b547 Mon Sep 17 00:00:00 2001 From: Jordan <2807427568@qq.com> Date: Sun, 13 Oct 2024 14:37:13 +0800 Subject: [PATCH 1/2] tex-fmt: Add manifest --- bucket/tex-fmt.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 bucket/tex-fmt.json diff --git a/bucket/tex-fmt.json b/bucket/tex-fmt.json new file mode 100644 index 00000000000000..15ea055aeed04c --- /dev/null +++ b/bucket/tex-fmt.json @@ -0,0 +1,35 @@ +{ + "version": "0.4.5", + "description": "An extremely fast LaTeX formatter written in Rust.", + "homepage": "https://github.com/WGUNDERWOOD/tex-fmt", + "license": "MIT", + "architecture": { + "64bit": { + "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/v0.4.5/tex-fmt-x86_64-windows.zip", + "hash": "ac3e2eb020403a63c0a58b5b7f63e1c89b3b05b64c5eff9c670d84cdb96884d5" + }, + "32bit": { + "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/v0.4.5/tex-fmt-i686-windows.zip", + "hash": "0a7da51c4c09b80d9a0de1c7b4032e46822fa69d99f83aa4cef8f190a4d0599e" + }, + "arm64": { + "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/v0.4.5/tex-fmt-aarch64-windows.zip", + "hash": "90e17b3b21fb4fe10d6e672506a4df163a88788a42ccac2a8f521a526122c9e5" + } + }, + "bin": "tex-fmt.exe", + "checkver": "github", + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/$version/tex-fmt-x86_64-windows.zip" + }, + "32bit": { + "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/$version/tex-fmt-i686-windows.zip" + }, + "arm64": { + "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/$version/tex-fmt-aarch64-windows.zip" + } + } + } +} \ No newline at end of file From f7f2525b0911ea31c71a46960a04cc64eb0dfb32 Mon Sep 17 00:00:00 2001 From: Jordan <2807427568@qq.com> Date: Sun, 13 Oct 2024 15:02:37 +0800 Subject: [PATCH 2/2] fix autoupdate bug --- bucket/tex-fmt.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bucket/tex-fmt.json b/bucket/tex-fmt.json index 15ea055aeed04c..1584663ca001f6 100644 --- a/bucket/tex-fmt.json +++ b/bucket/tex-fmt.json @@ -22,14 +22,14 @@ "autoupdate": { "architecture": { "64bit": { - "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/$version/tex-fmt-x86_64-windows.zip" + "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/v$version/tex-fmt-x86_64-windows.zip" }, "32bit": { - "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/$version/tex-fmt-i686-windows.zip" + "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/v$version/tex-fmt-i686-windows.zip" }, "arm64": { - "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/$version/tex-fmt-aarch64-windows.zip" + "url": "https://github.com/WGUNDERWOOD/tex-fmt/releases/download/v$version/tex-fmt-aarch64-windows.zip" } } } -} \ No newline at end of file +}