@@ -23,8 +23,8 @@ public interface IPublicAPI
23
23
/// </summary>
24
24
/// <param name="query">query text</param>
25
25
/// <param name="requery">
26
- /// Force requery. By default, Flow Launcher will not fire query if your query is same with existing one.
27
- /// Set this to <see langword="true"/> to force Flow Launcher requerying
26
+ /// Force requery. By default, Flow Launcher will not fire query if your query is same with existing one.
27
+ /// Set this to <see langword="true"/> to force Flow Launcher re-querying
28
28
/// </param>
29
29
void ChangeQuery ( string query , bool requery = false ) ;
30
30
@@ -49,7 +49,7 @@ public interface IPublicAPI
49
49
/// </summary>
50
50
/// <param name="text">Text to save on clipboard</param>
51
51
/// <param name="directCopy">When true it will directly copy the file/folder from the path specified in text</param>
52
- /// <param name="showDefaultNotification">Whether to show the default notification from this method after copy is done.
52
+ /// <param name="showDefaultNotification">Whether to show the default notification from this method after copy is done.
53
53
/// It will show file/folder/text is copied successfully.
54
54
/// Turn this off to show your own notification after copy is done.</param>>
55
55
public void CopyToClipboard ( string text , bool directCopy = false , bool showDefaultNotification = true ) ;
@@ -65,7 +65,7 @@ public interface IPublicAPI
65
65
void SavePluginSettings ( ) ;
66
66
67
67
/// <summary>
68
- /// Reloads any Plugins that have the
68
+ /// Reloads any Plugins that have the
69
69
/// IReloadable implemented. It refeshes
70
70
/// Plugin's in memory data with new content
71
71
/// added by user.
@@ -97,7 +97,7 @@ public interface IPublicAPI
97
97
/// Show the MainWindow when hiding
98
98
/// </summary>
99
99
void ShowMainWindow ( ) ;
100
-
100
+
101
101
/// <summary>
102
102
/// Focus the query text box in the main window
103
103
/// </summary>
@@ -115,7 +115,7 @@ public interface IPublicAPI
115
115
bool IsMainWindowVisible ( ) ;
116
116
117
117
/// <summary>
118
- /// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
118
+ /// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
119
119
/// </summary>
120
120
event VisibilityChangedEventHandler VisibilityChanged ;
121
121
@@ -171,7 +171,7 @@ public interface IPublicAPI
171
171
string GetTranslation ( string key ) ;
172
172
173
173
/// <summary>
174
- /// Get all loaded plugins
174
+ /// Get all loaded plugins
175
175
/// </summary>
176
176
/// <returns></returns>
177
177
List < PluginPair > GetAllPlugins ( ) ;
@@ -229,15 +229,15 @@ public interface IPublicAPI
229
229
MatchResult FuzzySearch ( string query , string stringToCompare ) ;
230
230
231
231
/// <summary>
232
- /// Http download the spefic url and return as string
232
+ /// Http download the specific url and return as string
233
233
/// </summary>
234
234
/// <param name="url">URL to call Http Get</param>
235
235
/// <param name="token">Cancellation Token</param>
236
236
/// <returns>Task to get string result</returns>
237
237
Task < string > HttpGetStringAsync ( string url , CancellationToken token = default ) ;
238
238
239
239
/// <summary>
240
- /// Http download the spefic url and return as stream
240
+ /// Http download the specific url and return as stream
241
241
/// </summary>
242
242
/// <param name="url">URL to call Http Get</param>
243
243
/// <param name="token">Cancellation Token</param>
@@ -305,8 +305,8 @@ public interface IPublicAPI
305
305
void LogError ( string className , string message , [ CallerMemberName ] string methodName = "" ) ;
306
306
307
307
/// <summary>
308
- /// Log an Exception. Will throw if in debug mode so developer will be aware,
309
- /// otherwise logs the eror message. This is the primary logging method used for Flow
308
+ /// Log an Exception. Will throw if in debug mode so developer will be aware,
309
+ /// otherwise logs the eror message. This is the primary logging method used for Flow
310
310
/// </summary>
311
311
void LogException ( string className , string message , Exception e , [ CallerMemberName ] string methodName = "" ) ;
312
312
@@ -393,7 +393,7 @@ public interface IPublicAPI
393
393
394
394
/// <summary>
395
395
/// Reloads the query.
396
- /// When current results are from context menu or history, it will go back to query results before requerying .
396
+ /// When current results are from context menu or history, it will go back to query results before re-querying .
397
397
/// </summary>
398
398
/// <param name="reselect">Choose the first result after reload if true; keep the last selected result if false. Default is true.</param>
399
399
public void ReQuery ( bool reselect = true ) ;
@@ -610,7 +610,7 @@ public interface IPublicAPI
610
610
bool IsApplicationDarkTheme ( ) ;
611
611
612
612
/// <summary>
613
- /// Invoked when the actual theme of the application has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
613
+ /// Invoked when the actual theme of the application has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
614
614
/// </summary>
615
615
event ActualApplicationThemeChangedEventHandler ActualApplicationThemeChanged ;
616
616
}
0 commit comments