diff --git a/BeWo/BeWoApp.xaml.cs b/BeWo/BeWoApp.xaml.cs index baad2e065..173cefc01 100644 --- a/BeWo/BeWoApp.xaml.cs +++ b/BeWo/BeWoApp.xaml.cs @@ -56,7 +56,7 @@ namespace BeWo public static LoginControl LoginControl; public static MainControl MainControl; - public static string ShortVersion = "3.29"; + public static string ShortVersion = "3.30"; public static string Version => BeWoAppInfo.BeWoAppVersion.ToString(); public static int RenderTier = 0; diff --git a/BeWo/BeWoAppInfo.cs b/BeWo/BeWoAppInfo.cs index 160c6dc9e..5fbdac1b9 100644 --- a/BeWo/BeWoAppInfo.cs +++ b/BeWo/BeWoAppInfo.cs @@ -14,9 +14,9 @@ namespace BeWo static BeWoAppInfo() { var baseVersion = new Version(BeWoApp.ShortVersion); - var stage = BeWoClientReleaseStage.Sandbox; - var stageVersion = new Version("3.1"); - var feature = BeWoClientFeature.AI; + var stage = BeWoClientReleaseStage.Release; + var stageVersion = new Version("4.0"); + var feature = BeWoClientFeature.None; BeWoAppVersion = new BeWoAppVersion(baseVersion, stage, stageVersion, feature); } diff --git a/BeWo/Core/Commands/CommandFactory.cs b/BeWo/Core/Commands/CommandFactory.cs index e12f74924..c3e0598fb 100644 --- a/BeWo/Core/Commands/CommandFactory.cs +++ b/BeWo/Core/Commands/CommandFactory.cs @@ -14,7 +14,6 @@ namespace BeWo.Core.Commands public static DelegateCommand GetAiViewCommand(Action openView, UserRightType userRightType, Func additionalCheckup = null, bool? useCommandManager = null) { bool canExecute() => - BeWoAppInfo.IsInAiMode && (BeWoApp.AppSettings?.ModuleAiEnabled ?? BeWoApp.AppSettings?.ShowAI ?? false) && BeWoApp.HasLoggedOnUserRight(userRightType) && (additionalCheckup is null || additionalCheckup());