Skip to content

Commit f1ce756

Browse files
committed
1 parent 39a4a92 commit f1ce756

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

Release notes.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
[url:Reviews|https://visualstudiogallery.msdn.microsoft.com/3b64e04c-e8de-4b97-8358-06c73a97cc68/view/Reviews]
44
[url:GitHub|https://github.com/tom-englert/ResXResourceManager/releases]
55

6+
1.0.0.86:
7+
* WI4723: Background saving / on-demand saving. (Configurable via options tab)
8+
* WI4740: Improved loading performance.
9+
* WI4741: Show less columns to improve scrolling performance.
10+
* WI4742: Remember size and position of window.
11+
* WI4743: Switching tabs loses sort and scroll info
12+
* WI4744: Show also language codes in the column headers.
613
1.0.0.85:
714
* Speed up SelectGroupOnGroupHeaderClick.
815
* Defer loading of resources until really needed to not interfere with solution load time.

ResXManager.VSIX/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
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.85</Version>
6+
<Version>1.0.0.86</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>

ResXManager.View/Visuals/ShellViewModel.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
[VisualCompositionExport(RegionId.Shell)]
1717
internal class ShellViewModel : ObservableObject
1818
{
19+
[SuppressMessage("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
1920
private readonly PerformanceTracer _performanceTracer;
2021
private readonly DispatcherThrottle _updateThrottle;
2122
private bool _isLoading;

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>85</ApplicationRevision>
39-
<ApplicationVersion>1.0.0.85</ApplicationVersion>
38+
<ApplicationRevision>86</ApplicationRevision>
39+
<ApplicationVersion>1.0.0.86</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.85";
8+
public const string Version = "1.0.0.86";
99
}

0 commit comments

Comments
 (0)