diff --git a/app/MindWork AI Studio/Pages/Home.razor b/app/MindWork AI Studio/Pages/Home.razor index 58790989..d7eb7aa8 100644 --- a/app/MindWork AI Studio/Pages/Home.razor +++ b/app/MindWork AI Studio/Pages/Home.razor @@ -8,58 +8,66 @@ - + @if (this.HasVisibleHomePanels) + { + - @if (this.SettingsManager.ConfigurationData.App.ShowIntroduction) - { - - - @T("Welcome to MindWork AI Studio!") - - - @T("Thank you for considering MindWork AI Studio for your AI needs. This app is designed to help you harness the power of Large Language Models (LLMs). Please note that this app doesn't come with an integrated LLM. Instead, you will need to bring an API key from a suitable provider.") - - - @T("Here's what makes MindWork AI Studio stand out:") - - - - @T("We hope you enjoy using MindWork AI Studio to bring your AI projects to life!") - - - } + @if (this.SettingsManager.ConfigurationData.App.ShowIntroduction) + { + + + @T("Welcome to MindWork AI Studio!") + + + @T("Thank you for considering MindWork AI Studio for your AI needs. This app is designed to help you harness the power of Large Language Models (LLMs). Please note that this app doesn't come with an integrated LLM. Instead, you will need to bring an API key from a suitable provider.") + + + @T("Here's what makes MindWork AI Studio stand out:") + + + + @T("We hope you enjoy using MindWork AI Studio to bring your AI projects to life!") + + + } - @foreach (var introduction in this.introductions) - { - - - @T("Version"): @introduction.VersionText - - - - } + @foreach (var introduction in this.introductions) + { + + + @T("Version"): @introduction.VersionText + + + + } - @if (this.SettingsManager.ConfigurationData.App.ShowLastChangelog) - { - - - - } + @if (this.SettingsManager.ConfigurationData.App.ShowLastChangelog) + { + + + + } - @if (this.SettingsManager.ConfigurationData.App.ShowVision) - { - - - - } + @if (this.SettingsManager.ConfigurationData.App.ShowVision) + { + + + + } - @if (this.SettingsManager.ConfigurationData.App.ShowQuickStartGuide) - { - - - - } - - + @if (this.SettingsManager.ConfigurationData.App.ShowQuickStartGuide) + { + + + + } + + } + else + { + + @T("Welcome to MindWork AI Studio!") + + } - + \ No newline at end of file diff --git a/app/MindWork AI Studio/Pages/Home.razor.cs b/app/MindWork AI Studio/Pages/Home.razor.cs index 244007bd..e1851c2b 100644 --- a/app/MindWork AI Studio/Pages/Home.razor.cs +++ b/app/MindWork AI Studio/Pages/Home.razor.cs @@ -29,6 +29,7 @@ public partial class Home : MSGComponentBase private const string PANEL_ID_LAST_CHANGELOG = "last-changelog"; private const string PANEL_ID_VISION = "vision"; private const string PANEL_ID_QUICK_START_GUIDE = "quick-start-guide"; + #region Overrides of ComponentBase protected override async Task OnInitializedAsync() @@ -102,6 +103,13 @@ public partial class Home : MSGComponentBase this.introductions = PluginFactory.GetIntroductions().ToList(); } + private bool HasVisibleHomePanels => + this.SettingsManager.ConfigurationData.App.ShowIntroduction || + this.introductions.Count > 0 || + this.SettingsManager.ConfigurationData.App.ShowLastChangelog || + this.SettingsManager.ConfigurationData.App.ShowVision || + this.SettingsManager.ConfigurationData.App.ShowQuickStartGuide; + private string GetDefaultExpandedPanelId() { if (this.SettingsManager.ConfigurationData.App.ShowIntroduction) diff --git a/app/MindWork AI Studio/wwwroot/changelog/v26.7.3.md b/app/MindWork AI Studio/wwwroot/changelog/v26.7.3.md index 628ef17b..a467a4e4 100644 --- a/app/MindWork AI Studio/wwwroot/changelog/v26.7.3.md +++ b/app/MindWork AI Studio/wwwroot/changelog/v26.7.3.md @@ -1,6 +1,7 @@ # v26.7.3, build 245 (2026-07-xx xx:xx UTC) - Added support for OpenAI GPT-5.6 Sol, Terra, and Luna; Anthropic Claude Fable 5 and Mythos 5; and Google Gemini 3 Flash, Gemini 3.1 Flash-Lite, Gemini 3.1 Pro, and Gemini 3.5 Flash. - Added audio and video transcription for chats and assistants. AI Studio now prepares supported media locally, sends only normalized audio to the configured transcription provider, and attaches the resulting transcript instead of the original media. +- Added enterprise configuration options to hide the last changelog and vision panels on the welcome page. Thanks, Dominic Neuburg (`donework`), for the contribution. - Improved the "My Tasks Assistant": you can now provide one or more documents in addition to text or use documents alone when asking to identify tasks. - Improved update guidance for Flatpak installations and added an enterprise option that lets organizations manage updates entirely through their IT department. - Fixed an issue that could leave AI Studio unresponsive after waking the computer from sleep. Yes, we know this was an annoying bug, and we apologize for the inconvenience.