diff --git a/Release notes.md b/Release notes.md index a6d39c8a..cfff7a98 100644 --- a/Release notes.md +++ b/Release notes.md @@ -1,4 +1,13 @@ -1.40 +1.41 +- #191: Integration of DeepL translation service +- Fix #272: Allow to specify ranking for each translator. +- Fix #295: Do not treat invariant empty neutral strings as error. +- Improve UX of column selector. +- Fix: empty neutral values should be considered an error if they are not invariant +- Use a password box for credentials in TranslatorConfiguration +- Fix #315, Fix #307: Google/DeepL translate only 1 language at the same time + +1.40 - Provide TS-functions for type-safe formatting. - Visualize translator activity diff --git a/src/ResXManager.VSIX/source.extension.vsixmanifest b/src/ResXManager.VSIX/source.extension.vsixmanifest index e51fbe21..bbe49116 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 9d7f4da4..d96ff6b2 100644 --- a/src/ResXManager/ResXManager.csproj +++ b/src/ResXManager/ResXManager.csproj @@ -30,7 +30,7 @@ ResX Resource Manager tom-englert.de 0 - 1.40.0.0 + 1.41.0.0 false true true diff --git a/src/Trademark.cs b/src/Trademark.cs index cecf843d..cb484a0d 100644 --- a/src/Trademark.cs +++ b/src/Trademark.cs @@ -2,5 +2,5 @@ [assembly: AssemblyCompany("tom-englert.de")] [assembly: AssemblyProduct("ResXManager")] -[assembly: AssemblyCopyright("Copyright © tom-englert.de 2012-2020. Distributed under the MIT License.")] +[assembly: AssemblyCopyright("Copyright (c) .NET Foundation and Contributors.")] [assembly: AssemblyTrademark("")] diff --git a/src/Version.cs b/src/Version.cs index 7f178b49..f9a09755 100644 --- a/src/Version.cs +++ b/src/Version.cs @@ -5,5 +5,5 @@ internal static class Product { - public const string Version = "1.40.0.0"; + public const string Version = "1.41.0.0"; }