Skip to content

Commit dbcd56a

Browse files
committed
1 parent c2b2fab commit dbcd56a

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

Release notes.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
Other places:
22
[url:Visual Studio Extension Download|https://visualstudiogallery.msdn.microsoft.com/3b64e04c-e8de-4b97-8358-06c73a97cc68]
33
[url:Reviews|https://visualstudiogallery.msdn.microsoft.com/3b64e04c-e8de-4b97-8358-06c73a97cc68/view/Reviews]
4+
[url:GitHub|https://github.com/tom-englert/ResXResourceManager/releases]
45

6+
1.0.0.85:
7+
* Speed up SelectGroupOnGroupHeaderClick.
8+
* Defer loading of resources until really needed to not interfere with solution load time.
9+
* Fix: Preserve comments in WinForms designer resources.
510
1.0.0.84:
611
* WI4736: Fix crash if WebRequest.DefaultWebProxy is null.
712
1.0.0.83:

ResXManager.VSIX/source.extension.vsixmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Identifier Id="43b35fe0-1f30-48de-887a-68256474202a">
44
<Name>ResXManager</Name>
55
<Author>tom-englert.de</Author>
6-
<Version>1.0.0.84</Version>
6+
<Version>1.0.0.85</Version>
77
<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>
88
<Locale>1033</Locale>
99
<MoreInfoUrl>http://resxresourcemanager.codeplex.com/</MoreInfoUrl>
@@ -38,7 +38,7 @@
3838
<Edition>Community</Edition>
3939
</VisualStudio>
4040
</SupportedProducts>
41-
<SupportedFrameworkRuntimeEdition MinVersion="4.5" MaxVersion="4.5" />
41+
<SupportedFrameworkRuntimeEdition MinVersion="4.5.2" MaxVersion="4.6" />
4242
</Identifier>
4343
<References>
4444
<Reference Id="Microsoft.VisualStudio.MPF" MinVersion="10.0">

ResXManager/ResXManager.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
<SupportUrl>https://resxresourcemanager.codeplex.com</SupportUrl>
3636
<ProductName>ResX Resource Manager</ProductName>
3737
<PublisherName>tom-englert.de</PublisherName>
38-
<ApplicationRevision>84</ApplicationRevision>
39-
<ApplicationVersion>1.0.0.84</ApplicationVersion>
38+
<ApplicationRevision>85</ApplicationRevision>
39+
<ApplicationVersion>1.0.0.85</ApplicationVersion>
4040
<UseApplicationTrust>false</UseApplicationTrust>
4141
<PublishWizardCompleted>true</PublishWizardCompleted>
4242
<BootstrapperEnabled>true</BootstrapperEnabled>

Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
internal static class Product
77
{
8-
public const string Version = "1.0.0.84";
8+
public const string Version = "1.0.0.85";
99
}

0 commit comments

Comments
 (0)