From 0446202ad735d674798acf5d33c232f6db0f7e48 Mon Sep 17 00:00:00 2001 From: Kody Brown Date: Tue, 25 Jul 2017 14:06:21 -0600 Subject: [PATCH] Added micro, the command-line editor (#1627) * Added micro, the command-line editor * micro: Add autoupdate and 64/32bit --- micro.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 micro.json diff --git a/micro.json b/micro.json new file mode 100644 index 0000000000..d563dc982b --- /dev/null +++ b/micro.json @@ -0,0 +1,31 @@ +{ + "homepage": "https://micro-editor.github.io/", + "version": "1.2.0", + "license": "MIT Expat License", + "architecture": { + "64bit": { + "url": "https://github.com/zyedidia/micro/releases/download/v1.2.0/micro-1.2.0-win64.zip", + "hash": "8b5bd2335eebc415069c7ab2076a27680a339a24cdf0f55c93c4d4e1ad839829" + }, + "32bit": { + "url": "https://github.com/zyedidia/micro/releases/download/v1.2.0/micro-1.2.0-win32.zip", + "hash": "bb67bdd044d1918a8d5291a104764296f0a0dfa3162da2a6263242b2e440d4b2" + } + }, + "bin": "micro.exe", + "extract_dir": "micro-1.2.0", + "checkver": { + "github": "https://github.com/zyedidia/micro" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/zyedidia/micro/releases/download/v$version/micro-$version-win64.zip" + }, + "32bit": { + "url": "https://github.com/zyedidia/micro/releases/download/v$version/micro-$version-win32.zip" + } + }, + "extract_dir": "micro-$version" + } +}