diff --git a/Release notes.md b/Release notes.md index 4d2606e0..880a5395 100644 --- a/Release notes.md +++ b/Release notes.md @@ -1,4 +1,9 @@ -1.22 +1.23 +- Fix #144: Avoid usage of file info to not fail on long file names according to provided stack trace. +- Fix #148: Improve UX, delete is only enabled if all selected cells can be cleared. +- Fix #152: Workaround for VB special 'My' folder + +1.22 - Fix #142: Sorting in UI is not culture aware - Fix #136: Add text only (csv) export/import feature - Fix #135: MoveToResource patterns for aspx - fix existing pattern and add alternatives. diff --git a/ResXManager.VSIX/source.extension.vsixmanifest b/ResXManager.VSIX/source.extension.vsixmanifest index c4713d96..aed82c5a 100644 --- a/ResXManager.VSIX/source.extension.vsixmanifest +++ b/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/tom-englert/ResXResourceManager diff --git a/ResXManager/ResXManager.csproj b/ResXManager/ResXManager.csproj index 8db6f788..9e6608e0 100644 --- a/ResXManager/ResXManager.csproj +++ b/ResXManager/ResXManager.csproj @@ -36,7 +36,7 @@ ResX Resource Manager tom-englert.de 0 - 1.22.0.0 + 1.23.0.0 false true true diff --git a/Version.cs b/Version.cs index 4311a68c..d9bf3fc6 100644 --- a/Version.cs +++ b/Version.cs @@ -5,5 +5,5 @@ internal static class Product { - public const string Version = "1.22.0.0"; + public const string Version = "1.23.0.0"; }