From cfa54ba44688bb28159f7e79c50b8a17549f47ad Mon Sep 17 00:00:00 2001 From: Tkael Date: Wed, 2 Jun 2021 23:38:04 -0700 Subject: [PATCH] To version 4.0.0 --- EDDI/ChangeLog.md | 4 ++++ Installer.iss | 2 +- Utilities/Constants.cs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/EDDI/ChangeLog.md b/EDDI/ChangeLog.md index b2df54463e..1b71de397c 100644 --- a/EDDI/ChangeLog.md +++ b/EDDI/ChangeLog.md @@ -2,6 +2,10 @@ 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.0.0 + * Core + * Promote 4.0.0-rc1 to final + ### 4.0.0-rc1 * Inara Responder * Incorporated Inara API updates for Odyssey (except suit loadouts will be implemented later) diff --git a/Installer.iss b/Installer.iss index 51415aade8..e961917fca 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.0-rc1" +#define MyAppVersion "4.0.0" #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 6039e1e3d0..4146fdedf9 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(4, 0, 0, Version.TestPhase.rc, 1); + public static Version EDDI_VERSION = new Version(4, 0, 0, Version.TestPhase.final, 0); 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")}";