diff --git a/DXRCore/DeusEx/Classes/DXRVersion.uc b/DXRCore/DeusEx/Classes/DXRVersion.uc index 3546339ec..2a4b49fc9 100644 --- a/DXRCore/DeusEx/Classes/DXRVersion.uc +++ b/DXRCore/DeusEx/Classes/DXRVersion.uc @@ -5,7 +5,7 @@ simulated static function CurrentVersion(optional out int major, optional out in major=2; minor=5; patch=3; - build=3;//build can't be higher than 99 + build=4;//build can't be higher than 99 } simulated static function string VersionString(optional bool full) diff --git a/DeusEx.u b/DeusEx.u index 14de6e139..8223bd9dc 100644 Binary files a/DeusEx.u and b/DeusEx.u differ diff --git a/GMDXRandomizer.u b/GMDXRandomizer.u index dc67a5a95..5a65700cf 100644 Binary files a/GMDXRandomizer.u and b/GMDXRandomizer.u differ diff --git a/HXRandomizer.u b/HXRandomizer.u index 086f79e52..ae7ec3c03 100644 Binary files a/HXRandomizer.u and b/HXRandomizer.u differ diff --git a/RevRandomizer.u b/RevRandomizer.u index bdbe87d35..b878bbec0 100644 Binary files a/RevRandomizer.u and b/RevRandomizer.u differ diff --git a/VMDRandomizer.u b/VMDRandomizer.u index cef636cef..20bd99e4e 100644 Binary files a/VMDRandomizer.u and b/VMDRandomizer.u differ diff --git a/installer/tests.py b/installer/tests.py index 74d64c1b6..6a1d28061 100644 --- a/installer/tests.py +++ b/installer/tests.py @@ -1,3 +1,4 @@ +from pathlib import Path import unittest from unittest import case from typeguard import typechecked, install_import_hook @@ -17,7 +18,7 @@ @typechecked class DXRTestCase(unittest.TestCase): def test_documents(self): - d = Install.GetDocumentsDir() + d = Install.GetDocumentsDir(Path.home()) self.assertTrue(d.exists(), str(d) + ' exists')