Skip to content

Commit 0eff17b

Browse files
committed
#16: change versions and fix workflows (i forgot to update them for newer releases lol)
1 parent d71f6de commit 0eff17b

4 files changed

Lines changed: 26 additions & 8 deletions

File tree

.github/workflows/pr-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ jobs:
1515
- name: Set up MSBuild
1616
uses: microsoft/setup-msbuild@v2
1717

18+
- name: Build Core Win32 DLL
19+
run: msbuild uc_online2_core.vcxproj -p:Configuration=Release -p:Platform=Win32 -m
20+
21+
- name: Build Core x64 DLL
22+
run: msbuild uc_online2_core.vcxproj -p:Configuration=Release -p:Platform=x64 -m
23+
1824
- name: Build Win32 DLL
1925
run: msbuild uc_online2.vcxproj -p:Configuration=Release -p:Platform=Win32 -m
2026

@@ -25,6 +31,8 @@ jobs:
2531
shell: pwsh
2632
run: |
2733
$files = @(
34+
"build/x86/uc_online2_core.dll",
35+
"build/x64/uc_online2_core.dll",
2836
"build/x86/steam_api.dll",
2937
"build/x64/steam_api64.dll"
3038
)

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
- name: Set up MSBuild
2222
uses: microsoft/setup-msbuild@v2
2323

24+
- name: Build Core x86 version
25+
run: msbuild uc_online2_core.vcxproj -p:Configuration=Release -p:Platform=Win32 -m
26+
27+
- name: Build Core x64 version
28+
run: msbuild uc_online2_core.vcxproj -p:Configuration=Release -p:Platform=x64 -m
29+
2430
- name: Build x86 version (steam_api.dll)
2531
run: msbuild uc_online2.vcxproj -p:Configuration=Release -p:Platform=Win32 -m
2632

@@ -31,6 +37,8 @@ jobs:
3137
shell: pwsh
3238
run: |
3339
$files = @(
40+
"build/x86/uc_online2_core.dll",
41+
"build/x64/uc_online2_core.dll",
3442
"build/x86/steam_api.dll",
3543
"build/x64/steam_api64.dll"
3644
)
@@ -50,6 +58,8 @@ jobs:
5058
New-Item -ItemType Directory -Path "$packageRoot/x86" -Force | Out-Null
5159
New-Item -ItemType Directory -Path "$packageRoot/x64" -Force | Out-Null
5260
61+
Copy-Item "build/x86/uc_online2_core.dll" "$packageRoot/x86/uc_online2_core.dll"
62+
Copy-Item "build/x64/uc_online2_core.dll" "$packageRoot/x64/uc_online2_core.dll"
5363
Copy-Item "build/x86/steam_api.dll" "$packageRoot/x86/steam_api.dll"
5464
Copy-Item "build/x64/steam_api64.dll" "$packageRoot/x64/steam_api64.dll"
5565

uc_online2.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
IDI_ICON1 ICON "icon.ico"
55

66
VS_VERSION_INFO VERSIONINFO
7-
FILEVERSION 1,3,0,0
8-
PRODUCTVERSION 1,3,0,0
7+
FILEVERSION 1,4,0,0
8+
PRODUCTVERSION 1,4,0,0
99
FILEFLAGSMASK 0x3fL
1010
#ifdef _DEBUG
1111
FILEFLAGS 0x1L
@@ -22,7 +22,7 @@ BEGIN
2222
BEGIN
2323
VALUE "CompanyName", "veeanti | union-crax.xyz"
2424
VALUE "FileDescription", "uc-online2, custom Steam API modified for UC"
25-
VALUE "FileVersion", "1.3.0.0"
25+
VALUE "FileVersion", "1.4.0.0"
2626
VALUE "InternalName", "uc-online2"
2727
VALUE "LegalCopyright", "union-crax.xyz | veeanti 2026"
2828
#ifdef IS_64BIT
@@ -31,7 +31,7 @@ BEGIN
3131
VALUE "OriginalFilename", "steam_api.dll"
3232
#endif
3333
VALUE "ProductName", "uc-online2"
34-
VALUE "ProductVersion", "1.3.0.0"
34+
VALUE "ProductVersion", "1.4.0.0"
3535
VALUE "Comments", "https://union-crax.xyz | https://vee-anti.xyz"
3636
END
3737
END

uc_online2_core.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
IDI_ICON1 ICON "icon.ico"
55

66
VS_VERSION_INFO VERSIONINFO
7-
FILEVERSION 1,3,0,0
8-
PRODUCTVERSION 1,3,0,0
7+
FILEVERSION 1,4,0,0
8+
PRODUCTVERSION 1,4,0,0
99
FILEFLAGSMASK 0x3fL
1010
#ifdef _DEBUG
1111
FILEFLAGS 0x1L
@@ -22,7 +22,7 @@ BEGIN
2222
BEGIN
2323
VALUE "CompanyName", "veeanti | union-crax.xyz"
2424
VALUE "FileDescription", "uc-online2_core, uc-online2 'client' dll"
25-
VALUE "FileVersion", "1.3.0.0"
25+
VALUE "FileVersion", "1.4.0.0"
2626
VALUE "InternalName", "uc-online2_core"
2727
VALUE "LegalCopyright", "union-crax.xyz | veeanti 2026"
2828
#ifdef IS_64BIT
@@ -31,7 +31,7 @@ BEGIN
3131
VALUE "OriginalFilename", "uc-online2_core.dll"
3232
#endif
3333
VALUE "ProductName", "uc-online2_core"
34-
VALUE "ProductVersion", "1.3.0.0"
34+
VALUE "ProductVersion", "1.4.0.0"
3535
VALUE "Comments", "https://union-crax.xyz | https://vee-anti.xyz"
3636
END
3737
END

0 commit comments

Comments
 (0)