Skip to content

Commit

Permalink
Bump the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Oct 1, 2023
1 parent 083a5de commit 2798591
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion JL.Core/Utilities/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace JL.Core.Utilities;

public static class Utils
{
public static readonly Version JLVersion = new(1, 22, 3);
public static readonly Version JLVersion = new(1, 22, 4);
public static readonly string ApplicationPath = AppContext.BaseDirectory;
public static readonly string ResourcesPath = Path.Join(AppContext.BaseDirectory, "Resources");
public static readonly string ConfigPath = Path.Join(AppContext.BaseDirectory, "Config");
Expand Down
3 changes: 1 addition & 2 deletions JL.Windows/GUI/PopupWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -444,8 +444,7 @@ private void DisplayResults(bool generateAllResults, string? text = null)
}
}

public StackPanel MakeResultStackPanel(LookupResult result,
int index, int resultsCount)
public StackPanel MakeResultStackPanel(LookupResult result, int index, int resultsCount)
{
// top
WrapPanel top = new() { Tag = index };
Expand Down

0 comments on commit 2798591

Please sign in to comment.