feat(parsers): rework tiers

* stable: updates follow semver releases (todo)
* unstable: updates follow HEAD (default)
* unmaintained: no automatic updates
* unsupported: no updates, cannot be installed
This commit is contained in:
Christian Clason
2025-02-09 13:19:34 +01:00
parent 188bbf7a09
commit a9f34d5a76
9 changed files with 569 additions and 571 deletions

View File

@@ -8,7 +8,7 @@ local updates = {} ---@type string[]
-- check for new revisions
for k, p in pairs(parsers) do
if p.tier < 5 and p.install_info then
if p.tier <= 2 and p.install_info then
print('Updating ' .. k)
jobs[k] = vim.system({ 'git', 'ls-remote', p.install_info.url })
end