Skip to content

Commit

Permalink
V1.0.0.85
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-englert committed Jul 24, 2016
1 parent c2b2fab commit dbcd56a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Release notes.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
Other places:
[url:Visual Studio Extension Download|https://visualstudiogallery.msdn.microsoft.com/3b64e04c-e8de-4b97-8358-06c73a97cc68]
[url:Reviews|https://visualstudiogallery.msdn.microsoft.com/3b64e04c-e8de-4b97-8358-06c73a97cc68/view/Reviews]
[url:GitHub|https://github.com/tom-englert/ResXResourceManager/releases]

1.0.0.85:
* Speed up SelectGroupOnGroupHeaderClick.
* Defer loading of resources until really needed to not interfere with solution load time.
* Fix: Preserve comments in WinForms designer resources.
1.0.0.84:
* WI4736: Fix crash if WebRequest.DefaultWebProxy is null.
1.0.0.83:
Expand Down
4 changes: 2 additions & 2 deletions ResXManager.VSIX/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Identifier Id="43b35fe0-1f30-48de-887a-68256474202a">
<Name>ResXManager</Name>
<Author>tom-englert.de</Author>
<Version>1.0.0.84</Version>
<Version>1.0.0.85</Version>
<Description xml:space="preserve">Manage localization of all ResX-Based resources in one place. Shows all resources of a solution and let's you edit the strings and their localizations in a well-arranged data grid.</Description>
<Locale>1033</Locale>
<MoreInfoUrl>http://resxresourcemanager.codeplex.com/</MoreInfoUrl>
Expand Down Expand Up @@ -38,7 +38,7 @@
<Edition>Community</Edition>
</VisualStudio>
</SupportedProducts>
<SupportedFrameworkRuntimeEdition MinVersion="4.5" MaxVersion="4.5" />
<SupportedFrameworkRuntimeEdition MinVersion="4.5.2" MaxVersion="4.6" />
</Identifier>
<References>
<Reference Id="Microsoft.VisualStudio.MPF" MinVersion="10.0">
Expand Down
4 changes: 2 additions & 2 deletions ResXManager/ResXManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
<SupportUrl>https://resxresourcemanager.codeplex.com</SupportUrl>
<ProductName>ResX Resource Manager</ProductName>
<PublisherName>tom-englert.de</PublisherName>
<ApplicationRevision>84</ApplicationRevision>
<ApplicationVersion>1.0.0.84</ApplicationVersion>
<ApplicationRevision>85</ApplicationRevision>
<ApplicationVersion>1.0.0.85</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand Down
2 changes: 1 addition & 1 deletion 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.0.0.84";
public const string Version = "1.0.0.85";
}

0 comments on commit dbcd56a

Please sign in to comment.