Skip to content

Commit 253f3d2

Browse files
committed
v1.3.1 - Fix Wilhelm hotfix string
1 parent ddb9d74 commit 253f3d2

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

src/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
OpenBLCMM Changelog
22
===================
33

4+
**v1.3.1** May 14, 2023
5+
- Fixed Wilhelm string (`GD_Enforcer_Streaming`) in hotfix editing dialog
6+
47
**v1.3.0** May 12, 2023
58
- Renamed to OpenBLCMM
69
- Added Tiny Tina's Assault on Dragon Keep support

src/blcmm/Meta.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class Meta {
4444
/**
4545
* App version. Should follow https://semver.org/ conventions.
4646
*/
47-
public static final String VERSION = "1.3.0";
47+
public static final String VERSION = "1.3.1";
4848

4949
/**
5050
* User data directory for storing prefs, extracted data, etc. If NAME

src/blcmm/model/PatchType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public enum PatchType {
156156
"a",
157157
new String[] {
158158
"GD_Gladiator_Streaming",
159-
"GD_Enforce_Streaming",
159+
"GD_Enforcer_Streaming",
160160
"GD_Lawbringer_Streaming",
161161
"GD_Prototype_Streaming",
162162
"Quince_Doppel_Streaming",

windows-processing/openblcmm.iss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "OpenBLCMM"
5-
#define MyAppVersion "1.3.0"
5+
#define MyAppVersion "1.3.1"
66
#define MyAppPublisher "BLCM"
77
#define MyAppURL "https://github.com/BLCM/OpenBLCMM/"
88
#define MyAppExeName "OpenBLCMM.exe"
@@ -91,7 +91,7 @@ Filename: "{tmp}\VC_redist.x64.exe"; \
9191

9292
[Code]
9393
function VC2022RedistNeedsInstall: Boolean;
94-
var
94+
var
9595
instVersionStrRaw, instVersionStr, reqVersionStr: String;
9696
instVersion, reqVersion: Int64;
9797
begin
@@ -131,7 +131,7 @@ begin
131131
Result := True;
132132
end
133133
end
134-
else
134+
else
135135
begin
136136
// Not even an old version installed
137137
Log('VC Redist Version Check : No installed vcredist found');

0 commit comments

Comments
 (0)