Skip to content

Commit fa4e2c0

Browse files
committed
Bump version to 2.10.0
1 parent 75e0d13 commit fa4e2c0

File tree

4 files changed

+41
-6
lines changed

4 files changed

+41
-6
lines changed

include/Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
#include <time.h>
2727
#include "Log.h"
2828

29-
#define VERSION "2.9.0"
29+
#define VERSION "2.10.0"

premake5.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@ workspace "MTADiag"
3636

3737
"res/**.rc",
3838
"res/**.h",
39+
"res/**.manifest",
3940
}

res/MTADiag.manifest

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:v3="urn:schemas-microsoft-com:asm.v3">
3+
<assemblyIdentity type="win32" version="2.10.0.0" processorArchitecture="*" name="MTADiag" />
4+
5+
<v3:application>
6+
<windowsSettings>
7+
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">True/PM</dpiAware>
8+
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, PerMonitor</dpiAwareness>
9+
<activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
10+
</windowsSettings>
11+
</v3:application>
12+
13+
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
14+
<application>
15+
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" /> <!-- Windows 10 and Windows 11 -->
16+
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" /> <!-- Windows 8.1 -->
17+
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" /> <!-- Windows 8 -->
18+
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" /> <!-- Windows 7 -->
19+
</application>
20+
</compatibility>
21+
22+
<dependency optional="yes">
23+
<dependentAssembly>
24+
<!-- Automatically use ComCtl32.dll version 6 or later. -->
25+
<assemblyIdentity
26+
type="win32"
27+
name="Microsoft.Windows.Common-Controls"
28+
version="6.0.0.0"
29+
processorArchitecture="*"
30+
publicKeyToken="6595b64144ccf1df"
31+
language="*" />
32+
</dependentAssembly>
33+
</dependency>
34+
</assembly>

res/resource.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ ID_CERTIFICATE_5_ID RCDATA "5 SSL.com Code Signing Intermediate CA RSA R1.
2525

2626
// Version information.
2727
VS_VERSION_INFO VERSIONINFO
28-
FILEVERSION 2,9,0,0
29-
PRODUCTVERSION 2,9,0,0
28+
FILEVERSION 2,10,0,0
29+
PRODUCTVERSION 2,10,0,0
3030
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
3131
FILEFLAGS VER_DBG
3232
FILEOS VOS_NT_WINDOWS32
@@ -41,12 +41,12 @@ BEGIN
4141
VALUE "Comments", ""
4242
VALUE "CompanyName", "Multi Theft Auto"
4343
VALUE "FileDescription", "Diagnostic utility for MTA:SA to resolve user issues"
44-
VALUE "FileVersion", "2.9.0.0"
44+
VALUE "FileVersion", "2.10.0.0"
4545
VALUE "InternalName", "MTADiag"
46-
VALUE "LegalCopyright", "(C) 2003 - 2024 Multi Theft Auto team and contributors"
46+
VALUE "LegalCopyright", "(C) 2003 - 2025 Multi Theft Auto team and contributors"
4747
VALUE "OriginalFilename", "MTADiag.exe"
4848
VALUE "ProductName", "MTADiag"
49-
VALUE "ProductVersion", "2.9.0.0"
49+
VALUE "ProductVersion", "2.10.0.0"
5050
END
5151
END
5252
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)