From 4efa4a53fbd27354986eca244e66e267561a9a75 Mon Sep 17 00:00:00 2001 From: Tkael Date: Mon, 22 Jun 2020 16:09:33 -0700 Subject: [PATCH] To version 3.5.3-b5 --- EDDI/ChangeLog.md | 7 +++++++ Installer.iss | 2 +- Utilities/Constants.cs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/EDDI/ChangeLog.md b/EDDI/ChangeLog.md index dbddb6dbc0..c929c49cf8 100644 --- a/EDDI/ChangeLog.md +++ b/EDDI/ChangeLog.md @@ -2,6 +2,13 @@ Full details of the variables available for each noted event, and VoiceAttack integrations, are available in the individual [event pages](https://github.com/EDCD/EDDI/wiki/Events). +### 3.5.3-b5 + * Core + * Updated Rollbar telemetry service to reduce web traffic when idle and to add some additional context from preceeding eddi.log entries. + * Various bug fixes, including fixing a bug that could cause the UI to become de-coupled from the true speech configuration. + * Speech responder + * Updated Cottle speech rendering package to the latest version. + ### 3.5.3-b4 * Core * Implemented new `Asteroid cracked` and `Asteroid prospected` events. diff --git a/Installer.iss b/Installer.iss index e21608c212..d41ddb2853 100644 --- a/Installer.iss +++ b/Installer.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "EDDI" -#define MyAppVersion "3.5.3.b4" +#define MyAppVersion "3.5.3.b5" #define MyAppPublisher "Elite Dangerous Community Developers (EDCD)" #define MyAppURL "https://github.com/EDCD/EDDI/" #define MyAppExeName "EDDI.exe" diff --git a/Utilities/Constants.cs b/Utilities/Constants.cs index 6bc2ef6d95..912cb8b5cf 100644 --- a/Utilities/Constants.cs +++ b/Utilities/Constants.cs @@ -10,7 +10,7 @@ public class Constants { public const string EDDI_NAME = "EDDI"; public const string EDDI_URL_PROTOCOL = "eddi"; - public static Version EDDI_VERSION = new Version(3, 5, 3, Version.TestPhase.b, 4); + public static Version EDDI_VERSION = new Version(3, 5, 3, Version.TestPhase.b, 5); public const string EDDI_SERVER_URL = "https://edcd.github.io/EDDP/"; public static readonly string EDDI_SYSTEM_MUTEX_NAME = $"{EDDI_SERVER_URL}/{EDDI_NAME}/{Environment.GetEnvironmentVariable("UserName")}";