Skip to content

Commit

Permalink
Release 2.3 Final
Browse files Browse the repository at this point in the history
  • Loading branch information
simon50keda committed Jun 3, 2022
1 parent f68bf7f commit 53f0980
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addon/io_scs_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"name": "SCS Tools",
"description": "Setup models, Import-Export SCS data format",
"author": "Simon Lusenc (50keda), Milos Zajic (4museman)",
"version": (2, 3, "a8090b9a"),
"version": (2, 3, "76f322df"),
"blender": (3, 0, 0),
"location": "File > Import-Export",
"wiki_url": "http://modding.scssoft.com/wiki/Documentation/Tools/SCS_Blender_Tools",
Expand Down
2 changes: 1 addition & 1 deletion addon/io_scs_tools/properties/addon_preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def scs_project_path_update(self, context):
# otherwise textures might not be properly loaded from parent and parent sibling directories
# (we assign property directly to prevent recursive property update calls)
if self.scs_project_path:
self["scs_project_path"] = _path_utils.readable_norm(self.scs_project_path)
self["scs_project_path"] = _path_utils.full_norm(self.scs_project_path)

_config_container.update_scs_project_path(self.scs_project_path)
return None
Expand Down
2 changes: 1 addition & 1 deletion addon/io_scs_tools/utils/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ def ensure_symlink(src, dest):
os.remove(dest) # use os.remove instead os.unlink, as we can't remove mklink junction with os.unlink.

if platform == "win32":
subprocess.check_call(["mklink", "/J", dest, src], shell=True)
subprocess.check_call(["mklink", "/J", os.path.normcase(dest), os.path.normcase(src)], shell=True)
else:
os.symlink(src, dest)

Expand Down

0 comments on commit 53f0980

Please sign in to comment.