@@ -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.
@@ -110,7 +110,7 @@ public interface IPublicAPI
110
110
bool IsMainWindowVisible ( ) ;
111
111
112
112
/// <summary>
113
- /// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
113
+ /// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
114
114
/// </summary>
115
115
event VisibilityChangedEventHandler VisibilityChanged ;
116
116
@@ -166,7 +166,7 @@ public interface IPublicAPI
166
166
string GetTranslation ( string key ) ;
167
167
168
168
/// <summary>
169
- /// Get all loaded plugins
169
+ /// Get all loaded plugins
170
170
/// </summary>
171
171
/// <returns></returns>
172
172
List < PluginPair > GetAllPlugins ( ) ;
@@ -271,8 +271,8 @@ public interface IPublicAPI
271
271
void LogError ( string className , string message , [ CallerMemberName ] string methodName = "" ) ;
272
272
273
273
/// <summary>
274
- /// Log an Exception. Will throw if in debug mode so developer will be aware,
275
- /// otherwise logs the eror message. This is the primary logging method used for Flow
274
+ /// Log an Exception. Will throw if in debug mode so developer will be aware,
275
+ /// otherwise logs the eror message. This is the primary logging method used for Flow
276
276
/// </summary>
277
277
void LogException ( string className , string message , Exception e , [ CallerMemberName ] string methodName = "" ) ;
278
278
@@ -359,7 +359,7 @@ public interface IPublicAPI
359
359
360
360
/// <summary>
361
361
/// Reloads the query.
362
- /// When current results are from context menu or history, it will go back to query results before requerying .
362
+ /// When current results are from context menu or history, it will go back to query results before re-querying .
363
363
/// </summary>
364
364
/// <param name="reselect">Choose the first result after reload if true; keep the last selected result if false. Default is true.</param>
365
365
public void ReQuery ( bool reselect = true ) ;
@@ -509,7 +509,7 @@ public interface IPublicAPI
509
509
bool IsApplicationDarkTheme ( ) ;
510
510
511
511
/// <summary>
512
- /// Invoked when the actual theme of the application has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
512
+ /// Invoked when the actual theme of the application has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
513
513
/// </summary>
514
514
event ActualApplicationThemeChangedEventHandler ActualApplicationThemeChanged ;
515
515
}
0 commit comments