Blender SVN: New Features #273

Open
Demeter Dzadik wants to merge 13 commits from New-SVN-features into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 0e8ef5035f - Show all commits

View File

@ -337,10 +337,11 @@ def update_file_list_svn_list(context, svn_list_str: str) -> Dict:
file_infos = svn_list_xml['lists']['list']['entry']
for file_info in file_infos:
svn_path = file_info['name']
svn_path = str(Path(file_info['name']).as_posix())
kind = file_info['@kind']
file_entry = repo.external_files.get(svn_path)
if not file_entry:
continue
file_entry = repo.external_files.add()
file_entry.svn_path = svn_path
file_entry.absolute_path = str(repo.svn_to_absolute_path(svn_path))