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 a3ddd47dd5 - Show all commits

View File

@ -230,7 +230,7 @@ def update_file_list_svn_status(context, file_statuses: Dict[str, Tuple[str, str
new_files_on_repo = set()
for filepath_str, status_info in file_statuses.items():
svn_path = Path(filepath_str)
svn_path_str = str(filepath_str)
svn_path_str = str(svn_path.as_posix())
suffix = svn_path.suffix
if (
(suffix.startswith(".r") and suffix[2:].isdecimal())