From b230fae9ecffd3730e6d7ac996a3d4398073986a Mon Sep 17 00:00:00 2001 From: T'kael Date: Sun, 23 Jun 2024 20:55:18 -0700 Subject: [PATCH] To version 4.1.0-a1 --- ChangeLog.md | 3 +++ Installer.iss | 2 +- Utilities/Constants.cs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 3af2de52f8..1c9c0eaa49 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,6 +2,9 @@ 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). +## 4.1.0-a1 + + ## 4.0.4 * Core * Further fixes for `Loadout` parsing exceptions that appear to have been impacting fuel level updates from the Status Monitor. diff --git a/Installer.iss b/Installer.iss index 383ece89b3..a21fc5015c 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 "4.0.4" +#define MyAppVersion "4.1.0-a1" #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 00bc01fd6d..bd8ce38840 100644 --- a/Utilities/Constants.cs +++ b/Utilities/Constants.cs @@ -9,7 +9,7 @@ public class Constants { public const string EDDI_NAME = "EDDI"; public const string EDDI_URL_PROTOCOL = "eddi"; - public static Version EDDI_VERSION = new Version(4, 0, 4); + public static Version EDDI_VERSION = new Version(4, 1, 0, Version.TestPhase.a, 1); 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")}";