diff --git a/.github/actions/spelling/allow.txt b/.github/actions/spelling/allow.txt index 78b16e430b7..19f257eada2 100644 --- a/.github/actions/spelling/allow.txt +++ b/.github/actions/spelling/allow.txt @@ -19,4 +19,5 @@ TRAYMOUSEMESSAGE uninstaller vkcode winget -workaround \ No newline at end of file +workaround +nupkg diff --git a/.github/actions/spelling/excludes.txt b/.github/actions/spelling/excludes.txt index 74ebe82c99a..feb6f0ff007 100644 --- a/.github/actions/spelling/excludes.txt +++ b/.github/actions/spelling/excludes.txt @@ -71,4 +71,4 @@ ignore$ \.csproj$ \.DotSettings$ \.targets$ -.*Test.cs$ \ No newline at end of file +.*Test.cs$ diff --git a/.github/actions/spelling/expect.txt b/.github/actions/spelling/expect.txt index 06466654294..ca2edec26b3 100644 --- a/.github/actions/spelling/expect.txt +++ b/.github/actions/spelling/expect.txt @@ -108,4 +108,10 @@ JsonRPCV2 Softpedia img ime -LPWStr \ No newline at end of file +LPWStr +flowlauncher +hotkeys +LPW +productversion +requery +Wnd diff --git a/Flow.Launcher/Helper/SingleInstance.cs b/Flow.Launcher/Helper/SingleInstance.cs index 9d077fa8268..d46051126ec 100644 --- a/Flow.Launcher/Helper/SingleInstance.cs +++ b/Flow.Launcher/Helper/SingleInstance.cs @@ -305,13 +305,13 @@ private static IList GetCommandLineArgs(string uniqueApplicationName) try { - // The application was not clickonce deployed, get args from standard API's + // The application was not ClickOnce deployed, get args from standard API's args = Environment.GetCommandLineArgs(); } catch (NotSupportedException) { - // The application was clickonce deployed - // Clickonce deployed apps cannot receive traditional command line arguments + // The application was ClickOnce deployed + // ClickOnce deployed apps cannot receive traditional command line arguments // As a workaround command line arguments can be written to a shared location before // the app is launched and the app can obtain its command line arguments from the // shared location diff --git a/Flow.Launcher/PublicAPIInstance.cs b/Flow.Launcher/PublicAPIInstance.cs index 6b327b2be63..5b149f8bfe5 100644 --- a/Flow.Launcher/PublicAPIInstance.cs +++ b/Flow.Launcher/PublicAPIInstance.cs @@ -40,7 +40,7 @@ public PublicAPIInstance(SettingWindowViewModel settingsVM, MainViewModel mainVM _settingsVM = settingsVM; _mainVM = mainVM; _alphabet = alphabet; - GlobalHotkey.hookedKeyboardCallback = KListener_hookedKeyboardCallback; + GlobalHotkey.hookedKeyboardCallback = KListenerHookedKeyboardCallback; WebRequest.RegisterPrefix("data", new DataWebRequestFactory()); } @@ -315,7 +315,7 @@ public bool IsGameModeOn() #region Private Methods - private bool KListener_hookedKeyboardCallback(KeyEvent keyEvent, int vkCode, SpecialKeyState state) + private bool KListenerHookedKeyboardCallback(KeyEvent keyEvent, int vkCode, SpecialKeyState state) { var continueHook = true; foreach (var x in _globalKeyboardHandlers)