-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix parser to use standard json processing facility - Fix handling optional fields (download, description - Fix package link types and add another link (recipe/manifest) - Improbe name handling, handle display name properly - Move repository entry into modules/ fix type, update minpackages, enable shadow
- Loading branch information
Showing
4 changed files
with
57 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
########################################################################### | ||
# OpenVSX | ||
########################################################################### | ||
# NOTE: API returns more data for individual packages, including upstream | ||
# url. Unfortunately, we cannot fetch individual API output for every package | ||
# Also if ?size=10000 breaks at some point, we'll have to disable this | ||
- name: openvsx | ||
type: modules | ||
desc: Open VSX | ||
family: openvsx | ||
ruleset: openvsx | ||
minpackages: 3500 | ||
sources: | ||
- name: search.json | ||
fetcher: | ||
class: FileFetcher | ||
url: https://open-vsx.org/api/-/search?size=10000 | ||
allow_zero_size: false | ||
parser: | ||
class: OpenVSXParser | ||
shadow: true | ||
repolinks: | ||
- desc: Open VSX registry | ||
url: https://open-vsx.org/ | ||
packagelinks: | ||
- type: PROJECT_HOMEPAGE | ||
url: 'https://open-vsx.org/extension/{srcname}' | ||
groups: [ all, production ] |
This file was deleted.
Oops, something went wrong.