diff --git a/Release notes.md b/Release notes.md index 26510585..8afd65df 100644 --- a/Release notes.md +++ b/Release notes.md @@ -1,4 +1,9 @@ -1.43 +1.44 +- Fix #345: Donate button layout +- Fix #352: Exception when loading .resw resources in VS extension. +- Fix #348: Auto-focus on Last Marked Row when crossing out the search pattern + +1.43 - #341: Improve performance when editing large amounts of texts - Show error message when loading of resx file fails - Improve UI performance by using column-virtualization in DataGrid diff --git a/src/ResXManager.VSIX/source.extension.vsixmanifest b/src/ResXManager.VSIX/source.extension.vsixmanifest index c0e079ce..7e6a01d5 100644 --- a/src/ResXManager.VSIX/source.extension.vsixmanifest +++ b/src/ResXManager.VSIX/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + ResXManager The most popular tool to localize and manage all kind of applications with resx-based resources. Shows all resources of a solution and let's you edit the strings and their localizations in a well-arranged data grid. https://github.com/dotnet/ResXResourceManager diff --git a/src/ResXManager/ResXManager.csproj b/src/ResXManager/ResXManager.csproj index fc9f4738..fabc08d2 100644 --- a/src/ResXManager/ResXManager.csproj +++ b/src/ResXManager/ResXManager.csproj @@ -32,7 +32,7 @@ ResX Resource Manager tom-englert.de 0 - 1.43.0.0 + 1.44.0.0 false true true diff --git a/src/Version.cs b/src/Version.cs index b33e348d..3ba93ff3 100644 --- a/src/Version.cs +++ b/src/Version.cs @@ -5,5 +5,5 @@ internal static class Product { - public const string Version = "1.43.0.0"; + public const string Version = "1.44.0.0"; }