diff --git a/ShareX.Setup/Program.cs b/ShareX.Setup/Program.cs index c9990b3d3..cb97aaf79 100644 --- a/ShareX.Setup/Program.cs +++ b/ShareX.Setup/Program.cs @@ -41,7 +41,7 @@ private enum SetupType Beta // Build setup + upload it using "Debug/ShareX.exe" } - private const SetupType Setup = SetupType.Beta; + private const SetupType Setup = SetupType.Stable; private static string parentDir = @"..\..\..\"; private static string binDir = Path.Combine(parentDir, @"ShareX\bin"); diff --git a/ShareX/Program.cs b/ShareX/Program.cs index 8ec7b1159..64bf77a29 100644 --- a/ShareX/Program.cs +++ b/ShareX/Program.cs @@ -39,7 +39,7 @@ namespace ShareX { internal static class Program { - public static bool IsBeta = true; + public static bool IsBeta = false; public static string Title { diff --git a/ShareX/Properties/AssemblyInfo.cs b/ShareX/Properties/AssemblyInfo.cs index d8952c1bc..e020c4a87 100644 --- a/ShareX/Properties/AssemblyInfo.cs +++ b/ShareX/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("82E6AC09-0FEF-4390-AD9F-0DD3F5561EFC")] -[assembly: AssemblyVersion("9.7.1")] -[assembly: AssemblyFileVersion("9.7.1")] \ No newline at end of file +[assembly: AssemblyVersion("9.8.0")] +[assembly: AssemblyFileVersion("9.8.0")] \ No newline at end of file