Skip to content

Commit e05b4a8

Browse files
committed
V 1.56
1 parent 883c811 commit e05b4a8

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Release notes.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
1.55
1+
1.56
2+
- Add Arabic question mark to NormalizePunctuation method.
3+
- Fix #424: Broken resource files may crash application on launch
4+
- Improve DGX filtering experience. Ctrl+F jumps to filter, arrow down jumps back to grid. Fixes #420
5+
6+
1.55
27
- Fix #418: Solution-level RESX files throw FileNotFoundException
38
- Fix #290: Can't make T4 template work with .NET Core project
49

src/Directory.Build.props

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
<Project>
33
<PropertyGroup>
4-
<Version>1.55.0.0</Version>
4+
<Version>1.56.0.0</Version>
55
<Company>tom-englert.de</Company>
66
<Product>ResXManager</Product>
77
<Copyright>Copyright (c) .NET Foundation and Contributors.</Copyright>

src/ResXManager.VSIX/MyToolWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ private static bool TryGetKeyForPrivateProcessing(ref System.Windows.Forms.Messa
445445
return true;
446446
}
447447

448-
if ((m.WParam == (IntPtr)0x46 || m.WParam == (IntPtr)0x66) && (Keyboard.Modifiers & ModifierKeys.Control) != 0)
448+
if ((m.WParam == (IntPtr)0x46 || m.WParam == (IntPtr)0x66) && (Keyboard.Modifiers == ModifierKeys.Control))
449449
{
450450
// process Ctrl+F locally, we do our own search
451451
key = Key.F;

0 commit comments

Comments
 (0)