neovim-nightly: Remove 32bit and add au.hash (#2960)

This commit is contained in:
Hsiao-nan Cheung 2021-11-16 11:04:10 +08:00 committed by GitHub
parent 8e6b3c839f
commit 4dfea59186
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "0.6.0-dev-575-g2ef9d2a66", "version": "0.6.0-dev-581-g8f984dc1f",
"description": "Vim fork focused on extensibility and usability", "description": "Vim fork focused on extensibility and usability",
"homepage": "https://neovim.io", "homepage": "https://neovim.io",
"license": { "license": {
@ -12,11 +12,7 @@
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.zip", "url": "https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.zip",
"hash": "6f86e7e684893da5c3351a1c1e3ec05891bffc52f59d5b7abf7ff8d89b0cc316" "hash": "57177d9b983fcadf54d79317c74df3de4c9a27caf8b9dc710c9b987d6748c76b"
},
"32bit": {
"url": "https://github.com/neovim/neovim/releases/download/nightly/nvim-win32.zip",
"hash": "9a20dda23b0ccf571dc197c34bf18d57286ee9874808355d449dc3bcedf1f73a"
} }
}, },
"extract_dir": "Neovim", "extract_dir": "Neovim",
@ -38,10 +34,10 @@
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.zip" "url": "https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.zip",
}, "hash": {
"32bit": { "url": "$url.sha256sum"
"url": "https://github.com/neovim/neovim/releases/download/nightly/nvim-win32.zip" }
} }
} }
} }

View File

@ -31,7 +31,8 @@
] ]
], ],
"checkver": { "checkver": {
"github": "https://github.com/neovim/neovim" "github": "https://github.com/neovim/neovim",
"regex": "NVIM v([\\d.]+)"
}, },
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
@ -41,6 +42,9 @@
"32bit": { "32bit": {
"url": "https://github.com/neovim/neovim/releases/download/v$version/nvim-win32.zip" "url": "https://github.com/neovim/neovim/releases/download/v$version/nvim-win32.zip"
} }
},
"hash": {
"url": "$url.sha256sum"
} }
} }
} }