mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #3342 from Jack251970/log_level_card
Move log level to about page
This commit is contained in:
commit
424b575919
5 changed files with 37 additions and 35 deletions
|
|
@ -104,9 +104,6 @@
|
||||||
<system:String x:Key="AlwaysPreview">Always Preview</system:String>
|
<system:String x:Key="AlwaysPreview">Always Preview</system:String>
|
||||||
<system:String x:Key="AlwaysPreviewToolTip">Always open preview panel when Flow activates. Press {0} to toggle preview.</system:String>
|
<system:String x:Key="AlwaysPreviewToolTip">Always open preview panel when Flow activates. Press {0} to toggle preview.</system:String>
|
||||||
<system:String x:Key="shadowEffectNotAllowed">Shadow effect is not allowed while current theme has blur effect enabled</system:String>
|
<system:String x:Key="shadowEffectNotAllowed">Shadow effect is not allowed while current theme has blur effect enabled</system:String>
|
||||||
<system:String x:Key="logLevel">Log level</system:String>
|
|
||||||
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
|
|
||||||
<system:String x:Key="LogLevelINFO">Info</system:String>
|
|
||||||
|
|
||||||
<!-- Setting Plugin -->
|
<!-- Setting Plugin -->
|
||||||
<system:String x:Key="searchplugin">Search Plugin</system:String>
|
<system:String x:Key="searchplugin">Search Plugin</system:String>
|
||||||
|
|
@ -303,6 +300,9 @@
|
||||||
<system:String x:Key="userdatapath">User Data Location</system:String>
|
<system:String x:Key="userdatapath">User Data Location</system:String>
|
||||||
<system:String x:Key="userdatapathToolTip">User settings and installed plugins are saved in the user data folder. This location may vary depending on whether it's in portable mode or not.</system:String>
|
<system:String x:Key="userdatapathToolTip">User settings and installed plugins are saved in the user data folder. This location may vary depending on whether it's in portable mode or not.</system:String>
|
||||||
<system:String x:Key="userdatapathButton">Open Folder</system:String>
|
<system:String x:Key="userdatapathButton">Open Folder</system:String>
|
||||||
|
<system:String x:Key="logLevel">Log Level</system:String>
|
||||||
|
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
|
||||||
|
<system:String x:Key="LogLevelINFO">Info</system:String>
|
||||||
|
|
||||||
<!-- FileManager Setting Dialog -->
|
<!-- FileManager Setting Dialog -->
|
||||||
<system:String x:Key="fileManagerWindow">Select File Manager</system:String>
|
<system:String x:Key="fileManagerWindow">Select File Manager</system:String>
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ using CommunityToolkit.Mvvm.Input;
|
||||||
using Flow.Launcher.Core;
|
using Flow.Launcher.Core;
|
||||||
using Flow.Launcher.Core.Resource;
|
using Flow.Launcher.Core.Resource;
|
||||||
using Flow.Launcher.Infrastructure;
|
using Flow.Launcher.Infrastructure;
|
||||||
|
using Flow.Launcher.Infrastructure.Logger;
|
||||||
using Flow.Launcher.Infrastructure.UserSettings;
|
using Flow.Launcher.Infrastructure.UserSettings;
|
||||||
using Flow.Launcher.Plugin;
|
using Flow.Launcher.Plugin;
|
||||||
|
|
||||||
|
|
@ -45,10 +46,35 @@ public partial class SettingsPaneAboutViewModel : BaseModel
|
||||||
_settings.ActivateTimes
|
_settings.ActivateTimes
|
||||||
);
|
);
|
||||||
|
|
||||||
|
public class LogLevelData : DropdownDataGeneric<LOGLEVEL> { }
|
||||||
|
|
||||||
|
public List<LogLevelData> LogLevels { get; } =
|
||||||
|
DropdownDataGeneric<LOGLEVEL>.GetValues<LogLevelData>("LogLevel");
|
||||||
|
|
||||||
|
public LOGLEVEL LogLevel
|
||||||
|
{
|
||||||
|
get => _settings.LogLevel;
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if (_settings.LogLevel != value)
|
||||||
|
{
|
||||||
|
_settings.LogLevel = value;
|
||||||
|
|
||||||
|
Log.SetLogLevel(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public SettingsPaneAboutViewModel(Settings settings, Updater updater)
|
public SettingsPaneAboutViewModel(Settings settings, Updater updater)
|
||||||
{
|
{
|
||||||
_settings = settings;
|
_settings = settings;
|
||||||
_updater = updater;
|
_updater = updater;
|
||||||
|
UpdateEnumDropdownLocalizations();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void UpdateEnumDropdownLocalizations()
|
||||||
|
{
|
||||||
|
DropdownDataGeneric<LOGLEVEL>.UpdateLabels(LogLevels);
|
||||||
}
|
}
|
||||||
|
|
||||||
[RelayCommand]
|
[RelayCommand]
|
||||||
|
|
@ -138,5 +164,4 @@ public partial class SettingsPaneAboutViewModel : BaseModel
|
||||||
|
|
||||||
return "0 B";
|
return "0 B";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,11 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using CommunityToolkit.Mvvm.Input;
|
using CommunityToolkit.Mvvm.Input;
|
||||||
using Flow.Launcher.Core;
|
using Flow.Launcher.Core;
|
||||||
using Flow.Launcher.Core.Configuration;
|
using Flow.Launcher.Core.Configuration;
|
||||||
using Flow.Launcher.Core.Resource;
|
using Flow.Launcher.Core.Resource;
|
||||||
using Flow.Launcher.Helper;
|
using Flow.Launcher.Helper;
|
||||||
using Flow.Launcher.Infrastructure.Logger;
|
|
||||||
using Flow.Launcher.Infrastructure.UserSettings;
|
using Flow.Launcher.Infrastructure.UserSettings;
|
||||||
using Flow.Launcher.Plugin;
|
using Flow.Launcher.Plugin;
|
||||||
using Flow.Launcher.Plugin.SharedModels;
|
using Flow.Launcher.Plugin.SharedModels;
|
||||||
|
|
@ -32,7 +30,6 @@ public partial class SettingsPaneGeneralViewModel : BaseModel
|
||||||
public class SearchWindowAlignData : DropdownDataGeneric<SearchWindowAligns> { }
|
public class SearchWindowAlignData : DropdownDataGeneric<SearchWindowAligns> { }
|
||||||
public class SearchPrecisionData : DropdownDataGeneric<SearchPrecisionScore> { }
|
public class SearchPrecisionData : DropdownDataGeneric<SearchPrecisionScore> { }
|
||||||
public class LastQueryModeData : DropdownDataGeneric<LastQueryMode> { }
|
public class LastQueryModeData : DropdownDataGeneric<LastQueryMode> { }
|
||||||
public class LogLevelData : DropdownDataGeneric<LOGLEVEL> { }
|
|
||||||
|
|
||||||
public bool StartFlowLauncherOnSystemStartup
|
public bool StartFlowLauncherOnSystemStartup
|
||||||
{
|
{
|
||||||
|
|
@ -145,16 +142,12 @@ public partial class SettingsPaneGeneralViewModel : BaseModel
|
||||||
public List<LastQueryModeData> LastQueryModes { get; } =
|
public List<LastQueryModeData> LastQueryModes { get; } =
|
||||||
DropdownDataGeneric<LastQueryMode>.GetValues<LastQueryModeData>("LastQuery");
|
DropdownDataGeneric<LastQueryMode>.GetValues<LastQueryModeData>("LastQuery");
|
||||||
|
|
||||||
public List<LogLevelData> LogLevels { get; } =
|
|
||||||
DropdownDataGeneric<LOGLEVEL>.GetValues<LogLevelData>("LogLevel");
|
|
||||||
|
|
||||||
private void UpdateEnumDropdownLocalizations()
|
private void UpdateEnumDropdownLocalizations()
|
||||||
{
|
{
|
||||||
DropdownDataGeneric<SearchWindowScreens>.UpdateLabels(SearchWindowScreens);
|
DropdownDataGeneric<SearchWindowScreens>.UpdateLabels(SearchWindowScreens);
|
||||||
DropdownDataGeneric<SearchWindowAligns>.UpdateLabels(SearchWindowAligns);
|
DropdownDataGeneric<SearchWindowAligns>.UpdateLabels(SearchWindowAligns);
|
||||||
DropdownDataGeneric<SearchPrecisionScore>.UpdateLabels(SearchPrecisionScores);
|
DropdownDataGeneric<SearchPrecisionScore>.UpdateLabels(SearchPrecisionScores);
|
||||||
DropdownDataGeneric<LastQueryMode>.UpdateLabels(LastQueryModes);
|
DropdownDataGeneric<LastQueryMode>.UpdateLabels(LastQueryModes);
|
||||||
DropdownDataGeneric<LOGLEVEL>.UpdateLabels(LogLevels);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public string Language
|
public string Language
|
||||||
|
|
@ -222,22 +215,6 @@ public partial class SettingsPaneGeneralViewModel : BaseModel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public LOGLEVEL LogLevel
|
|
||||||
{
|
|
||||||
get => Settings.LogLevel;
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if (Settings.LogLevel != value)
|
|
||||||
{
|
|
||||||
Settings.LogLevel = value;
|
|
||||||
|
|
||||||
Log.SetLogLevel(value);
|
|
||||||
|
|
||||||
UpdateEnumDropdownLocalizations();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[RelayCommand]
|
[RelayCommand]
|
||||||
private void SelectPython()
|
private void SelectPython()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -123,6 +123,14 @@
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</cc:Card>
|
</cc:Card>
|
||||||
|
|
||||||
|
<cc:Card Title="{DynamicResource logLevel}" Icon="">
|
||||||
|
<ComboBox
|
||||||
|
DisplayMemberPath="Display"
|
||||||
|
ItemsSource="{Binding LogLevels}"
|
||||||
|
SelectedValue="{Binding LogLevel}"
|
||||||
|
SelectedValuePath="Value" />
|
||||||
|
</cc:Card>
|
||||||
|
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Margin="14 20 0 0"
|
Margin="14 20 0 0"
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
|
|
|
||||||
|
|
@ -278,14 +278,6 @@
|
||||||
SelectedValue="{Binding Language}"
|
SelectedValue="{Binding Language}"
|
||||||
SelectedValuePath="LanguageCode" />
|
SelectedValuePath="LanguageCode" />
|
||||||
</cc:Card>
|
</cc:Card>
|
||||||
|
|
||||||
<cc:Card Title="{DynamicResource logLevel}" Margin="0 14 0 0">
|
|
||||||
<ComboBox
|
|
||||||
DisplayMemberPath="Display"
|
|
||||||
ItemsSource="{Binding LogLevels}"
|
|
||||||
SelectedValue="{Binding LogLevel}"
|
|
||||||
SelectedValuePath="Value" />
|
|
||||||
</cc:Card>
|
|
||||||
</VirtualizingStackPanel>
|
</VirtualizingStackPanel>
|
||||||
</ScrollViewer>
|
</ScrollViewer>
|
||||||
</ui:Page>
|
</ui:Page>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue