Skip to content

Commit 9f13776

Browse files
committed
Update description strings
1 parent 28d67c8 commit 9f13776

File tree

95 files changed

+374
-374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+374
-374
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ paket-files/
285285
# New to Visual Studio
286286
*.VC.db
287287

288-
## Flow.Launcher specific
288+
## Flow Launcher specific
289289
Output/*
290290
/Python.Runtime.dll
291291
Thumbs.db

Flow.Launcher.Core/Configuration/Portable.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public void DisablePortableMode()
3636
#endif
3737
IndicateDeletion(DataLocation.PortableDataPath);
3838

39-
MessageBox.Show("Flow.Launcher needs to restart to finish disabling portable mode, " +
39+
MessageBox.Show("Flow Launcher needs to restart to finish disabling portable mode, " +
4040
"after the restart your portable data profile will be deleted and roaming data profile kept");
4141

4242
UpdateManager.RestartApp(Constant.ApplicationFileName);
@@ -64,7 +64,7 @@ public void EnablePortableMode()
6464
#endif
6565
IndicateDeletion(DataLocation.RoamingDataPath);
6666

67-
MessageBox.Show("Flow.Launcher needs to restart to finish enabling portable mode, " +
67+
MessageBox.Show("Flow Launcher needs to restart to finish enabling portable mode, " +
6868
"after the restart your roaming data profile will be deleted and portable data profile kept");
6969

7070
UpdateManager.RestartApp(Constant.ApplicationFileName);
@@ -142,7 +142,7 @@ internal void IndicateDeletion(string filePathTodelete)
142142

143143
///<summary>
144144
///This method should be run at first before all methods during start up and should be run before determining which data location
145-
///will be used for Flow.Launcher.
145+
///will be used for Flow Launcher.
146146
///</summary>
147147
public void PreStartCleanUpAfterPortabilityUpdate()
148148
{
@@ -163,7 +163,7 @@ public void PreStartCleanUpAfterPortabilityUpdate()
163163
{
164164
FilesFolders.RemoveFolderIfExists(roamingDataPath);
165165

166-
if (MessageBox.Show("Flow.Launcher has detected you enabled portable mode, " +
166+
if (MessageBox.Show("Flow Launcher has detected you enabled portable mode, " +
167167
"would you like to move it to a different location?", string.Empty,
168168
MessageBoxButton.YesNo) == MessageBoxResult.Yes)
169169
{
@@ -179,7 +179,7 @@ public void PreStartCleanUpAfterPortabilityUpdate()
179179
{
180180
FilesFolders.RemoveFolderIfExists(portableDataPath);
181181

182-
MessageBox.Show("Flow.Launcher has detected you disabled portable mode, " +
182+
MessageBox.Show("Flow Launcher has detected you disabled portable mode, " +
183183
"the relevant shortcuts and uninstaller entry have been created");
184184

185185
return;
@@ -193,7 +193,7 @@ public bool CanUpdatePortability()
193193

194194
if(roamingLocationExists && portableLocationExists)
195195
{
196-
MessageBox.Show(string.Format("Flow.Launcher detected your user data exists both in {0} and " +
196+
MessageBox.Show(string.Format("Flow Launcher detected your user data exists both in {0} and " +
197197
"{1}. {2}{2}Please delete {1} in order to proceed. No changes have occured.",
198198
DataLocation.PortableDataPath, DataLocation.RoamingDataPath, Environment.NewLine));
199199

Flow.Launcher.Core/Plugin/JsonPRCModel.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

2-
/* We basically follow the Json-RPC 2.0 spec (http://www.jsonrpc.org/specification) to invoke methods between Flow.Launcher and other plugins,
2+
/* We basically follow the Json-RPC 2.0 spec (http://www.jsonrpc.org/specification) to invoke methods between Flow Launcher and other plugins,
33
* like python or other self-execute program. But, we added addtional infos (proxy and so on) into rpc request. Also, we didn't use the
44
* "id" and "jsonrpc" in the request, since it's not so useful in our request model.
55
*
66
* When execute a query:
7-
* Flow.Launcher -------JsonRPCServerRequestModel--------> client
8-
* Flow.Launcher <------JsonRPCQueryResponseModel--------- client
7+
* Flow Launcher -------JsonRPCServerRequestModel--------> client
8+
* Flow Launcher <------JsonRPCQueryResponseModel--------- client
99
*
1010
* When execute a action (which mean user select an item in reulst item):
11-
* Flow.Launcher -------JsonRPCServerRequestModel--------> client
12-
* Flow.Launcher <------JsonRPCResponseModel-------------- client
11+
* Flow Launcher -------JsonRPCServerRequestModel--------> client
12+
* Flow Launcher <------JsonRPCResponseModel-------------- client
1313
*
1414
*/
1515

@@ -98,7 +98,7 @@ private string ReplaceEscapes(string str)
9898
}
9999

100100
/// <summary>
101-
/// Json RPC Request that Flow.Launcher sent to client
101+
/// Json RPC Request that Flow Launcher sent to client
102102
/// </summary>
103103
public class JsonRPCServerRequestModel : JsonRPCRequestModel
104104
{
@@ -110,7 +110,7 @@ public override string ToString()
110110
}
111111

112112
/// <summary>
113-
/// Json RPC Request(in query response) that client sent to Flow.Launcher
113+
/// Json RPC Request(in query response) that client sent to Flow Launcher
114114
/// </summary>
115115
public class JsonRPCClientRequestModel : JsonRPCRequestModel
116116
{
@@ -124,9 +124,9 @@ public override string ToString()
124124
}
125125

126126
/// <summary>
127-
/// Represent the json-rpc result item that client send to Flow.Launcher
127+
/// Represent the json-rpc result item that client send to Flow Launcher
128128
/// Typically, we will send back this request model to client after user select the result item
129-
/// But if the request method starts with "Flow.Launcher.", we will invoke the public APIs we expose.
129+
/// But if the request method starts with "Flow Launcher.", we will invoke the public APIs we expose.
130130
/// </summary>
131131
public class JsonRPCResult : Result
132132
{

Flow.Launcher.Core/Plugin/PluginInstaller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ internal static void Install(string path)
8383
// Plugins.Initialize();
8484
//}
8585
if (MessageBox.Show($"You have installed plugin {plugin.Name} successfully.{Environment.NewLine}" +
86-
"Restart Flow.Launcher to take effect?",
86+
"Restart Flow Launcher to take effect?",
8787
"Install plugin", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes)
8888
{
8989
PluginManager.API.RestarApp();

Flow.Launcher.Core/Plugin/PluginManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
namespace Flow.Launcher.Core.Plugin
1414
{
1515
/// <summary>
16-
/// The entry for managing Flow.Launcher plugins
16+
/// The entry for managing Flow Launcher plugins
1717
/// </summary>
1818
public static class PluginManager
1919
{
2020
private static IEnumerable<PluginPair> _contextMenuPlugins;
2121

2222
/// <summary>
23-
/// Directories that will hold Flow.Launcher plugin directory
23+
/// Directories that will hold Flow Launcher plugin directory
2424
/// </summary>
2525

2626
public static List<PluginPair> AllPlugins { get; private set; }

Flow.Launcher.Core/Updater.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public async Task UpdateApp(bool silentIfLatestVersion = true)
6363
if (newReleaseVersion <= currentVersion)
6464
{
6565
if (!silentIfLatestVersion)
66-
MessageBox.Show("You already have the latest Flow.Launcher version");
66+
MessageBox.Show("You already have the latest Flow Launcher version");
6767
updateManager.Dispose();
6868
return;
6969
}
@@ -86,7 +86,7 @@ public async Task UpdateApp(bool silentIfLatestVersion = true)
8686
var targetDestination = updateManager.RootAppDirectory + $"\\app-{newReleaseVersion.ToString()}\\{DataLocation.PortableFolderName}";
8787
FilesFolders.Copy(DataLocation.PortableDataPath, targetDestination);
8888
if (!FilesFolders.VerifyBothFolderFilesEqual(DataLocation.PortableDataPath, targetDestination))
89-
MessageBox.Show(string.Format("Flow.Launcher was not able to move your user profile data to the new update version. Please manually" +
89+
MessageBox.Show(string.Format("Flow Launcher was not able to move your user profile data to the new update version. Please manually" +
9090
"move your profile data folder from {0} to {1}", DataLocation.PortableDataPath, targetDestination));
9191
}
9292
else

Flow.Launcher.Infrastructure/Alphabet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private void InitializePinyinHelpers()
3434
{
3535
Format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
3636

37-
Stopwatch.Normal("|Flow.Launcher.Infrastructure.Alphabet.Initialize|Preload pinyin cache", () =>
37+
Stopwatch.Normal("|Flow Launcher.Infrastructure.Alphabet.Initialize|Preload pinyin cache", () =>
3838
{
3939
_pinyinStorage = new BinaryStorage<Dictionary<string, string[][]>>("Pinyin");
4040

@@ -48,7 +48,7 @@ private void InitializePinyinHelpers()
4848
// force pinyin library static constructor initialize
4949
PinyinHelper.toHanyuPinyinStringArray('T', Format);
5050
});
51-
Log.Info($"|Flow.Launcher.Infrastructure.Alphabet.Initialize|Number of preload pinyin combination<{PinyinCache.Count}>");
51+
Log.Info($"|Flow Launcher.Infrastructure.Alphabet.Initialize|Number of preload pinyin combination<{PinyinCache.Count}>");
5252
}
5353

5454
public string Translate(string str)

Flow.Launcher.Infrastructure/Constant.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static class Constant
1818
public static readonly string RootDirectory = Directory.GetParent(ApplicationDirectory).ToString();
1919

2020
public static readonly string PreinstalledDirectory = Path.Combine(ProgramDirectory, Plugins);
21-
public const string Issue = "https://github.com/jjw24/Flow.Launcher/issues/new";
21+
public const string Issue = "https://github.com/Flow-Launcher/Flow.Launcher/issues/new";
2222
public static readonly string Version = FileVersionInfo.GetVersionInfo(Assembly.Location.NonNull()).ProductVersion;
2323

2424
public static readonly int ThumbnailSize = 64;

Flow.Launcher.Infrastructure/Exception/ExceptionFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ private static string CreateExceptionReport(System.Exception ex)
6262
sb.AppendLine("## Environment");
6363
sb.AppendLine($"* Command Line: {Environment.CommandLine}");
6464
sb.AppendLine($"* Timestamp: {DateTime.Now.ToString(CultureInfo.InvariantCulture)}");
65-
sb.AppendLine($"* Flow.Launcher version: {Constant.Version}");
65+
sb.AppendLine($"* Flow Launcher version: {Constant.Version}");
6666
sb.AppendLine($"* OS Version: {Environment.OSVersion.VersionString}");
6767
sb.AppendLine($"* IntPtr Length: {IntPtr.Size}");
6868
sb.AppendLine($"* x64: {Environment.Is64BitOperatingSystem}");

Flow.Launcher.Plugin/Feature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public interface IExclusiveQuery : IFeatures
2222
/// Represent plugin query will be executed in UI thread directly. Don't do long-running operation in Query method if you implement this interface
2323
/// <remarks>This will improve the performance of instant search like websearch or cmd plugin</remarks>
2424
/// </summary>
25-
[Obsolete("Flow.Launcher is fast enough now, executed on ui thread is no longer needed")]
25+
[Obsolete("Flow Launcher is fast enough now, executed on ui thread is no longer needed")]
2626
public interface IInstantQuery : IFeatures
2727
{
2828
bool IsInstantQuery(string query);

0 commit comments

Comments
 (0)