typst: add arm64 arch (#7346)

* Add aarch64 to typst.json

* typst: Fix extra , at the end of arch
This commit is contained in:
Pig 2025-11-13 18:19:23 -05:00 committed by GitHub
parent dc71a22b5e
commit 9b53f167a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,10 +6,15 @@
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://github.com/typst/typst/releases/download/v0.14.0/typst-x86_64-pc-windows-msvc.zip", "url": "https://github.com/typst/typst/releases/download/v0.14.0/typst-x86_64-pc-windows-msvc.zip",
"hash": "06d847b998be837565ef88d679a9da6acc022fdefa221703bc25a877e7511312" "hash": "06d847b998be837565ef88d679a9da6acc022fdefa221703bc25a877e7511312",
"extract_dir": "typst-x86_64-pc-windows-msvc"
},
"arm64": {
"url": "https://github.com/typst/typst/releases/download/v0.14.0/typst-aarch64-pc-windows-msvc.zip",
"hash": "906ecdd759c93196b7097eb725df91d99eb2ca56a6060f8d9877d73f443c2f19",
"extract_dir": "typst-aarch64-pc-windows-msvc"
} }
}, },
"extract_dir": "typst-x86_64-pc-windows-msvc",
"bin": "typst.exe", "bin": "typst.exe",
"checkver": { "checkver": {
"url": "https://github.com/typst/typst/releases", "url": "https://github.com/typst/typst/releases",
@ -19,6 +24,9 @@
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://github.com/typst/typst/releases/download/v$version/typst-x86_64-pc-windows-msvc.zip" "url": "https://github.com/typst/typst/releases/download/v$version/typst-x86_64-pc-windows-msvc.zip"
},
"arm64": {
"url": "https://github.com/typst/typst/releases/download/v$version/typst-aarch64-pc-windows-msvc.zip"
} }
} }
} }