fixed #1350: Increased ImageSizeLimit to 10000

This commit is contained in:
Jaex 2016-02-22 01:15:04 +02:00
parent 382df49a50
commit 4889c9ac85
4 changed files with 5 additions and 5 deletions

View file

@ -41,7 +41,7 @@ private enum SetupType
Steam // Create Steam folder
}
private static readonly SetupType Setup = SetupType.Stable;
private static readonly SetupType Setup = SetupType.Beta;
private static readonly string parentDir = @"..\..\..\";
private static readonly string binDir = Path.Combine(parentDir, "ShareX", "bin");

View file

@ -563,7 +563,7 @@ private void InitializeComponent()
//
resources.ApplyResources(this.nudUseImageFormat2After, "nudUseImageFormat2After");
this.nudUseImageFormat2After.Maximum = new decimal(new int[] {
2048,
10000,
0,
0,
0});

View file

@ -54,7 +54,7 @@ public static ShareXBuild Build
}
}
public static bool IsBeta { get; } = false;
public static bool IsBeta { get; } = true;
public static string Title
{

View file

@ -11,5 +11,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("82E6AC09-0FEF-4390-AD9F-0DD3F5561EFC")]
[assembly: AssemblyVersion("10.7.0")]
[assembly: AssemblyFileVersion("10.7.0")]
[assembly: AssemblyVersion("10.7.1")]
[assembly: AssemblyFileVersion("10.7.1")]