Merge branch 'blender-v4.2-release'

This commit is contained in:
Campbell Barton 2024-06-24 12:36:39 +10:00
commit 0b14da7391

@ -72,8 +72,8 @@ def rna_prop_repo_enum_valid_only_itemf(_self, context):
# installing into a remote - while supported is more of a corner case. # installing into a remote - while supported is more of a corner case.
result = [] result = []
repos_valid = list(repo_iter_valid_only(context, exclude_remote=False, exclude_system=True)) repos_valid = list(repo_iter_valid_only(context, exclude_remote=False, exclude_system=True))
# The UI-list sorts alphabetically, to the same here. # The UI-list sorts alphabetically, do the same here.
repos_valid.sort(key=lambda repo_item: repo_item.name) repos_valid.sort(key=lambda repo_item: repo_item.name.casefold())
has_local = False has_local = False
has_remote = False has_remote = False
for repo_item in repos_valid: for repo_item in repos_valid: