-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0384f7
commit 9283901
Showing
4 changed files
with
156 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using Community.PowerToys.Run.Plugin.Update; | ||
using Microsoft.PowerToys.Settings.UI.Library; | ||
|
||
namespace GEmojiSharp.PowerToysRun | ||
{ | ||
/// <summary> | ||
/// Plugin settings. | ||
/// </summary> | ||
public class GEmojiSharpSettings | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="GEmojiSharpSettings"/> class. | ||
/// </summary> | ||
public GEmojiSharpSettings() | ||
{ | ||
Update = new PluginUpdateSettings | ||
{ | ||
ResultScore = 100, | ||
}; | ||
} | ||
|
||
/// <summary> | ||
/// Plugin update settings. | ||
/// </summary> | ||
public PluginUpdateSettings Update { get; set; } | ||
|
||
internal IEnumerable<PluginAdditionalOption> GetAdditionalOptions() => Update.GetAdditionalOptions(); | ||
|
||
internal void SetAdditionalOptions(IEnumerable<PluginAdditionalOption> additionalOptions) => Update.SetAdditionalOptions(additionalOptions); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters