Skip to content

Commit

Permalink
v2.5.3.4 Alpha builds, fix installer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Sep 9, 2023
1 parent cf55661 commit 1daa1c5
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DXRCore/DeusEx/Classes/DXRVersion.uc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Binary file modified DeusEx.u
Binary file not shown.
Binary file modified GMDXRandomizer.u
Binary file not shown.
Binary file modified HXRandomizer.u
Binary file not shown.
Binary file modified RevRandomizer.u
Binary file not shown.
Binary file modified VMDRandomizer.u
Binary file not shown.
3 changes: 2 additions & 1 deletion installer/tests.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from pathlib import Path
import unittest
from unittest import case
from typeguard import typechecked, install_import_hook
Expand All @@ -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')


Expand Down

0 comments on commit 1daa1c5

Please sign in to comment.