From 0f09ca04ae86b5b934ec40f8703df214103f997b Mon Sep 17 00:00:00 2001 From: Dale Ghent Date: Sat, 26 Nov 2022 15:52:14 -0500 Subject: [PATCH] Release 2.1.0.0 --- CHANGELOG.md | 8 ++++++++ Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99d253e..02d4f65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Ground Station +## 2.1.0.0 - 2022-11-26 +* Pushover client library replaced with internal one (Credit: Stefan Berg) +* Replacing the internal Pushover client allows the implementation of Emergency priority messages for Pushover: + - Emergency priority messages are the most critical class of Pushover message + - Emergency priority messages will trigger an alert in the Pushover client, and this alert will repeat until acknowledged (not just viewed!) by the user + - The repeat interval and maximum repeat time are adjustable settings. The minimum is 30 seconds and the maximum is 86400 seconds (24 hours). The default in Ground Station is 60 and 600 seconds respectively +* Fixed: Clicking on URLs in the Options page didn not work because .NET7 requires `UseShellExec=true` + ## 2.0.0.1 - 2022-11-13 * Ported Test-to-speech to support .NET 7 * Compiler warning cleanups diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 6e873e8..145620e 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -6,8 +6,8 @@ // [MANDATORY] The assembly versioning //Should be incremented for each new release build of a plugin -[assembly: AssemblyVersion("2.0.0.1")] -[assembly: AssemblyFileVersion("2.0.0.1")] +[assembly: AssemblyVersion("2.1.0.0")] +[assembly: AssemblyFileVersion("2.1.0.0")] // [MANDATORY] The name of your plugin [assembly: AssemblyTitle("Ground Station")]