Skip to content

Commit

Permalink
Merge pull request #5 from Invoices-Manager/dev_01
Browse files Browse the repository at this point in the history
version 1.4.5.1
  • Loading branch information
Schecher1 authored Mar 24, 2023
2 parents 417fdb3 + fe5106a commit c7973d6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Classes/EnvironmentsVariable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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). <br/>
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) <br/>
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) <br/>
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) <br/>
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) <br/>


## Features:
Expand Down Expand Up @@ -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<br/>
Expand Down
5 changes: 3 additions & 2 deletions Views/LogView.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<LogModel> logs = new List<LogModel>();
Expand All @@ -162,7 +163,7 @@ private void RefreshBoard()
break;
default:
logs = LoggerSystem.GetLogs(Comb_Logs.SelectedItem.ToString());
logs = LoggerSystem.GetLogs(combText);
break;
}
Expand Down

0 comments on commit c7973d6

Please sign in to comment.