Skip to content

Commit 70f5662

Browse files
committed
Bump version to 1.1.1.0; Update CHANGELOG.
1 parent 16ce8c0 commit 70f5662

File tree

5 files changed

+29
-11
lines changed

5 files changed

+29
-11
lines changed

CHANGELOG.md

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

3+
## 1.1.1.0 (31-Jan-2023)
4+
Patch update for MSFS SU11/SDK 0.20.5.0.
5+
6+
### WASimModule
7+
* Added 73 Key Event lookup names from latest MSFS SDK v0.20.5.0.
8+
* Added 55 Key Event lookup name aliases for published SimConnect Event IDs for which the KEY_* macro names do not match (result of my MSFS SDK Docs import project).
9+
* KEY_PROP_FORCE_BETA_* Key Event IDs (from last update) were updated again to reflect SDK v0.20.5.0 values.
10+
* Release version is now built using `clang:-O3` level optimization since MSFS memory corruption issue confirmed fixed.
11+
12+
### WASimClient and WASimClient_CLI
13+
* Improved detection of configuration file parameter (`config`) in class constructor being a file or directory, which also validates existence.
14+
15+
### WASimUI
16+
* Improved visual separation of forms by function type (Variables, Lookup, etc).
17+
* Added/improved some of the tool-tip documentation notes for each core function (hover on section title).
18+
* Fixed "About" dialog box transparency issue.
19+
20+
---
321
## 1.1.0.0 (2-Nov-2022)
422
Updates for MSFS 2020 SU10 changes and new event trigger API for sending multiple values.
523

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 = 1
4-
$VER_PATCH = 0
4+
$VER_PATCH = 1
55
$VER_BUILD = 0
66
$VER_COMIT = 0
77
$VER_NAME = ""

docs/version.Doxyfile

Lines changed: 1 addition & 1 deletion
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.1.0.0
6+
PROJECT_NUMBER = v1.1.1.0
77
PROJECT_BRIEF = "Remote access to the Microsoft Flight Simulator 2020 Gauge API."

src/WASimClient_CLI/AssemblyInfo.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ using namespace System::Security::Permissions;
2222
[assembly:AssemblyTrademarkAttribute(L"")];
2323
[assembly:AssemblyCultureAttribute(L"")];
2424

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

2929
[assembly:ComVisible(false)];

src/include/wasim_version.h

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

2929
#define WSMCMND_VER_MAJOR 1
3030
#define WSMCMND_VER_MINOR 1
31-
#define WSMCMND_VER_PATCH 0
31+
#define WSMCMND_VER_PATCH 1
3232
#define WSMCMND_VER_BUILD 0
3333
// Git commit hash (top 8 bytes)
34-
#define WSMCMND_VER_COMIT 0x88757FD0UL
34+
#define WSMCMND_VER_COMIT 0x16CE8C0AUL
3535
/// Version number in 32 bit "binary coded decimal", eg. 0x01230400 = 1.23.4.0
36-
#define WSMCMND_VERSION 0x01010000UL
36+
#define WSMCMND_VERSION 0x01010100UL
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.1.0.0"
40+
#define WSMCMND_VERSION_STR "1.1.1.0"
4141
/// Dotted version string with possible suffix, eg. "1.23.4.0-beta1"
42-
#define WSMCMND_VERSION_INFO "1.1.0.0"
42+
#define WSMCMND_VERSION_INFO "1.1.1.0"
4343
/// Build date & time in ISO-8601 "Zulu Time" format, UTC
44-
#define WSMCMND_BUILD_DATE "2022-10-14T20:42:42Z"
44+
#define WSMCMND_BUILD_DATE "2023-01-31T01:37:14Z"
4545

4646

4747
#define WSMCMND_PROJECT_URL "https://github.com/mpaperno/WASimCommander"

0 commit comments

Comments
 (0)