diff --git a/InnoSetup/ShareX setup.iss b/InnoSetup/ShareX setup.iss index e1892e2c4..99b7801d6 100644 --- a/InnoSetup/ShareX setup.iss +++ b/InnoSetup/ShareX setup.iss @@ -75,6 +75,7 @@ Source: "{#MyAppParentDir}\zh-CN\*.resources.dll"; DestDir: {app}\Languages\zh-C Source: "{#MyAppParentDir}\hu\*.resources.dll"; DestDir: {app}\Languages\hu; Flags: ignoreversion Source: "{#MyAppParentDir}\ko-KR\*.resources.dll"; DestDir: {app}\Languages\ko-KR; Flags: ignoreversion Source: "{#MyAppParentDir}\es\*.resources.dll"; DestDir: {app}\Languages\es; Flags: ignoreversion +Source: "{#MyAppParentDir}\nl-NL\*.resources.dll"; DestDir: {app}\Languages\nl-NL; Flags: ignoreversion ; Required for screen/audio recording Source: "..\Lib\screen-capture-recorder.dll"; DestDir: {app}; Flags: regserver 32bit; Check: IsAdminLoggedOn and not IsWin64 diff --git a/ShareX.Setup/Program.cs b/ShareX.Setup/Program.cs index cb97aaf79..c9990b3d3 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.Stable; + private const SetupType Setup = SetupType.Beta; private static string parentDir = @"..\..\..\"; private static string binDir = Path.Combine(parentDir, @"ShareX\bin"); diff --git a/ShareX/Program.cs b/ShareX/Program.cs index 64bf77a29..8ec7b1159 100644 --- a/ShareX/Program.cs +++ b/ShareX/Program.cs @@ -39,7 +39,7 @@ namespace ShareX { internal static class Program { - public static bool IsBeta = false; + public static bool IsBeta = true; public static string Title { diff --git a/ShareX/Properties/AssemblyInfo.cs b/ShareX/Properties/AssemblyInfo.cs index bb9754320..c4fd33138 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.9.0")] -[assembly: AssemblyFileVersion("9.9.0")] \ No newline at end of file +[assembly: AssemblyVersion("9.10.0")] +[assembly: AssemblyFileVersion("9.10.0")] \ No newline at end of file