From befaf688d38a82a257bab5c4b3fa9545901d1f8a Mon Sep 17 00:00:00 2001 From: Kinkojiro Date: Mon, 27 May 2024 17:37:39 +0100 Subject: [PATCH] Improved CEM Help Add info ref CEM Full --- EGMSettings/EGMSettings.csproj | 2 +- EGMSettings/EGMSettings.xaml.cs | 6 +++--- EGMSettings/Properties/AssemblyInfo.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/EGMSettings/EGMSettings.csproj b/EGMSettings/EGMSettings.csproj index 2561d75..345bcc0 100644 --- a/EGMSettings/EGMSettings.csproj +++ b/EGMSettings/EGMSettings.csproj @@ -27,7 +27,7 @@ false true 0 - 3.0.0.%2a + 3.0.5.0 false true true diff --git a/EGMSettings/EGMSettings.xaml.cs b/EGMSettings/EGMSettings.xaml.cs index 7af8995..8ee3175 100644 --- a/EGMSettings/EGMSettings.xaml.cs +++ b/EGMSettings/EGMSettings.xaml.cs @@ -23,7 +23,7 @@ namespace EGMSettings public partial class SettingsPanel : NotifyPropertyChangedWindowBase { #region SystemVars - public const string currentBuild = "v3.0.4"; + public const string currentBuild = "v3.0.5"; public MEGame mode = MEGame.ME3; public string egmPath = null; public string[] egmMetaData; @@ -284,10 +284,10 @@ public enum MEGame private const string OmegaDLC_TXT = "Set this to determine when you get an email from Aria inviting you to meet her on the Citadel at Dock 42.\n\nIn addition you must have met with her in the Purgatory nightclub on the Citadel at least once.\n\nUnlocks Dock 42 on the Citadel."; private int _CitadelDLC_choice = 0; public int CitadelDLC_choice { get => _CitadelDLC_choice; set { SetProperty(ref _CitadelDLC_choice, value); needsSave = true; } } - private ObservableCollection _citadelDLC_cln = new ObservableCollection() { "Post Coup (default)", "Post Coup + 2 missions", "Post Rannoch", "Post Thessia", "Post Horizon", "Disable DLC" }; + private ObservableCollection _citadelDLC_cln = new ObservableCollection() { "Post Coup (default)", "Post Coup + 2 missions", "Post Rannoch", "Post Thessia", "Post Horizon", "Disable DLC (or CEM Full)" }; public ObservableCollection CitadelDLC_cln { get => _citadelDLC_cln; } private const string CitadelDLC_TITLE = "Citadel DLC"; - private const string CitadelDLC_TXT = "Set this to determine when you get an email Admiral Hackett about shore leave.\n\nUnlocks Citadel: Shore Leave."; + private const string CitadelDLC_TXT = "Set this to determine when you get an email Admiral Hackett about shore leave.\n\nUnlocks Citadel: Shore Leave.\n\nUsers of the full version of Citadel Epilogue Mod (CEM) should set it this to Disable DLC."; private int _prtyTuchanka_choice = 0; public int PrtyTuchanka_choice { get => _prtyTuchanka_choice; set { SetProperty(ref _prtyTuchanka_choice, value); needsSave = true; } } private ObservableCollection _prtyTuchanka_cln = new ObservableCollection() { "First mission completion (default)", "Both missions completed", "Only Tuchanka: Rescue", "Only Attican Traverse: Krogan Team", "Press button in War Room" }; diff --git a/EGMSettings/Properties/AssemblyInfo.cs b/EGMSettings/Properties/AssemblyInfo.cs index 78d9346..1a799e7 100644 --- a/EGMSettings/Properties/AssemblyInfo.cs +++ b/EGMSettings/Properties/AssemblyInfo.cs @@ -51,5 +51,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.0.4.0")] -[assembly: AssemblyFileVersion("3.0.4.0")] +[assembly: AssemblyVersion("3.0.5.0")] +[assembly: AssemblyFileVersion("3.0.5.0")]