Skip to content

Commit b156aba

Browse files
committed
Bump to v1.3.2.0 and update CHANGELOG.
1 parent 7058251 commit b156aba

File tree

6 files changed

+34
-15
lines changed

6 files changed

+34
-15
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# WASimCommander - Change Log
22

3+
## 1.3.2.0 (18-May-2025)
4+
5+
### WASimModule
6+
* Updated reference list of KEY event names for MSFS 2024 SDK v1.3.4 ([2e4f3cbc]).
7+
8+
### WASimClient
9+
* Fixed issue with generation of client name in some locales when locale-specific number formatting is enabled on the C++ program using WASimClient.
10+
This would result in the client being unable to ping or connect to the server. Thanks to @mocsa for reporting! ([#25], [5f586d4f]).
11+
* Also ensured that locale formatting doesn't affect any auto-generated RPN code.
12+
* Improved handling of situation where SimConnect connection attempt is aborted while waiting for a response. [1866e336]
13+
14+
**[Full Change Log](https://github.com/mpaperno/WASimCommander/compare/1.3.1.0...1.3.2.0)**
15+
16+
[#25]: https://github.com/mpaperno/WASimCommander/issues/25
17+
[2e4f3cbc]: https://github.com/mpaperno/WASimCommander/commit/2e4f3cbc
18+
[5f586d4f]: https://github.com/mpaperno/WASimCommander/commit/5f586d4f
19+
[1866e336]: https://github.com/mpaperno/WASimCommander/commit/1866e336
20+
21+
---
322
## 1.3.1.0 (29-Nov-2024)
423

524
### WASimModule

build/version.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
$VER_MAJOR = 1
33
$VER_MINOR = 3
4-
$VER_PATCH = 1
4+
$VER_PATCH = 2
55
$VER_BUILD = 0
66
$VER_COMIT = 0
77
$VER_NAME = ""

docs/version.Doxyfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# THIS FILE IS GENERATED BY A SCRIPT, CHANGES WILL NOT PERSIST. EDIT THE CORRESPONDING .in TEMPLATE FILE INSTEAD.
44

55
PROJECT_NAME = "WASimCommander"
6-
PROJECT_NUMBER = v1.3.1.0
7-
PROJECT_BRIEF = "Remote access to the Microsoft Flight Simulator 2020 Gauge API."
6+
PROJECT_NUMBER = v1.3.2.0
7+
PROJECT_BRIEF = "Remote access to the Microsoft Flight Simulator 2020 & 2024 Gauge API."

src/WASimClient_CLI/AssemblyInfo.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ using namespace System::Security::Permissions;
1717

1818
[assembly:AssemblyDescriptionAttribute(L"CLI Wrapper for WASimCommander's general API and the WASimClient class.")];
1919
[assembly:AssemblyCompanyAttribute(L"Maxim Paperno")];
20-
[assembly:AssemblyProductAttribute(L"WASimCommander - Remote access to the Microsoft Flight Simulator 2020 Gauge API.")];
20+
[assembly:AssemblyProductAttribute(L"WASimCommander - Remote access to the Microsoft Flight Simulator 2020 & 2024 Gauge API.")];
2121
[assembly:AssemblyCopyrightAttribute(L"Copyright Maxim Paperno; All rights reserved.")];
2222
[assembly:AssemblyTrademarkAttribute(L"")];
2323
[assembly:AssemblyCultureAttribute(L"")];
2424

25-
[assembly:AssemblyVersionAttribute(L"1.3.1.0")];
26-
[assembly:AssemblyFileVersionAttribute("1.3.1.0")];
27-
[assembly:AssemblyInformationalVersionAttribute("1.3.1.0")];
25+
[assembly:AssemblyVersionAttribute(L"1.3.2.0")];
26+
[assembly:AssemblyFileVersionAttribute("1.3.2.0")];
27+
[assembly:AssemblyInformationalVersionAttribute("1.3.2.0")];
2828

2929
[assembly:ComVisible(false)];

src/WASimModule/WASimModuleProject/WASimCommander-Module/PackageDefinitions/wasimcommander-module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<AssetPackage Version="1.3.1">
2+
<AssetPackage Version="1.3.2">
33
<ItemSettings>
44
<ContentType>MISC</ContentType>
55
<Title>WASimCommander WASM Module</Title>

src/include/wasim_version.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,23 @@ and are available at <http://www.gnu.org/licenses/>.
2828

2929
#define WSMCMND_VER_MAJOR 1
3030
#define WSMCMND_VER_MINOR 3
31-
#define WSMCMND_VER_PATCH 1
31+
#define WSMCMND_VER_PATCH 2
3232
#define WSMCMND_VER_BUILD 0
3333
// Git commit hash (top 8 bytes)
34-
#define WSMCMND_VER_COMIT 0x36E925C4UL
34+
#define WSMCMND_VER_COMIT 0x422864C2UL
3535
/// Version number in 32 bit "binary coded decimal", eg. 0x01230400 = 1.23.4.0
36-
#define WSMCMND_VERSION 0x01030100UL
36+
#define WSMCMND_VERSION 0x01030200UL
3737
/// Possible version suffix, eg "-beta1" (can be blank for release versions)
3838
#define WSMCMND_VER_NAME ""
3939
/// Dotted version string Maj.Min.Pat.Bld, eg. "1.23.4.0"
40-
#define WSMCMND_VERSION_STR "1.3.1.0"
40+
#define WSMCMND_VERSION_STR "1.3.2.0"
4141
/// Dotted version string with possible suffix, eg. "1.23.4.0-beta1"
42-
#define WSMCMND_VERSION_INFO "1.3.1.0"
42+
#define WSMCMND_VERSION_INFO "1.3.2.0"
4343
/// Build date & time in ISO-8601 "Zulu Time" format, UTC
44-
#define WSMCMND_BUILD_DATE "2024-11-28T15:16:43Z"
44+
#define WSMCMND_BUILD_DATE "2025-05-18T07:25:35Z"
4545

4646

4747
#define WSMCMND_PROJECT_URL "https://github.com/mpaperno/WASimCommander"
4848
#define WSMCMND_PROJECT_COPYRIGHT "Copyright Maxim Paperno; All rights reserved."
49-
#define WSMCMND_PROJECT_DESCRIPT "Remote access to the Microsoft Flight Simulator 2020 Gauge API."
49+
#define WSMCMND_PROJECT_DESCRIPT "Remote access to the Microsoft Flight Simulator 2020 & 2024 Gauge API."
5050
#define WSMCMND_PROJECT_LICENSE "WASimCommander API and WASimClient licensed under LGPL v3 or GPL v3. WASimModule and all other code licensed under GPL v3. Full terms are detailed in the README, LICENSE.GPL.txt, and LICENSE.LGPL.txt files which should accompany this distribution and are available at the project's URL."

0 commit comments

Comments
 (0)