Skip to content

Commit cd51879

Browse files
committed
Update CHANGELOG and version.
1 parent a985bec commit cd51879

File tree

5 files changed

+30
-17
lines changed

5 files changed

+30
-17
lines changed

CHANGELOG.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
11
# WASimCommander - Change Log
22

3-
## [next version]
3+
## 1.0.0.8 (2-Aug-2022)
4+
### WASimClient (and dependents)
5+
* Fix possible SimConnect exception (Sim crash) when removing data request subscriptions. Seemed to only happen occasionally and when SimConnect was under load from other clients.
6+
* Also cleans up removing data requests which were never sent to the server (eg. before Client was connected), which previously resulted in warnings from the server that the requests didn't exist.
7+
* Ensure no SimConnect calls run concurrently (also improves request tracking/error reporting).
8+
* Client validates that the configured ID is not zero before connecting to simulator.
9+
* Check/warning of version match with server module is now limited to major version part only.
10+
11+
### WASIMClient_CLI
12+
* Added convenience methods for setting string values in Command and DataRequest structures.
13+
* Added more Command struct constructors.
14+
15+
### General
416
* Added Python example.
517

6-
## 1.0.0.7-beta3 (Jul-12-2022)
18+
---
19+
## 1.0.0.7-beta3 (12-Jul-2022)
720
### WASimClient, WASimClient_CLI, WASimUI
821
* Fixed WASimClient bug introduced in v1.0.0.6 that prevented Client from completing connection to Server on first attempt (but would work on the 2nd).
922

1023
---
11-
## 1.0.0.6-beta2 (Jul-11-2022)
24+
## 1.0.0.6-beta2 (11-Jul-2022)
1225
### WASimModule
1326
* The `SendKey` command can now accept known key event IDs by name (and do the lookup automatically).
1427
* Stopped pre-compiling "Formatted" type calculator strings (for `format_calculator_string()`) since that seems to be broken in MSFS.
@@ -25,5 +38,5 @@
2538
* Display a message when a string-type calculator result returns an empty string (instead of just blank space).
2639

2740
---
28-
## 1.0.0.5-beta1 (Jul-04-2022)
41+
## 1.0.0.5-beta1 (04-Jul-2022)
2942
- Initial release!

build/version.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
$VER_MAJOR = 1
33
$VER_MINOR = 0
44
$VER_PATCH = 0
5-
$VER_BUILD = 7
5+
$VER_BUILD = 8
66
$VER_COMIT = 0
7-
$VER_NAME = "-beta3"
7+
$VER_NAME = "-rc1"
88

99
$PROJECT_NAME = "WASimCommander"
1010
$CLIENT_NAME = "WASimClient"

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.0.0.7-beta3
6+
PROJECT_NUMBER = v1.0.0.8-rc1
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.0.0.7")];
26-
[assembly:AssemblyFileVersionAttribute("1.0.0.7")];
27-
[assembly:AssemblyInformationalVersionAttribute("1.0.0.7-beta3")];
25+
[assembly:AssemblyVersionAttribute(L"1.0.0.8")];
26+
[assembly:AssemblyFileVersionAttribute("1.0.0.8")];
27+
[assembly:AssemblyInformationalVersionAttribute("1.0.0.8-rc1")];
2828

2929
[assembly:ComVisible(false)];

src/include/wasim_version.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ and are available at <http://www.gnu.org/licenses/>.
2929
#define WSMCMND_VER_MAJOR 1
3030
#define WSMCMND_VER_MINOR 0
3131
#define WSMCMND_VER_PATCH 0
32-
#define WSMCMND_VER_BUILD 7
32+
#define WSMCMND_VER_BUILD 8
3333
// Git commit hash (top 8 bytes)
34-
#define WSMCMND_VER_COMIT 0x7D105070UL
34+
#define WSMCMND_VER_COMIT 0xA985BEC5UL
3535
/// Version number in 32 bit "binary coded decimal", eg. 0x01230400 = 1.23.4.0
36-
#define WSMCMND_VERSION 0x01000007UL
36+
#define WSMCMND_VERSION 0x01000008UL
3737
/// Possible version suffix, eg "-beta1" (can be blank for release versions)
38-
#define WSMCMND_VER_NAME "-beta3"
38+
#define WSMCMND_VER_NAME "-rc1"
3939
/// Dotted version string Maj.Min.Pat.Bld, eg. "1.23.4.0"
40-
#define WSMCMND_VERSION_STR "1.0.0.7"
40+
#define WSMCMND_VERSION_STR "1.0.0.8"
4141
/// Dotted version string with possible suffix, eg. "1.23.4.0-beta1"
42-
#define WSMCMND_VERSION_INFO "1.0.0.7-beta3"
42+
#define WSMCMND_VERSION_INFO "1.0.0.8-rc1"
4343
/// Build date & time in ISO-8601 "Zulu Time" format, UTC
44-
#define WSMCMND_BUILD_DATE "2022-07-13T01:22:09Z"
44+
#define WSMCMND_BUILD_DATE "2022-08-02T18:48:03Z"
4545

4646

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

0 commit comments

Comments
 (0)