mirror of
https://github.com/flashwave/topmostfriend.git
synced 2024-11-21 17:43:08 +00:00
v1.4.1 - 2020-06-10
This commit is contained in:
parent
69d797523d
commit
7f04d75c72
2 changed files with 3 additions and 3 deletions
|
@ -85,7 +85,7 @@ namespace TopMostFriend {
|
|||
|
||||
if (Environment.OSVersion.Version.Major == 6 && Environment.OSVersion.Version.Minor >= 2)
|
||||
titles.Add(@"Start menu");
|
||||
else if(Environment.OSVersion.Version.Major > 6 || (Environment.OSVersion.Version.Major < 6 && Environment.OSVersion.Version.Minor < 2))
|
||||
else if(Environment.OSVersion.Version.Major > 6 || (Environment.OSVersion.Version.Major <= 6 && Environment.OSVersion.Version.Minor < 2))
|
||||
titles.Add(@"Start");
|
||||
|
||||
Settings.Set(TITLE_BLACKLIST, titles.ToArray());
|
||||
|
|
|
@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
|
|||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
[assembly: AssemblyVersion("1.4.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.4.0.0")]
|
||||
[assembly: AssemblyVersion("1.4.1.0")]
|
||||
[assembly: AssemblyFileVersion("1.4.1.0")]
|
||||
|
|
Loading…
Reference in a new issue