From e917da7c8faaca204903b843d6a97ad56c854740 Mon Sep 17 00:00:00 2001 From: Brian <18603393+brian6932@users.noreply.github.com> Date: Sat, 4 Feb 2023 13:56:04 -0500 Subject: [PATCH] ttyper: Add version 1.0.0 (#4416) * ttyper: Add version 1.0.0 * ttyper: Add arm64 * ttyper: Use the same `autoupdate.hash` for all archs --- bucket/ttyper.json | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 bucket/ttyper.json diff --git a/bucket/ttyper.json b/bucket/ttyper.json new file mode 100644 index 0000000000..c29a55986a --- /dev/null +++ b/bucket/ttyper.json @@ -0,0 +1,42 @@ +{ + "version": "1.0.0", + "description": "Terminal-based typing test.", + "homepage": "https://github.com/max-niederman/ttyper", + "license": "MIT", + "architecture": { + "64bit": { + "url": "https://github.com/max-niederman/ttyper/releases/download/v1.0.0/ttyper-x86_64-pc-windows-msvc.zip", + "hash": "66171e11d3d77b298a78e1a8c6250869981eb6ca46fc716be98ba9d5dda54c72" + }, + "32bit": { + "url": "https://github.com/max-niederman/ttyper/releases/download/v1.0.0/ttyper-i686-pc-windows-msvc.zip", + "hash": "3456fdd251d19e84b6a51556b571baa624e6f817666271b6f33b4ff0fc268779" + }, + "arm64": { + "url": "https://github.com/max-niederman/ttyper/releases/download/v1.0.0/ttyper-aarch64-pc-windows-msvc.zip", + "hash": "09f091de7a01b89b15d8e182a07e1fa6850ccd3df77ef42e2ab0ff8c140015e2" + } + }, + "bin": "ttyper.exe", + "checkver": { + "url": "https://api.github.com/repositories/338940591/releases", + "jsonpath": "$.[0].tag_name", + "regex": "v([\\w.-]+)" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/max-niederman/ttyper/releases/download/v$version/ttyper-x86_64-pc-windows-msvc.zip" + }, + "32bit": { + "url": "https://github.com/max-niederman/ttyper/releases/download/v$version/ttyper-i686-pc-windows-msvc.zip" + }, + "arm64": { + "url": "https://github.com/max-niederman/ttyper/releases/download/v$version/ttyper-aarch64-pc-windows-msvc.zip" + } + }, + "hash": { + "url": "$url.sha256" + } + } +}