Release 14.1.0

This commit is contained in:
Jaex 2022-07-15 16:42:32 +03:00
parent b9ac62a71e
commit 6dec8a9a10
4 changed files with 6 additions and 5 deletions

View file

@ -52,7 +52,7 @@ public class MyListView : ListView
public bool AllowItemDrag { get; set; }
[DefaultValue(true)]
public bool AllowSelectAll { get; set; } = true;
public bool AllowSelectAll { get; set; }
[DefaultValue(false)]
public bool DisableDeselect { get; set; }
@ -94,6 +94,7 @@ public MyListView()
AutoFillColumn = false;
AutoFillColumnIndex = -1;
AllowColumnSort = false;
AllowSelectAll = true;
FullRowSelect = true;
View = View.Details;

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" xmlns:desktop2="http://schemas.microsoft.com/appx/manifest/desktop/windows10/2" IgnorableNamespaces="desktop2">
<Identity Name="19568ShareX.ShareX" ProcessorArchitecture="x64" Publisher="CN=366A5DE5-2EC7-43FD-B559-05986578C4CC" Version="14.0.1.0" />
<Identity Name="19568ShareX.ShareX" ProcessorArchitecture="x64" Publisher="CN=366A5DE5-2EC7-43FD-B559-05986578C4CC" Version="14.1.0.0" />
<Properties>
<DisplayName>ShareX</DisplayName>
<PublisherDisplayName>ShareX Team</PublisherDisplayName>

View file

@ -109,7 +109,7 @@ public static string TitleShort
}
}
public static bool Dev { get; } = true;
public static bool Dev { get; } = false;
public static bool MultiInstance { get; private set; }
public static bool Portable { get; private set; }
public static bool SilentRun { get; private set; }

View file

@ -30,5 +30,5 @@
[assembly: AssemblyProduct("ShareX")]
[assembly: AssemblyCopyright("Copyright (c) 2007-2022 ShareX Team")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("14.0.2")]
[assembly: AssemblyFileVersion("14.0.2")]
[assembly: AssemblyVersion("14.1.0")]
[assembly: AssemblyFileVersion("14.1.0")]