Improved some default settings (#89)

This commit is contained in:
Thorsten Sommer 2024-08-23 10:49:30 +02:00 committed by GitHub
parent 5efb6b0158
commit 3fd0d4d5c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View File

@ -16,10 +16,10 @@ public sealed class DataApp
/// <summary> /// <summary>
/// If and when we should look for updates. /// If and when we should look for updates.
/// </summary> /// </summary>
public UpdateBehavior UpdateBehavior { get; set; } = UpdateBehavior.ONCE_STARTUP; public UpdateBehavior UpdateBehavior { get; set; } = UpdateBehavior.HOURLY;
/// <summary> /// <summary>
/// The navigation behavior. /// The navigation behavior.
/// </summary> /// </summary>
public NavBehavior NavigationBehavior { get; set; } = NavBehavior.EXPAND_ON_HOVER; public NavBehavior NavigationBehavior { get; set; } = NavBehavior.NEVER_EXPAND_USE_TOOLTIPS;
} }

View File

@ -5,7 +5,7 @@ public sealed class DataChat
/// <summary> /// <summary>
/// Shortcuts to send the input to the AI. /// Shortcuts to send the input to the AI.
/// </summary> /// </summary>
public SendBehavior ShortcutSendBehavior { get; set; } = SendBehavior.MODIFER_ENTER_IS_SENDING; public SendBehavior ShortcutSendBehavior { get; set; } = SendBehavior.ENTER_IS_SENDING;
/// <summary> /// <summary>
/// Preselect any chat options? /// Preselect any chat options?

View File

@ -6,4 +6,5 @@
- Improved the content validation for the agenda assistant. - Improved the content validation for the agenda assistant.
- Improved the language handling of the agenda assistant. - Improved the language handling of the agenda assistant.
- Improved the chat options readability by separating the preselection of values. - Improved the chat options readability by separating the preselection of values.
- Improved some default settings. Default key for sending input is now `Enter`. The default update check is now set to hourly. The navigation menu behavior is now set to use tooltips.
- Refactored the "send to" implementation of assistants. - Refactored the "send to" implementation of assistants.