Skip to content

Commit

Permalink
Bump version to 1.1.1.0; Update CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpaperno committed Jan 31, 2023
1 parent 16ce8c0 commit 70f5662
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 11 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# WASimCommander - Change Log

## 1.1.1.0 (31-Jan-2023)
Patch update for MSFS SU11/SDK 0.20.5.0.

### WASimModule
* Added 73 Key Event lookup names from latest MSFS SDK v0.20.5.0.
* 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).
* KEY_PROP_FORCE_BETA_* Key Event IDs (from last update) were updated again to reflect SDK v0.20.5.0 values.
* Release version is now built using `clang:-O3` level optimization since MSFS memory corruption issue confirmed fixed.

### WASimClient and WASimClient_CLI
* Improved detection of configuration file parameter (`config`) in class constructor being a file or directory, which also validates existence.

### WASimUI
* Improved visual separation of forms by function type (Variables, Lookup, etc).
* Added/improved some of the tool-tip documentation notes for each core function (hover on section title).
* Fixed "About" dialog box transparency issue.

---
## 1.1.0.0 (2-Nov-2022)
Updates for MSFS 2020 SU10 changes and new event trigger API for sending multiple values.

Expand Down
2 changes: 1 addition & 1 deletion build/version.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

$VER_MAJOR = 1
$VER_MINOR = 1
$VER_PATCH = 0
$VER_PATCH = 1
$VER_BUILD = 0
$VER_COMIT = 0
$VER_NAME = ""
Expand Down
2 changes: 1 addition & 1 deletion docs/version.Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# THIS FILE IS GENERATED BY A SCRIPT, CHANGES WILL NOT PERSIST. EDIT THE CORRESPONDING .in TEMPLATE FILE INSTEAD.

PROJECT_NAME = "WASimCommander"
PROJECT_NUMBER = v1.1.0.0
PROJECT_NUMBER = v1.1.1.0
PROJECT_BRIEF = "Remote access to the Microsoft Flight Simulator 2020 Gauge API."
6 changes: 3 additions & 3 deletions src/WASimClient_CLI/AssemblyInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ using namespace System::Security::Permissions;
[assembly:AssemblyTrademarkAttribute(L"")];
[assembly:AssemblyCultureAttribute(L"")];

[assembly:AssemblyVersionAttribute(L"1.1.0.0")];
[assembly:AssemblyFileVersionAttribute("1.1.0.0")];
[assembly:AssemblyInformationalVersionAttribute("1.1.0.0")];
[assembly:AssemblyVersionAttribute(L"1.1.1.0")];
[assembly:AssemblyFileVersionAttribute("1.1.1.0")];
[assembly:AssemblyInformationalVersionAttribute("1.1.1.0")];

[assembly:ComVisible(false)];
12 changes: 6 additions & 6 deletions src/include/wasim_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@ and are available at <http://www.gnu.org/licenses/>.

#define WSMCMND_VER_MAJOR 1
#define WSMCMND_VER_MINOR 1
#define WSMCMND_VER_PATCH 0
#define WSMCMND_VER_PATCH 1
#define WSMCMND_VER_BUILD 0
// Git commit hash (top 8 bytes)
#define WSMCMND_VER_COMIT 0x88757FD0UL
#define WSMCMND_VER_COMIT 0x16CE8C0AUL
/// Version number in 32 bit "binary coded decimal", eg. 0x01230400 = 1.23.4.0
#define WSMCMND_VERSION 0x01010000UL
#define WSMCMND_VERSION 0x01010100UL
/// Possible version suffix, eg "-beta1" (can be blank for release versions)
#define WSMCMND_VER_NAME ""
/// Dotted version string Maj.Min.Pat.Bld, eg. "1.23.4.0"
#define WSMCMND_VERSION_STR "1.1.0.0"
#define WSMCMND_VERSION_STR "1.1.1.0"
/// Dotted version string with possible suffix, eg. "1.23.4.0-beta1"
#define WSMCMND_VERSION_INFO "1.1.0.0"
#define WSMCMND_VERSION_INFO "1.1.1.0"
/// Build date & time in ISO-8601 "Zulu Time" format, UTC
#define WSMCMND_BUILD_DATE "2022-10-14T20:42:42Z"
#define WSMCMND_BUILD_DATE "2023-01-31T01:37:14Z"


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

0 comments on commit 70f5662

Please sign in to comment.