diff --git a/Core/Other/Settings/Dialogs/DialogSettingsManage.cs b/Core/Other/Settings/Dialogs/DialogSettingsManage.cs index 7b4fc700..24169154 100644 --- a/Core/Other/Settings/Dialogs/DialogSettingsManage.cs +++ b/Core/Other/Settings/Dialogs/DialogSettingsManage.cs @@ -33,10 +33,10 @@ private bool SelectedItemsForceRestart{ private readonly PluginManager plugins; private readonly Dictionary<CheckBox, ProfileManager.Items> checkBoxMap = new Dictionary<CheckBox, ProfileManager.Items>(4); + private readonly bool openImportImmediately; private State currentState; private ProfileManager importManager; - private bool openImportImmediately; private bool requestedRestartFromConfig; private ProfileManager.Items _selectedItems = ProfileManager.Items.None; diff --git a/Program.cs b/Program.cs index 8b9a9e2f..80f7a732 100644 --- a/Program.cs +++ b/Program.cs @@ -20,7 +20,7 @@ static class Program{ public const string BrandName = "TweetDuck"; public const string Website = "https://tweetduck.chylex.com"; - public const string VersionTag = "1.17"; + public const string VersionTag = "1.17.1"; public static readonly string ProgramPath = AppDomain.CurrentDomain.BaseDirectory; public static readonly bool IsPortable = File.Exists(Path.Combine(ProgramPath, "makeportable")); diff --git a/video/Program.cs b/video/Program.cs index e1e44faf..0dbff2b9 100644 --- a/video/Program.cs +++ b/video/Program.cs @@ -5,7 +5,7 @@ namespace TweetDuck.Video{ static class Program{ - internal const string Version = "1.3"; + internal const string Version = "1.4"; // referenced in VideoPlayer // set by task manager -- public const int CODE_PROCESS_KILLED = 1;