diff --git a/Classes/EnvironmentsVariable.cs b/Classes/EnvironmentsVariable.cs index 6546061..717aca6 100644 --- a/Classes/EnvironmentsVariable.cs +++ b/Classes/EnvironmentsVariable.cs @@ -26,7 +26,7 @@ public class EnvironmentsVariable public static string UILanguage = "English"; public static string[] PossibleUILanguages = { "English", "German" }; - public const string PROGRAM_VERSION = "1.4.5.0"; + public const string PROGRAM_VERSION = "1.4.5.1"; public const string PROGRAM_LICENSE = "License: Open source"; // Placeholder public static string ConfigVersion; public const string PROGRAM_SUPPORTEDFORMAT = ".pdf"; diff --git a/README.md b/README.md index e3427ef..63fee95 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ It's simple, there are enough ways to filter your documents. ## How to Download: Go to the "Releases" and download any version. (for security the latest one).
-Or [press here](https://github.com/Invoices-Manager/Invoices-Manager-Windows/releases/download/InvoicesManager-Vers-1.4.5.0/InvoicesManager_WindowsX86.zip) to download if you want the latest one (normal)
-Or [press here](https://github.com/Invoices-Manager/Invoices-Manager-Windows/releases/download/InvoicesManager-Vers-1.4.5.0/InvoicesManager_WindowsX86_Standalone.zip) to download if you want the latest one (standalone)
+Or [press here](https://github.com/Invoices-Manager/Invoices-Manager-Windows/releases/download/InvoicesManager-Vers-1.4.5.1/InvoicesManager_WindowsX86.zip) to download if you want the latest one (normal)
+Or [press here](https://github.com/Invoices-Manager/Invoices-Manager-Windows/releases/download/InvoicesManager-Vers-1.4.5.1/InvoicesManager_WindowsX86_Standalone.zip) to download if you want the latest one (standalone)
## Features: @@ -69,6 +69,9 @@ Or [press here](https://github.com/Invoices-Manager/Invoices-Manager-Windows/rel ### Z = Minor version (small updates) ### W = Revision version (bug fixes) +## v1.4.5.1 (HotFix for v1.4.5.0) +- The log manager had an error, when you selected a log file nothing happened + ## v1.4.5.0 - Add a Log Manager: -You can open the log folder
diff --git a/Views/LogView.xaml.cs b/Views/LogView.xaml.cs index 9fe6660..ea14ccf 100644 --- a/Views/LogView.xaml.cs +++ b/Views/LogView.xaml.cs @@ -138,7 +138,8 @@ private void RefreshBoard() //TODO: IMPROVE Loading time int index = Comb_Logs.SelectedIndex; - + string combText = Comb_Logs.SelectedItem.ToString() ?? ""; + Task.Run(() => { List logs = new List(); @@ -162,7 +163,7 @@ private void RefreshBoard() break; default: - logs = LoggerSystem.GetLogs(Comb_Logs.SelectedItem.ToString()); + logs = LoggerSystem.GetLogs(combText); break; }