Improved large addon installation - #467
Merged
Merged
Conversation
chennes
added a commit
to FreeCAD/Addons
that referenced
this pull request
Aug 14, 2026
|
Successfully created backport PR for |
This was referenced Aug 14, 2026
Closed
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.
Large addons like the Parts Library are inherently fickle to install and update: it's safer and more reliable to use zip downloads, at the cost of inordinately expensive updates later on. This PR adds a mechanism for marking an addon as "large" at the Addon Index level, and then attempting to use
gitto install it instead, if the user has a git client installed. If not, it falls back to the usual zip mechanism. If the git install fails (not uncommon for these huge repos) it offers to either retry or to switch to zip.Note that this requires an update to the Addon Index to actually be useful, since now it must indicate which addons should be treated this way.