Skip to content

Commit 168c67e

Browse files
committed
version 1.2.4.0
1 parent 461b4a9 commit 168c67e

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Packaging/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Identity
1111
Name="49543SystemTrayMenu.SystemTrayMenu"
1212
Publisher="CN=5884501C-92ED-45DE-9508-9D987C314243"
13-
Version="1.2.3.0" />
13+
Version="1.2.4.0" />
1414

1515
<Properties>
1616
<DisplayName>SystemTrayMenu</DisplayName>

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@
3939
// You can specify all the values or you can default the Build and Revision Numbers
4040
// by using the '*' as shown below:
4141
// [assembly: AssemblyVersion("1.0.*")]
42-
[assembly: AssemblyVersion("1.2.3.9")]
43-
[assembly: AssemblyFileVersion("1.2.3.9")]
42+
[assembly: AssemblyVersion("1.2.4.0")]
43+
[assembly: AssemblyFileVersion("1.2.4.0")]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ Thanks for ideas, reporting issues and contributing!
235235
#285 #286 [dao-net](https://github.com/dao-net),
236236
#288 William P.,
237237
#294 #295 #296 Stefan Mahrer,
238-
#225 #297 #299 [chip33](https://github.com/chip33),
238+
#225 #297 #299 #317 [chip33](https://github.com/chip33),
239239
#298 [phanirithvij](https://github.com/phanirithvij),
240240
#306 [wini2](https://github.com/wini2),
241241

UserInterface/AppContextMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ static void About_Click(object sender, EventArgs e)
114114
aboutBox.AppMoreInfo += "#235 #242 243 #247, #271 Tom, #237 Torsten S., #240 video Patrick, #244 Gunter D., #246 MACE4GITHUB, #259 #310 vanjac, ";
115115
aboutBox.AppMoreInfo += "#262 terencemcdonnell, #269 petersnows25, #272 Peter M., #273 #274 ParasiteDelta, #275 #276 #278 donaldaken, ";
116116
aboutBox.AppMoreInfo += "#277 Jan S., #282 akuznets, #283 #284 #289 RuSieg, #285 #286 dao-net, #288 William P., #294 #295 #296 Stefan Mahrer, ";
117-
aboutBox.AppMoreInfo += "#225 #297 #299 chip33, #298 phanirithvij, #306 wini2" + Environment.NewLine;
117+
aboutBox.AppMoreInfo += "#225 #297 #299 #317 chip33, #298 phanirithvij, #306 wini2" + Environment.NewLine;
118118
aboutBox.AppMoreInfo += @"
119119
Sponsors - Thank you!
120120
------------------

UserInterface/HotkeyTextboxControl/HotkeyControl.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ public static string GetKeyName(Keys givenKey)
388388
if (NativeMethods.User32GetKeyNameText(numpad << 16, keyName, 100) > 0)
389389
{
390390
keyString = keyName.ToString().Replace("*", string.Empty, StringComparison.InvariantCulture).Trim().ToLowerInvariant();
391-
if (keyString.Contains("("))
391+
if (keyString.Contains('('))
392392
{
393393
return "* " + keyString;
394394
}
@@ -401,7 +401,7 @@ public static string GetKeyName(Keys givenKey)
401401
if (NativeMethods.User32GetKeyNameText(numpad << 16, keyName, 100) > 0)
402402
{
403403
keyString = keyName.ToString().Replace("*", string.Empty, StringComparison.InvariantCulture).Trim().ToLowerInvariant();
404-
if (keyString.Contains("("))
404+
if (keyString.Contains('('))
405405
{
406406
return "/ " + keyString;
407407
}

Utilities/File/FileLnk.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ void StaThreadMethod(object obj)
4141
public static bool IsNetworkRoot(string path)
4242
{
4343
return path.StartsWith(@"\\", StringComparison.InvariantCulture) &&
44-
!path[2..].Contains(@"\", StringComparison.InvariantCulture);
44+
!path[2..].Contains('\\', StringComparison.InvariantCulture);
4545
}
4646

4747
private static string GetShortcutFileNamePath(object shortcutFilename, out bool isFolder)

0 commit comments

Comments
 (0)