mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
- Add plugin search with filtering across name, description, and action keywords - Implement display mode switcher (On/Off, Priority, Search Delay, Home On/Off) - Add plugin management controls (enable/disable, priority, search delays, home visibility) - Integrate both native Avalonia settings and WPF fallback support - Add action keywords editing dialog - Include plugin directory access, source code links, and uninstall functionality - Add help dialog explaining priority, search delay, and home features - Improve UI with FluentAvalonia controls and proper layout - Load plugin icons asynchronously and display plugin metrics (init time, query time) Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
22 lines
557 B
C#
22 lines
557 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Flow.Launcher.Avalonia.ViewModel.SettingPages;
|
|
|
|
namespace Flow.Launcher.Avalonia.Views.SettingPages;
|
|
|
|
public partial class PluginsSettingsPage : UserControl
|
|
{
|
|
public PluginsSettingsPage()
|
|
{
|
|
InitializeComponent();
|
|
DataContext = new PluginsSettingsViewModel();
|
|
}
|
|
|
|
private void ClearSearchText_Click(object? sender, RoutedEventArgs e)
|
|
{
|
|
if (DataContext is PluginsSettingsViewModel vm)
|
|
{
|
|
vm.SearchText = string.Empty;
|
|
}
|
|
}
|
|
}
|