diff --git a/Release notes.md b/Release notes.md index 53b7dd78..4063ebc4 100644 --- a/Release notes.md +++ b/Release notes.md @@ -1,4 +1,8 @@ -1.26 +1.27 +- Fix #184: double-check command parameters +- Fix #185: broken translator url + +1.26 - Fix #180: Improve Copy/Paste UX. - Fix #181: Revert skipping small words in the key - Fix #182: Improve UX when using the entity FilterText: Auto-escape backslashes if Regex is not valid. diff --git a/ResXManager.VSIX/source.extension.vsixmanifest b/ResXManager.VSIX/source.extension.vsixmanifest index 3d81cfbd..eb1ed79a 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 4606dbe3..4031e409 100644 --- a/ResXManager/ResXManager.csproj +++ b/ResXManager/ResXManager.csproj @@ -38,7 +38,7 @@ ResX Resource Manager tom-englert.de 0 - 1.26.0.0 + 1.27.0.0 false true true diff --git a/Version.cs b/Version.cs index 5ac54f3c..8422f21e 100644 --- a/Version.cs +++ b/Version.cs @@ -5,5 +5,5 @@ internal static class Product { - public const string Version = "1.26.0.0"; + public const string Version = "1.27.0.0"; }