Add Direct URL and Delta update support to Velopack flow#5548
Open
Viscerous wants to merge 1 commit intosecondlife:release/26.1.1from
Open
Add Direct URL and Delta update support to Velopack flow#5548Viscerous wants to merge 1 commit intosecondlife:release/26.1.1from
Viscerous wants to merge 1 commit intosecondlife:release/26.1.1from
Conversation
|
All contributors have signed the CLA ✍️ ✅ |
Author
|
I have read the CLA Document and I hereby sign the CLA |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds support to the viewer update flow for (1) overriding Velopack’s feed URL via VELOPACK_UPDATE_URL, and (2) pre-downloading multiple update assets to enable delta updates with a full-release fallback path.
Changes:
- Add
VELOPACK_UPDATE_URLhandling to bypass VVM and run Velopack update checks against a direct feed URL. - Update Velopack asset pre-download logic from a single file to a filename→path map, enabling delta asset handling.
- Add a fallback attempt to download the full release if the delta download path fails.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
indra/newview/llvvmquery.cpp |
Adds environment-variable override path to set Velopack update URL and launch an update check. |
indra/newview/llvelopack.cpp |
Pre-downloads multiple assets (deltas/full) and adds a fallback from delta to full release download. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Collaborator
|
FYI, this is on hold until we get 26.1.1 out the door. |
34b4ba0 to
f086c56
Compare
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.
Adds support for vpk direct URLs (via environment variable:
VELOPACK_UPDATE_URL) and delta updates with retry behaviour.