aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/sources/github.lua
Commit message (Collapse)AuthorAgeFilesLines
* fix(sources): don't skip installation if fixed version is not currently ↵William Boman2023-05-111-2/+2
| | | | installed (#1297)
* feat(registry): add .get_all_package_specs() (#1247)William Boman2023-04-221-19/+30
| | | | This is a faster method than .get_all_packages() due to the fact that it only loads package specifications without instantiating mason-core.package instances. Useful for situations where one only needs to read spec data.
* fix(windows): download registry archive to file instead of piping data (#1189)William Boman2023-04-071-5/+7
| | | | Accessing binary data from the stdout of pwsh.exe's iwr seems to be causing data corruption leading to inability to unpack the archive.
* feat: vendor zzlib for unzip (#1174)William Boman2023-04-031-26/+13
| | | Download data of the registry suggest that ~10-18% struggle to unpack the registry archive, with the drop-off occurring in the `unzip` step. Being able to unpack the registry is a very crucial component of mason.nvim, which warrants vendoring [zzlib](https://github.com/zerkman/zzlib) to allow unpacking it entirely in Lua.
* feat(ui): display warning and error message if registry is not installed (#1164)William Boman2023-04-011-1/+5
|
* refactor: download checksum after unzip (#1135)William Boman2023-03-251-8/+7
| | | | | | | | | * refactor: download checksum after unzip * fixup --------- Co-authored-by: williambotman[bot] <william+bot@redwill.se>
* fix(sources): also set .desc property when updating spec (#1095)William Boman2023-03-141-2/+11
|
* style: enforce import order (#1092)William Boman2023-03-121-9/+9
| | | | | * chore(workflows): update dependencies * style: enforce import order
* feat: add github registry source capabilities (#1091)William Boman2023-03-121-0/+195