Skip to content

Commit

Permalink
add 5.3, 5.4 to drop-down
Browse files Browse the repository at this point in the history
  • Loading branch information
atenfyr committed Jun 13, 2024
1 parent e8a639e commit effa38a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You can find pre-built binaries of UAssetGUI in the [Releases tab of this reposi
If you'd like to compile UAssetGUI for yourself, read on:

### Prerequisites
* Visual Studio 2019 or later
* Visual Studio 2022 or later
* Git

### Initial Setup
Expand Down
8 changes: 6 additions & 2 deletions UAssetGUI/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,9 @@ private void UpdateMappings(string newSelection = null, bool alsoCheckVersion =
"4.27",
"5.0",
"5.1",
"5.2"
"5.2",
"5.3",
"5.4"
};

private EngineVersion[] versionOptionsValues = new EngineVersion[]
Expand Down Expand Up @@ -289,7 +291,9 @@ private void UpdateMappings(string newSelection = null, bool alsoCheckVersion =
EngineVersion.VER_UE4_27,
EngineVersion.VER_UE5_0,
EngineVersion.VER_UE5_1,
EngineVersion.VER_UE5_2
EngineVersion.VER_UE5_2,
EngineVersion.VER_UE5_3,
EngineVersion.VER_UE5_4
};

public static readonly string GitHubRepo = "atenfyr/UAssetGUI";
Expand Down

0 comments on commit effa38a

Please sign in to comment.