Skip to content

Commit

Permalink
1.46
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-englert committed Sep 13, 2020
1 parent 144a671 commit 04a8586
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion Release notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
1.45
1.46
- Fix #355: Grouping view: Group headers scroll horizontally with the content
- Fix #356: Sorting of columns does not work in grouped view

1.45
- Fix #354: Crash of devenv.exe when opening ResX window (via update DGX)

1.44
Expand Down
4 changes: 2 additions & 2 deletions src/ResXManager.VSIX/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="43b35fe0-1f30-48de-887a-68256474202a" Version="1.45.0.0" Language="en-US" Publisher="tom-englert.de" />
<Identity Id="43b35fe0-1f30-48de-887a-68256474202a" Version="1.46.0.0" Language="en-US" Publisher="tom-englert.de" />
<DisplayName>ResXManager</DisplayName>
<Description xml:space="preserve">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.</Description>
<MoreInfo>https://github.com/dotnet/ResXResourceManager</MoreInfo>
Expand All @@ -10,7 +10,7 @@
<ReleaseNotes>https://github.com/dotnet/ResXResourceManager/blob/master/Release%20notes.md</ReleaseNotes>
<Icon>96x96.png</Icon>
<PreviewImage>96x96.png</PreviewImage>
<Tags>WPF, WinForms, resx, resources, Editor, localization, Productivity, Visual Studio, internationalization, string, resource</Tags>
<Tags>WPF, WinForms, resx, resources, Editor, localization, Productivity, Visual Studio, internationalization, string, resource, l10n, i18n</Tags>
</Metadata>
<Installation InstalledByMsi="false">
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Pro" />
Expand Down
6 changes: 3 additions & 3 deletions src/ResXManager/ResXManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<ProductName>ResX Resource Manager</ProductName>
<PublisherName>tom-englert.de</PublisherName>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.45.0.0</ApplicationVersion>
<ApplicationVersion>1.46.0.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand Down Expand Up @@ -178,9 +178,9 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
<BootstrapperPackage Include=".NETFramework,Version=v4.6.2">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.5.2 %28x86 and x64%29</ProductName>
<ProductName>Microsoft .NET Framework 4.6.2 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
Expand Down
2 changes: 1 addition & 1 deletion src/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

internal static class Product
{
public const string Version = "1.45.0.0";
public const string Version = "1.46.0.0";
}

0 comments on commit 04a8586

Please sign in to comment.