From c609b4da7ccfdee7bc8f7ffe490b64bd4fa91c10 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Sun, 2 Jan 2022 18:52:56 +1100 Subject: [PATCH 1/9] update plugin language list --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 690c848f634..a2d2b67df24 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ And you can download From 2efe560c2a428d80703f1d875bbb178b4ea354a9 Mon Sep 17 00:00:00 2001 From: DB P Date: Sun, 2 Jan 2022 17:21:51 +0900 Subject: [PATCH 2/9] Update README.md add plugin language logo --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index a2d2b67df24..c64b12f2d25 100644 --- a/README.md +++ b/README.md @@ -161,6 +161,16 @@ And you can download + + + + +

+ + + - Publish your own plugin to flow! Create plugins in [C#](https://flow-launcher.github.io/docs/#/develop-dotnet-plugins), [Python](https://flow-launcher.github.io/docs/#/develop-py-plugins), [JavaScript](https://flow-launcher.github.io/docs/#/nodejs-develop-plugins) or [TypeScript](https://flow-launcher.github.io/docs/#/nodejs-develop-plugins) ### Everything From 6674302de72246f043ad8d8b904de967936322d0 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sun, 2 Jan 2022 23:34:56 +1100 Subject: [PATCH 3/9] update flow's url --- Flow.Launcher.Infrastructure/Constant.cs | 6 ++--- .../ViewModel/SettingWindowViewModel.cs | 2 +- README.md | 22 +++++++++---------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Flow.Launcher.Infrastructure/Constant.cs b/Flow.Launcher.Infrastructure/Constant.cs index cd49217a4d3..57b39e46e47 100644 --- a/Flow.Launcher.Infrastructure/Constant.cs +++ b/Flow.Launcher.Infrastructure/Constant.cs @@ -21,7 +21,7 @@ public static class Constant public static readonly string PreinstalledDirectory = Path.Combine(ProgramDirectory, Plugins); public const string Issue = "https://github.com/Flow-Launcher/Flow.Launcher/issues/new"; public static readonly string Version = FileVersionInfo.GetVersionInfo(Assembly.Location.NonNull()).ProductVersion; - public const string Documentation = "https://flow-launcher.github.io/docs/#/usage-tips"; + public const string Documentation = "https://flowlauncher.com/docs/#/usage-tips"; public static readonly int ThumbnailSize = 64; private static readonly string ImagesDirectory = Path.Combine(ProgramDirectory, "Images"); @@ -43,8 +43,8 @@ public static class Constant public const string Settings = "Settings"; public const string Logs = "Logs"; - public const string Website = "https://flow-launcher.github.io"; + public const string Website = "https://flowlauncher.com"; public const string GitHub = "https://github.com/Flow-Launcher/Flow.Launcher"; - public const string Docs = "https://flow-launcher.github.io/docs"; + public const string Docs = "https://flowlauncher.com/docs"; } } diff --git a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs index 342c85da202..2fc6934d58a 100644 --- a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs +++ b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs @@ -273,7 +273,7 @@ public async Task RefreshExternalPluginsAsync() #region theme - public static string Theme => @"https://flow-launcher.github.io/docs/#/how-to-create-a-theme"; + public static string Theme => @"https://flowlauncher.com/docs/#/how-to-create-a-theme"; public string SelectedTheme { diff --git a/README.md b/README.md index c64b12f2d25..f1df4dab527 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@


- +

@@ -13,7 +13,7 @@
- +

@@ -42,7 +42,7 @@ Dedicated to making your workflow flow more seamless. Search everything from app HotkeysQuestions/SuggestionsDevelopment • - Docs + Docs @@ -159,19 +159,19 @@ And you can download - - - - + + + +

-- Publish your own plugin to flow! Create plugins in [C#](https://flow-launcher.github.io/docs/#/develop-dotnet-plugins), [Python](https://flow-launcher.github.io/docs/#/develop-py-plugins), [JavaScript](https://flow-launcher.github.io/docs/#/nodejs-develop-plugins) or [TypeScript](https://flow-launcher.github.io/docs/#/nodejs-develop-plugins) +- Publish your own plugin to flow! Create plugins in [C#](https://flowlauncher.com/docs/#/develop-dotnet-plugins), [Python](https://flowlauncher.com/docs/#/develop-py-plugins), [JavaScript](https://flowlauncher.com/docs/#/nodejs-develop-plugins) or [TypeScript](https://flowlauncher.com/docs/#/nodejs-develop-plugins) ### Everything @@ -200,7 +200,7 @@ And you can download -......and more! +......and more! @@ -256,7 +256,7 @@ And you can download From 7cbaf736988853a0c57f428eb79c7a158adbda35 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sun, 2 Jan 2022 23:37:28 +1100 Subject: [PATCH 4/9] format --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index f1df4dab527..2d702b7a293 100644 --- a/README.md +++ b/README.md @@ -161,6 +161,7 @@ And you can download @@ -169,10 +170,6 @@ And you can download

- - -- Publish your own plugin to flow! Create plugins in [C#](https://flowlauncher.com/docs/#/develop-dotnet-plugins), [Python](https://flowlauncher.com/docs/#/develop-py-plugins), [JavaScript](https://flowlauncher.com/docs/#/nodejs-develop-plugins) or [TypeScript](https://flowlauncher.com/docs/#/nodejs-develop-plugins) - ### Everything From 178d56a4e46f95f38b2e76f90eb728e11f9e497f Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sun, 2 Jan 2022 23:57:13 +1100 Subject: [PATCH 5/9] update plugin section --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 2d702b7a293..9ed6a4f4823 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,6 @@ And you can download From 04241263ee721d4105f258f8fc5040e562a98971 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Mon, 3 Jan 2022 00:08:30 +1100 Subject: [PATCH 6/9] format --- Flow.Launcher/ViewModel/PluginViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/ViewModel/PluginViewModel.cs b/Flow.Launcher/ViewModel/PluginViewModel.cs index 209198822e0..738bd0ec40a 100644 --- a/Flow.Launcher/ViewModel/PluginViewModel.cs +++ b/Flow.Launcher/ViewModel/PluginViewModel.cs @@ -55,4 +55,4 @@ public void ChangePriority(int newPriority) public static bool IsActionKeywordRegistered(string newActionKeyword) => PluginManager.ActionKeywordRegistered(newActionKeyword); } -} \ No newline at end of file +} From e7b45b7484714cd73016e9bdc536ceec148600eb Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Mon, 3 Jan 2022 01:52:44 +1100 Subject: [PATCH 7/9] fix plugin name typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ed6a4f4823..c43cee744f7 100644 --- a/README.md +++ b/README.md @@ -193,7 +193,7 @@ And you can download -### Windows Walker +### Window Walker ......and more! From ea495b785660b2bb13c9363dfbc34c670d9ac915 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Mon, 3 Jan 2022 14:53:33 +1100 Subject: [PATCH 8/9] fix link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c43cee744f7..5e824077ac6 100644 --- a/README.md +++ b/README.md @@ -164,7 +164,7 @@ And you can download - +

From 54a705135e101e2d61e0d4c65a05a759531f387d Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 5 Jan 2022 18:32:40 +1100 Subject: [PATCH 9/9] formatting --- Flow.Launcher.Infrastructure/Logger/Log.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Infrastructure/Logger/Log.cs b/Flow.Launcher.Infrastructure/Logger/Log.cs index 26e305ace2a..75f208c9ed1 100644 --- a/Flow.Launcher.Infrastructure/Logger/Log.cs +++ b/Flow.Launcher.Infrastructure/Logger/Log.cs @@ -211,4 +211,4 @@ public static void Warn(string message) LogInternal(message, LogLevel.Warn); } } -} \ No newline at end of file +}