Skip to content

Commit ef16593

Browse files
committed
v1.23
1 parent f09bc7c commit ef16593

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ Features that have a checkmark are complete and available for download in the
1313
These are the changes to each version that has been released
1414
on the official Visual Studio extension gallery.
1515

16+
## 1.23
17+
18+
- [x] Fix for possible crash when opening files not as part of a project.
19+
1620
## 1.22
1721

1822
- [x] Update minimum supported version of VS to 17.10

src/source.extension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ internal sealed partial class Vsix
1111
public const string Name = "String Resource Visualizer";
1212
public const string Description = @"View the text of string resources (.resx) inline when they're used in code.";
1313
public const string Language = "en-US";
14-
public const string Version = "1.22";
14+
public const string Version = "1.23";
1515
public const string Author = "Matt Lacey";
1616
public const string Tags = "Strings, resources, localization, resx, I18N, ILocalizer";
1717
}

src/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="StringResourceVisualizer.a05f89b1-98f8-4b37-8f84-4fdebc44aa25" Version="1.22" Language="en-US" Publisher="Matt Lacey" />
4+
<Identity Id="StringResourceVisualizer.a05f89b1-98f8-4b37-8f84-4fdebc44aa25" Version="1.23" Language="en-US" Publisher="Matt Lacey" />
55
<DisplayName>String Resource Visualizer</DisplayName>
66
<Description xml:space="preserve">View the text of string resources (.resx) inline when they're used in code.</Description>
77
<MoreInfo>https://github.com/mrlacey/StringResourceVisualizer</MoreInfo>

0 commit comments

Comments
 (0)