Skip to content

Commit d7fadc6

Browse files
committed
To 5.0.0-b1
1 parent f4ae846 commit d7fadc6

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
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).
44

5-
## 5.0.0
5+
## 5.0.0-b1
66
* Core
77
* Target framework updated to .Net 8.
88
* The `Body` object boolean property `alreadyfootfalled` has been renamed to `alreadyfirstfootfalled` for clarity.

Installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "EDDI"
5-
#define MyAppVersion "5.0.0"
5+
#define MyAppVersion "5.0.0-b1"
66
#define MyAppPublisher "Elite Dangerous Community Developers (EDCD)"
77
#define MyAppURL "https://github.com/EDCD/EDDI/"
88
#define MyAppExeName "EDDI.exe"

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,15 @@ When you start EDDI it will bring up a window with a number of tabs. Each tab e
3434

3535
## Using EDDI with VoiceAttack
3636

37+
___EDDI version 4.1.9 and below support VoiceAttack 1 rather than VoiceAttack 2.___
38+
3739
Initial EDDI integration with VoiceAttack is automatic, but there is a lot that you can do to integrate EDDI with your own VoiceAttack scripts. Full details of what you can do with EDDI and VoiceAttack are on the [VoiceAttack EDDI page](https://github.com/EDCD/EDDI/wiki/VoiceAttack-Integration).
3840

3941
## Upgrading EDDI
4042

41-
If you are upgrading from EDDI 1 EDDI it is recommended that you uninstall your existing version of EDDI and remove your %APPDATA%\EDDI directory prior to upgrading to the new one. This ensures that there is a clean installation and reduces the chances of problems occurring.
43+
If you are upgrading from EDDI version 1.X then it is recommended that you uninstall your existing version of EDDI and remove your %APPDATA%\EDDI directory prior to upgrading to the new one. This ensures that there is a clean installation and reduces the chances of problems occurring.
4244

43-
If you are upgrading from another version of EDDI 2 the installer will take care of changes so you just need to run it.
45+
If you are upgrading from EDDI version 2+ then the installer will take care of changes so you just need to run it.
4446

4547
## EDDI Voices
4648

Utilities/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class Constants
99
{
1010
public const string EDDI_NAME = "EDDI";
1111
public const string EDDI_URL_PROTOCOL = "eddi";
12-
public static readonly Version EDDI_VERSION = new( 5, 0, 0 );
12+
public static readonly Version EDDI_VERSION = new( 5, 0, 0, Version.TestPhase.b, 1 );
1313
private const string EDDI_SERVER_URL = "https://github.com/EDCD/EDDI/";
1414
public static readonly string EDDI_SYSTEM_MUTEX_NAME = $"{EDDI_SERVER_URL}/{EDDI_NAME}/{Environment.GetEnvironmentVariable("UserName")}";
1515

0 commit comments

Comments
 (0)