[repo] Split manifest base URL into download_base_url and metadata_base_url#127
Draft
sethwv wants to merge 8 commits into
Draft
[repo] Split manifest base URL into download_base_url and metadata_base_url#127sethwv wants to merge 8 commits into
sethwv wants to merge 8 commits into
Conversation
|
This PR is currently a draft. Plugin validation will run once the PR is marked ready for review. |
11 tasks
jstevenscl
pushed a commit
to jstevenscl/Plugins
that referenced
this pull request
Jun 15, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Important
The main app needs a deprecation window to support both
root_url(old) anddownload_base_url/metadata_base_url(new) before this can be merged.The root manifest previously had a single
root_urlcovering both ZIP downloads and metadata paths. This splits it intodownload_base_url(GitHub Releases, for ZIP paths) andmetadata_base_url(GitHub Pages if configured, otherwise raw.githubusercontent.com, for manifest paths).manifest_urlin each plugin entry is now a relative path clients compose withmetadata_base_url.Also included: plugin icons (logo.png/svg/jpg/webp) are now copied to
metadata/{slug}/on the releases branch each publish run; fixes for immutable-tag release conflicts (retry with numeric suffix, correct ZIP filename in generated URLs, discard stale checksums when a retry upload is skipped).