Skip to content

Commit

Permalink
v2.6.0.6 release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Mar 21, 2024
1 parent 804abb4 commit 7dad348
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions DXRCore/DeusEx/Classes/DXRVersion.uc
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ simulated static function CurrentVersion(optional out int major, optional out in
major=2;
minor=6;
patch=0;
build=5;//build can't be higher than 99
build=6;//build can't be higher than 99
}

simulated static function bool VersionIsStable()
{
return false;
return true;
}

simulated static function string VersionString(optional bool full)
{
local int major,minor,patch,build;
local string status;

status = "Beta";
status = "";

if(status!="") {
status = " " $ status;
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.
2 changes: 1 addition & 1 deletion installer/Install/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def IsWindows() -> bool:
return os.name == 'nt'

def GetVersion():
return 'v2.6 Beta'
return 'v2.6' # TODO: make this automatic

def CheckVulkan() -> bool:
if not IsWindows():
Expand Down

0 comments on commit 7dad348

Please sign in to comment.