diff --git a/.gitignore b/.gitignore index 347bd15e13e..ceb2b8d63cb 100644 --- a/.gitignore +++ b/.gitignore @@ -285,7 +285,7 @@ paket-files/ # New to Visual Studio *.VC.db -## Wox specific +## Flow.Launcher specific Output/* /Python.Runtime.dll Thumbs.db diff --git a/Doc/app.psd b/Doc/app.psd index 833fd6529ad..952661241c4 100644 Binary files a/Doc/app.psd and b/Doc/app.psd differ diff --git a/Doc/app_error.psd b/Doc/app_error.psd index 174e9cb62de..18a0056f13e 100644 Binary files a/Doc/app_error.psd and b/Doc/app_error.psd differ diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index affc8518ebf..4ae8fb4b7c7 100644 --- a/ISSUE_TEMPLATE.md +++ b/ISSUE_TEMPLATE.md @@ -37,10 +37,10 @@ Known problems for 1.3.183: We are aware of the following issues and the following workarounds exist: - 1. `System.NullReferenceException`: https://github.com/Wox-launcher/Wox/releases/tag/v1.3.475 + 1. `System.NullReferenceException`: https://github.com/Flow.Launcher-launcher/Flow.Launcher/releases/tag/v1.3.475 2. `System.UriFormatException`: delete your old theme file - 3. `System.Threading.Tasks.TaskCanceledException`: https://github.com/Wox-launcher/Wox/releases/tag/v1.3.475 - 4. `System.AggregateException`: see https://github.com/Wox-launcher/Wox/issues/1777 + 3. `System.Threading.Tasks.TaskCanceledException`: https://github.com/Flow.Launcher-launcher/Flow.Launcher/releases/tag/v1.3.475 + 4. `System.AggregateException`: see https://github.com/Flow.Launcher-launcher/Flow.Launcher/issues/1777 If none of them match your case, please continue. @@ -63,11 +63,11 @@ 2. 3. -### Wox Error Window text +### Flow.Launcher Error Window text (paste here) @@ -76,14 +76,14 @@ ### Detailed logs diff --git a/JsonRPC/wox.py b/JsonRPC/wox.py index 2e65a629d6d..0074d13479f 100644 --- a/JsonRPC/wox.py +++ b/JsonRPC/wox.py @@ -4,9 +4,9 @@ import sys import inspect -class Wox(object): +class Flow.Launcher(object): """ - Wox python plugin base + Flow.Launcher python plugin base """ def __init__(self): @@ -42,74 +42,74 @@ def debug(self,msg): print("DEBUG:{}".format(msg)) sys.exit() -class WoxAPI(object): +class Flow.LauncherAPI(object): @classmethod def change_query(cls,query,requery = False): """ change wox query """ - print(json.dumps({"method": "Wox.ChangeQuery","parameters":[query,requery]})) + print(json.dumps({"method": "Flow.Launcher.ChangeQuery","parameters":[query,requery]})) @classmethod def shell_run(cls,cmd): """ run shell commands """ - print(json.dumps({"method": "Wox.ShellRun","parameters":[cmd]})) + print(json.dumps({"method": "Flow.Launcher.ShellRun","parameters":[cmd]})) @classmethod def close_app(cls): """ close wox """ - print(json.dumps({"method": "Wox.CloseApp","parameters":[]})) + print(json.dumps({"method": "Flow.Launcher.CloseApp","parameters":[]})) @classmethod def hide_app(cls): """ hide wox """ - print(json.dumps({"method": "Wox.HideApp","parameters":[]})) + print(json.dumps({"method": "Flow.Launcher.HideApp","parameters":[]})) @classmethod def show_app(cls): """ show wox """ - print(json.dumps({"method": "Wox.ShowApp","parameters":[]})) + print(json.dumps({"method": "Flow.Launcher.ShowApp","parameters":[]})) @classmethod def show_msg(cls,title,sub_title,ico_path=""): """ show messagebox """ - print(json.dumps({"method": "Wox.ShowMsg","parameters":[title,sub_title,ico_path]})) + print(json.dumps({"method": "Flow.Launcher.ShowMsg","parameters":[title,sub_title,ico_path]})) @classmethod def open_setting_dialog(cls): """ open setting dialog """ - print(json.dumps({"method": "Wox.OpenSettingDialog","parameters":[]})) + print(json.dumps({"method": "Flow.Launcher.OpenSettingDialog","parameters":[]})) @classmethod def start_loadingbar(cls): """ start loading animation in wox """ - print(json.dumps({"method": "Wox.StartLoadingBar","parameters":[]})) + print(json.dumps({"method": "Flow.Launcher.StartLoadingBar","parameters":[]})) @classmethod def stop_loadingbar(cls): """ stop loading animation in wox """ - print(json.dumps({"method": "Wox.StopLoadingBar","parameters":[]})) + print(json.dumps({"method": "Flow.Launcher.StopLoadingBar","parameters":[]})) @classmethod def reload_plugins(cls): """ reload all wox plugins """ - print(json.dumps({"method": "Wox.ReloadPlugins","parameters":[]})) + print(json.dumps({"method": "Flow.Launcher.ReloadPlugins","parameters":[]})) diff --git a/Plugins/HelloWorldCSharp/HelloWorldCSharp.csproj b/Plugins/HelloWorldCSharp/HelloWorldCSharp.csproj index 8c16ff5aa7e..8f1867db550 100644 --- a/Plugins/HelloWorldCSharp/HelloWorldCSharp.csproj +++ b/Plugins/HelloWorldCSharp/HelloWorldCSharp.csproj @@ -43,7 +43,7 @@ - + diff --git a/Plugins/HelloWorldCSharp/Main.cs b/Plugins/HelloWorldCSharp/Main.cs index 4f17cd43d7e..e12eb2d14e8 100644 --- a/Plugins/HelloWorldCSharp/Main.cs +++ b/Plugins/HelloWorldCSharp/Main.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -using Wox.Plugin; +using Flow.Launcher.Plugin; namespace HelloWorldCSharp { diff --git a/Plugins/HelloWorldCSharp/plugin.json b/Plugins/HelloWorldCSharp/plugin.json index b7edbd6a9a7..56a313fae9b 100644 --- a/Plugins/HelloWorldCSharp/plugin.json +++ b/Plugins/HelloWorldCSharp/plugin.json @@ -6,7 +6,7 @@ "Author":"happlebao", "Version":"1.0.0", "Language":"csharp", - "Website":"https://github.com/Wox-launcher/Wox", + "Website":"https://github.com/Flow.Launcher-launcher/Flow.Launcher", "ExecuteFileName":"HelloWorldCSharp.dll", "IcoPath":"app.png", "Disabled": true diff --git a/Plugins/HelloWorldPython/main.py b/Plugins/HelloWorldPython/main.py index e7b7edfc247..826e5c9a4bc 100644 --- a/Plugins/HelloWorldPython/main.py +++ b/Plugins/HelloWorldPython/main.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- -from wox import Wox +from wox import Flow.Launcher -class HelloWorld(Wox): +class HelloWorld(Flow.Launcher): def query(self, query): results = [] diff --git a/Plugins/HelloWorldPython/plugin.json b/Plugins/HelloWorldPython/plugin.json index a928a5ae5bc..9e449d758f3 100644 --- a/Plugins/HelloWorldPython/plugin.json +++ b/Plugins/HelloWorldPython/plugin.json @@ -6,7 +6,7 @@ "Author":"happlebao", "Version":"1.0", "Language":"python", - "Website":"https://github.com/Wox-launcher/Wox", + "Website":"https://github.com/Flow.Launcher-launcher/Flow.Launcher", "IcoPath":"Images\\app.png", "ExecuteFileName":"main.py" } diff --git a/Plugins/Wox.Plugin.BrowserBookmark/Bookmark.cs b/Plugins/Wox.Plugin.BrowserBookmark/Bookmark.cs index 700f253e8f2..1149042ddce 100644 --- a/Plugins/Wox.Plugin.BrowserBookmark/Bookmark.cs +++ b/Plugins/Wox.Plugin.BrowserBookmark/Bookmark.cs @@ -5,7 +5,7 @@ using System.Text; -namespace Wox.Plugin.BrowserBookmark +namespace Flow.Launcher.Plugin.BrowserBookmark { public class Bookmark : IEquatable, IEqualityComparer { diff --git a/Plugins/Wox.Plugin.BrowserBookmark/ChromeBookmarks.cs b/Plugins/Wox.Plugin.BrowserBookmark/ChromeBookmarks.cs index 16e5c328cb6..def7f3abeca 100644 --- a/Plugins/Wox.Plugin.BrowserBookmark/ChromeBookmarks.cs +++ b/Plugins/Wox.Plugin.BrowserBookmark/ChromeBookmarks.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text.RegularExpressions; -namespace Wox.Plugin.BrowserBookmark +namespace Flow.Launcher.Plugin.BrowserBookmark { public class ChromeBookmarks { diff --git a/Plugins/Wox.Plugin.BrowserBookmark/Commands/Bookmarks.cs b/Plugins/Wox.Plugin.BrowserBookmark/Commands/Bookmarks.cs index 049b8f1668d..fab372834c3 100644 --- a/Plugins/Wox.Plugin.BrowserBookmark/Commands/Bookmarks.cs +++ b/Plugins/Wox.Plugin.BrowserBookmark/Commands/Bookmarks.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; using System.Linq; -using Wox.Infrastructure; +using Flow.Launcher.Infrastructure; -namespace Wox.Plugin.BrowserBookmark.Commands +namespace Flow.Launcher.Plugin.BrowserBookmark.Commands { internal static class Bookmarks { diff --git a/Plugins/Wox.Plugin.BrowserBookmark/FirefoxBookmarks.cs b/Plugins/Wox.Plugin.BrowserBookmark/FirefoxBookmarks.cs index 7686501cd77..b718da3cf80 100644 --- a/Plugins/Wox.Plugin.BrowserBookmark/FirefoxBookmarks.cs +++ b/Plugins/Wox.Plugin.BrowserBookmark/FirefoxBookmarks.cs @@ -4,7 +4,7 @@ using System.IO; using System.Linq; -namespace Wox.Plugin.BrowserBookmark +namespace Flow.Launcher.Plugin.BrowserBookmark { public class FirefoxBookmarks { diff --git a/Plugins/Wox.Plugin.BrowserBookmark/Main.cs b/Plugins/Wox.Plugin.BrowserBookmark/Main.cs index a616edce081..8f6b9f387fe 100644 --- a/Plugins/Wox.Plugin.BrowserBookmark/Main.cs +++ b/Plugins/Wox.Plugin.BrowserBookmark/Main.cs @@ -1,13 +1,13 @@ using System.Collections.Generic; using System.Linq; using System.Windows.Controls; -using Wox.Infrastructure.Storage; -using Wox.Plugin.BrowserBookmark.Commands; -using Wox.Plugin.BrowserBookmark.Models; -using Wox.Plugin.BrowserBookmark.Views; -using Wox.Plugin.SharedCommands; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Plugin.BrowserBookmark.Commands; +using Flow.Launcher.Plugin.BrowserBookmark.Models; +using Flow.Launcher.Plugin.BrowserBookmark.Views; +using Flow.Launcher.Plugin.SharedCommands; -namespace Wox.Plugin.BrowserBookmark +namespace Flow.Launcher.Plugin.BrowserBookmark { public class Main : ISettingProvider, IPlugin, IReloadable, IPluginI18n, ISavable { diff --git a/Plugins/Wox.Plugin.BrowserBookmark/Models/Settings.cs b/Plugins/Wox.Plugin.BrowserBookmark/Models/Settings.cs index 41d742fe6b3..dc444fd7365 100644 --- a/Plugins/Wox.Plugin.BrowserBookmark/Models/Settings.cs +++ b/Plugins/Wox.Plugin.BrowserBookmark/Models/Settings.cs @@ -1,4 +1,4 @@ -namespace Wox.Plugin.BrowserBookmark.Models +namespace Flow.Launcher.Plugin.BrowserBookmark.Models { public class Settings : BaseModel { diff --git a/Plugins/Wox.Plugin.BrowserBookmark/Views/SettingsControl.xaml b/Plugins/Wox.Plugin.BrowserBookmark/Views/SettingsControl.xaml index 93b272fcadf..a9850b5aad4 100644 --- a/Plugins/Wox.Plugin.BrowserBookmark/Views/SettingsControl.xaml +++ b/Plugins/Wox.Plugin.BrowserBookmark/Views/SettingsControl.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for BrowserBookmark.xaml diff --git a/Plugins/Wox.Plugin.BrowserBookmark/Wox.Plugin.BrowserBookmark.csproj b/Plugins/Wox.Plugin.BrowserBookmark/Wox.Plugin.BrowserBookmark.csproj index 7b289a51c9a..b59b114fee1 100644 --- a/Plugins/Wox.Plugin.BrowserBookmark/Wox.Plugin.BrowserBookmark.csproj +++ b/Plugins/Wox.Plugin.BrowserBookmark/Wox.Plugin.BrowserBookmark.csproj @@ -4,8 +4,8 @@ netcoreapp3.1 {9B130CC5-14FB-41FF-B310-0A95B6894C37} Properties - Wox.Plugin.BrowserBookmark - Wox.Plugin.BrowserBookmark + Flow.Launcher.Plugin.BrowserBookmark + Flow.Launcher.Plugin.BrowserBookmark false false @@ -14,7 +14,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.BrowserBookmark\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.BrowserBookmark\ DEBUG;TRACE prompt 4 @@ -24,7 +24,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.BrowserBookmark\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.BrowserBookmark\ TRACE prompt 4 @@ -55,8 +55,8 @@ - - + + diff --git a/Plugins/Wox.Plugin.BrowserBookmark/plugin.json b/Plugins/Wox.Plugin.BrowserBookmark/plugin.json index 7d40e4bfc8c..5d072f97128 100644 --- a/Plugins/Wox.Plugin.BrowserBookmark/plugin.json +++ b/Plugins/Wox.Plugin.BrowserBookmark/plugin.json @@ -7,6 +7,6 @@ "Version":"1.1", "Language":"csharp", "Website":"http://www.getwox.com/plugin", - "ExecuteFileName":"Wox.Plugin.browserBookmark.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.browserBookmark.dll", "IcoPath":"Images\\bookmark.png" } diff --git a/Plugins/Wox.Plugin.Calculator/DecimalSeparator.cs b/Plugins/Wox.Plugin.Calculator/DecimalSeparator.cs index 5aad9b39acb..0e728780b8a 100644 --- a/Plugins/Wox.Plugin.Calculator/DecimalSeparator.cs +++ b/Plugins/Wox.Plugin.Calculator/DecimalSeparator.cs @@ -5,9 +5,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -using Wox.Core; +using Flow.Launcher.Core; -namespace Wox.Plugin.Caculator +namespace Flow.Launcher.Plugin.Caculator { [TypeConverter(typeof(LocalizationConverter))] public enum DecimalSeparator diff --git a/Plugins/Wox.Plugin.Calculator/Languages/de.xaml b/Plugins/Wox.Plugin.Calculator/Languages/de.xaml index fe85d42e562..219fa59ccb3 100644 --- a/Plugins/Wox.Plugin.Calculator/Languages/de.xaml +++ b/Plugins/Wox.Plugin.Calculator/Languages/de.xaml @@ -3,7 +3,7 @@ xmlns:system="clr-namespace:System;assembly=mscorlib"> Rechner - Stellt mathematische Berechnungen bereit.(Versuche 5*3-2 in Wox) + Stellt mathematische Berechnungen bereit.(Versuche 5*3-2 in Flow.Launcher) Keine Zahl (NaN) Ausdruck falsch oder nicht vollständig (Klammern vergessen?) Diese Zahl in die Zwischenablage kopieren diff --git a/Plugins/Wox.Plugin.Calculator/Languages/en.xaml b/Plugins/Wox.Plugin.Calculator/Languages/en.xaml index ef33ecb9c41..063fdec0f05 100644 --- a/Plugins/Wox.Plugin.Calculator/Languages/en.xaml +++ b/Plugins/Wox.Plugin.Calculator/Languages/en.xaml @@ -3,7 +3,7 @@ xmlns:system="clr-namespace:System;assembly=mscorlib"> Calculator - Allows to do mathematical calculations.(Try 5*3-2 in Wox) + Allows to do mathematical calculations.(Try 5*3-2 in Flow.Launcher) Not a number (NaN) Expression wrong or incomplete (Did you forget some parentheses?) Copy this number to the clipboard diff --git a/Plugins/Wox.Plugin.Calculator/Languages/pl.xaml b/Plugins/Wox.Plugin.Calculator/Languages/pl.xaml index c93c5e802b2..dfda84851e0 100644 --- a/Plugins/Wox.Plugin.Calculator/Languages/pl.xaml +++ b/Plugins/Wox.Plugin.Calculator/Languages/pl.xaml @@ -3,6 +3,6 @@ xmlns:system="clr-namespace:System;assembly=mscorlib"> Kalkulator - Szybkie wykonywanie obliczeń matematycznych. (Spróbuj wpisać 5*3-2 w oknie Woxa) + Szybkie wykonywanie obliczeń matematycznych. (Spróbuj wpisać 5*3-2 w oknie Flow.Launchera) \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Calculator/Languages/zh-cn.xaml b/Plugins/Wox.Plugin.Calculator/Languages/zh-cn.xaml index 1385f4565ea..a1f2dbf2665 100644 --- a/Plugins/Wox.Plugin.Calculator/Languages/zh-cn.xaml +++ b/Plugins/Wox.Plugin.Calculator/Languages/zh-cn.xaml @@ -3,6 +3,6 @@ xmlns:system="clr-namespace:System;assembly=mscorlib"> 计算器 - 为Wox提供数学计算能力。(试着在Wox输入 5*3-2) + 为Flow.Launcher提供数学计算能力。(试着在Flow.Launcher输入 5*3-2) \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Calculator/Languages/zh-tw.xaml b/Plugins/Wox.Plugin.Calculator/Languages/zh-tw.xaml index 08cda08d94c..f9e031725b2 100644 --- a/Plugins/Wox.Plugin.Calculator/Languages/zh-tw.xaml +++ b/Plugins/Wox.Plugin.Calculator/Languages/zh-tw.xaml @@ -3,6 +3,6 @@ xmlns:system="clr-namespace:System;assembly=mscorlib"> 計算機 - 為 Wox 提供數學計算功能。(試著在 Wox 輸入 5*3-2) + 為 Flow.Launcher 提供數學計算功能。(試著在 Flow.Launcher 輸入 5*3-2) diff --git a/Plugins/Wox.Plugin.Calculator/Main.cs b/Plugins/Wox.Plugin.Calculator/Main.cs index 195138c0a81..6e73f7d44ce 100644 --- a/Plugins/Wox.Plugin.Calculator/Main.cs +++ b/Plugins/Wox.Plugin.Calculator/Main.cs @@ -6,11 +6,11 @@ using System.Windows; using System.Windows.Controls; using Mages.Core; -using Wox.Infrastructure.Storage; -using Wox.Plugin.Caculator.ViewModels; -using Wox.Plugin.Caculator.Views; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Plugin.Caculator.ViewModels; +using Flow.Launcher.Plugin.Caculator.Views; -namespace Wox.Plugin.Caculator +namespace Flow.Launcher.Plugin.Caculator { public class Main : IPlugin, IPluginI18n, ISavable, ISettingProvider { diff --git a/Plugins/Wox.Plugin.Calculator/NumberTranslator.cs b/Plugins/Wox.Plugin.Calculator/NumberTranslator.cs index 448301d4fb4..528b21e4dec 100644 --- a/Plugins/Wox.Plugin.Calculator/NumberTranslator.cs +++ b/Plugins/Wox.Plugin.Calculator/NumberTranslator.cs @@ -6,7 +6,7 @@ using System.Text.RegularExpressions; using System.Threading.Tasks; -namespace Wox.Plugin.Caculator +namespace Flow.Launcher.Plugin.Caculator { /// /// Tries to convert all numbers in a text from one culture format to another. diff --git a/Plugins/Wox.Plugin.Calculator/Settings.cs b/Plugins/Wox.Plugin.Calculator/Settings.cs index ce01f2da04b..10cee364b08 100644 --- a/Plugins/Wox.Plugin.Calculator/Settings.cs +++ b/Plugins/Wox.Plugin.Calculator/Settings.cs @@ -4,7 +4,7 @@ using System.Text; using System.Threading.Tasks; -namespace Wox.Plugin.Caculator +namespace Flow.Launcher.Plugin.Caculator { public class Settings { diff --git a/Plugins/Wox.Plugin.Calculator/ViewModels/SettingsViewModel.cs b/Plugins/Wox.Plugin.Calculator/ViewModels/SettingsViewModel.cs index 8550f47a572..bc5433254c5 100644 --- a/Plugins/Wox.Plugin.Calculator/ViewModels/SettingsViewModel.cs +++ b/Plugins/Wox.Plugin.Calculator/ViewModels/SettingsViewModel.cs @@ -3,10 +3,10 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -using Wox.Infrastructure.Storage; -using Wox.Infrastructure.UserSettings; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Infrastructure.UserSettings; -namespace Wox.Plugin.Caculator.ViewModels +namespace Flow.Launcher.Plugin.Caculator.ViewModels { public class SettingsViewModel : BaseModel, ISavable { diff --git a/Plugins/Wox.Plugin.Calculator/Views/CalculatorSettings.xaml b/Plugins/Wox.Plugin.Calculator/Views/CalculatorSettings.xaml index b7bd188e6b6..f13ffc62a4d 100644 --- a/Plugins/Wox.Plugin.Calculator/Views/CalculatorSettings.xaml +++ b/Plugins/Wox.Plugin.Calculator/Views/CalculatorSettings.xaml @@ -1,12 +1,12 @@ - diff --git a/Plugins/Wox.Plugin.Calculator/Views/CalculatorSettings.xaml.cs b/Plugins/Wox.Plugin.Calculator/Views/CalculatorSettings.xaml.cs index c5f4b76f067..807bdca0074 100644 --- a/Plugins/Wox.Plugin.Calculator/Views/CalculatorSettings.xaml.cs +++ b/Plugins/Wox.Plugin.Calculator/Views/CalculatorSettings.xaml.cs @@ -12,9 +12,9 @@ using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; -using Wox.Plugin.Caculator.ViewModels; +using Flow.Launcher.Plugin.Caculator.ViewModels; -namespace Wox.Plugin.Caculator.Views +namespace Flow.Launcher.Plugin.Caculator.Views { /// /// Interaction logic for CalculatorSettings.xaml diff --git a/Plugins/Wox.Plugin.Calculator/Wox.Plugin.Calculator.csproj b/Plugins/Wox.Plugin.Calculator/Wox.Plugin.Calculator.csproj index e0c7ce3bd74..d0bc453835e 100644 --- a/Plugins/Wox.Plugin.Calculator/Wox.Plugin.Calculator.csproj +++ b/Plugins/Wox.Plugin.Calculator/Wox.Plugin.Calculator.csproj @@ -4,8 +4,8 @@ netcoreapp3.1 {59BD9891-3837-438A-958D-ADC7F91F6F7E} Properties - Wox.Plugin.Caculator - Wox.Plugin.Caculator + Flow.Launcher.Plugin.Caculator + Flow.Launcher.Plugin.Caculator true false false @@ -15,7 +15,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.Caculator\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Caculator\ DEBUG;TRACE prompt 4 @@ -25,7 +25,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.Caculator\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Caculator\ TRACE prompt 4 @@ -39,7 +39,7 @@ - + diff --git a/Plugins/Wox.Plugin.Calculator/plugin.json b/Plugins/Wox.Plugin.Calculator/plugin.json index 925099548cc..b26dc9b3878 100644 --- a/Plugins/Wox.Plugin.Calculator/plugin.json +++ b/Plugins/Wox.Plugin.Calculator/plugin.json @@ -2,11 +2,11 @@ "ID":"CEA0FDFC6D3B4085823D60DC76F28855", "ActionKeyword":"*", "Name":"Calculator", - "Description":"Provide mathematical calculations.(Try 5*3-2 in Wox)", + "Description":"Provide mathematical calculations.(Try 5*3-2 in Flow.Launcher)", "Author":"cxfksword", "Version":"1.0.0", "Language":"csharp", "Website":"http://www.wox.one/plugin", - "ExecuteFileName":"Wox.Plugin.Caculator.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.Caculator.dll", "IcoPath":"Images\\calculator.png" } \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Color/Languages/de.xaml b/Plugins/Wox.Plugin.Color/Languages/de.xaml index becb06305e9..360369b4814 100644 --- a/Plugins/Wox.Plugin.Color/Languages/de.xaml +++ b/Plugins/Wox.Plugin.Color/Languages/de.xaml @@ -3,6 +3,6 @@ xmlns:system="clr-namespace:System;assembly=mscorlib"> Farben - Stellt eine HEX-Farben Vorschau bereit. (Versuche #000 in Wox) + Stellt eine HEX-Farben Vorschau bereit. (Versuche #000 in Flow.Launcher) \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Color/Languages/en.xaml b/Plugins/Wox.Plugin.Color/Languages/en.xaml index f27231ba5bc..3f2351f94bd 100644 --- a/Plugins/Wox.Plugin.Color/Languages/en.xaml +++ b/Plugins/Wox.Plugin.Color/Languages/en.xaml @@ -3,6 +3,6 @@ xmlns:system="clr-namespace:System;assembly=mscorlib"> Colors - Allows to preview colors using hex values.(Try #000 in Wox) + Allows to preview colors using hex values.(Try #000 in Flow.Launcher) \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Color/Languages/pl.xaml b/Plugins/Wox.Plugin.Color/Languages/pl.xaml index 2a8361eb292..28c3052cc9d 100644 --- a/Plugins/Wox.Plugin.Color/Languages/pl.xaml +++ b/Plugins/Wox.Plugin.Color/Languages/pl.xaml @@ -3,6 +3,6 @@ xmlns:system="clr-namespace:System;assembly=mscorlib"> Kolory - Podgląd kolorów po wpisaniu ich kodu szesnastkowego. (Spróbuj wpisać #000 w oknie Woxa) + Podgląd kolorów po wpisaniu ich kodu szesnastkowego. (Spróbuj wpisać #000 w oknie Flow.Launchera) \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Color/Languages/zh-cn.xaml b/Plugins/Wox.Plugin.Color/Languages/zh-cn.xaml index 634f3d0f7e9..168b1343030 100644 --- a/Plugins/Wox.Plugin.Color/Languages/zh-cn.xaml +++ b/Plugins/Wox.Plugin.Color/Languages/zh-cn.xaml @@ -3,6 +3,6 @@ xmlns:system="clr-namespace:System;assembly=mscorlib"> 颜色 - 提供在Wox查询hex颜色。(尝试在Wox中输入#000) + 提供在Flow.Launcher查询hex颜色。(尝试在Flow.Launcher中输入#000) \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Color/Languages/zh-tw.xaml b/Plugins/Wox.Plugin.Color/Languages/zh-tw.xaml index 2c320cb32d2..218f4dcf20b 100644 --- a/Plugins/Wox.Plugin.Color/Languages/zh-tw.xaml +++ b/Plugins/Wox.Plugin.Color/Languages/zh-tw.xaml @@ -3,5 +3,5 @@ xmlns:system="clr-namespace:System;assembly=mscorlib"> 顏色 - 提供在 Wox 查詢 hex 顏色。(試著在 Wox 中輸入 #000) + 提供在 Flow.Launcher 查詢 hex 顏色。(試著在 Flow.Launcher 中輸入 #000) diff --git a/Plugins/Wox.Plugin.Color/Main.cs b/Plugins/Wox.Plugin.Color/Main.cs index 7ae6f453ade..b3414061a09 100644 --- a/Plugins/Wox.Plugin.Color/Main.cs +++ b/Plugins/Wox.Plugin.Color/Main.cs @@ -6,7 +6,7 @@ using System.Linq; using System.Windows; -namespace Wox.Plugin.Color +namespace Flow.Launcher.Plugin.Color { public sealed class ColorsPlugin : IPlugin, IPluginI18n { diff --git a/Plugins/Wox.Plugin.Color/Wox.Plugin.Color.csproj b/Plugins/Wox.Plugin.Color/Wox.Plugin.Color.csproj index 38e84fa2b5d..fb03fda79b9 100644 --- a/Plugins/Wox.Plugin.Color/Wox.Plugin.Color.csproj +++ b/Plugins/Wox.Plugin.Color/Wox.Plugin.Color.csproj @@ -4,8 +4,8 @@ netcoreapp3.1 {F35190AA-4758-4D9E-A193-E3BDF6AD3567} Properties - Wox.Plugin.Color - Wox.Plugin.Color + Flow.Launcher.Plugin.Color + Flow.Launcher.Plugin.Color false false @@ -14,7 +14,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.Color\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Color\ DEBUG;TRACE prompt 4 @@ -24,7 +24,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.Color\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Color\ TRACE prompt 4 @@ -44,8 +44,8 @@ - - + + diff --git a/Plugins/Wox.Plugin.Color/plugin.json b/Plugins/Wox.Plugin.Color/plugin.json index 7acb1345173..bad94c9e61f 100644 --- a/Plugins/Wox.Plugin.Color/plugin.json +++ b/Plugins/Wox.Plugin.Color/plugin.json @@ -2,11 +2,11 @@ "ID":"9B36CE6181FC47FBB597AA2C29CD9B0A", "ActionKeyword":"*", "Name":"Colors", - "Description":"Provide hex color preview.(Try #000 in Wox)", + "Description":"Provide hex color preview.(Try #000 in Flow.Launcher)", "Author":"qianlifeng", "Version":"1.0.0", "Language":"csharp", "Website":"http://www.wox.one/plugin", - "ExecuteFileName":"Wox.Plugin.Color.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.Color.dll", "IcoPath":"Images\\color.png" } diff --git a/Plugins/Wox.Plugin.ControlPanel/ControlPanelItem.cs b/Plugins/Wox.Plugin.ControlPanel/ControlPanelItem.cs index a63c9a19c6d..d821107b606 100644 --- a/Plugins/Wox.Plugin.ControlPanel/ControlPanelItem.cs +++ b/Plugins/Wox.Plugin.ControlPanel/ControlPanelItem.cs @@ -1,7 +1,7 @@ using System.Diagnostics; using System.Drawing; -namespace Wox.Plugin.ControlPanel +namespace Flow.Launcher.Plugin.ControlPanel { //from:https://raw.githubusercontent.com/CoenraadS/Windows-Control-Panel-Items public class ControlPanelItem diff --git a/Plugins/Wox.Plugin.ControlPanel/ControlPanelList.cs b/Plugins/Wox.Plugin.ControlPanel/ControlPanelList.cs index 49c4b3831f2..fdcffb0b3c1 100644 --- a/Plugins/Wox.Plugin.ControlPanel/ControlPanelList.cs +++ b/Plugins/Wox.Plugin.ControlPanel/ControlPanelList.cs @@ -6,7 +6,7 @@ using System.Text; using Microsoft.Win32; -namespace Wox.Plugin.ControlPanel +namespace Flow.Launcher.Plugin.ControlPanel { //from:https://raw.githubusercontent.com/CoenraadS/Windows-Control-Panel-Items public static class ControlPanelList diff --git a/Plugins/Wox.Plugin.ControlPanel/Main.cs b/Plugins/Wox.Plugin.ControlPanel/Main.cs index 77b57fe865e..1f9e1ffe5f0 100644 --- a/Plugins/Wox.Plugin.ControlPanel/Main.cs +++ b/Plugins/Wox.Plugin.ControlPanel/Main.cs @@ -4,9 +4,9 @@ using System.IO; using System.Linq; using System.Threading.Tasks; -using Wox.Infrastructure; +using Flow.Launcher.Infrastructure; -namespace Wox.Plugin.ControlPanel +namespace Flow.Launcher.Plugin.ControlPanel { public class Main : IPlugin, IPluginI18n { diff --git a/Plugins/Wox.Plugin.ControlPanel/Wox.Plugin.ControlPanel.csproj b/Plugins/Wox.Plugin.ControlPanel/Wox.Plugin.ControlPanel.csproj index 14d7db95fc8..c75b7aa3806 100644 --- a/Plugins/Wox.Plugin.ControlPanel/Wox.Plugin.ControlPanel.csproj +++ b/Plugins/Wox.Plugin.ControlPanel/Wox.Plugin.ControlPanel.csproj @@ -4,8 +4,8 @@ netcoreapp3.1 {1EE20B48-82FB-48A2-8086-675D6DDAB4F0} Properties - Wox.Plugin.ControlPanel - Wox.Plugin.ControlPanel + Flow.Launcher.Plugin.ControlPanel + Flow.Launcher.Plugin.ControlPanel false false @@ -14,7 +14,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.ControlPanel\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.ControlPanel\ DEBUG;TRACE prompt 4 @@ -24,7 +24,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.ControlPanel\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.ControlPanel\ TRACE prompt 4 @@ -38,8 +38,8 @@ - - + + diff --git a/Plugins/Wox.Plugin.ControlPanel/plugin.json b/Plugins/Wox.Plugin.ControlPanel/plugin.json index 7dc45520978..36e3da4f3a2 100644 --- a/Plugins/Wox.Plugin.ControlPanel/plugin.json +++ b/Plugins/Wox.Plugin.ControlPanel/plugin.json @@ -7,6 +7,6 @@ "Version":"1.0.0", "Language":"csharp", "Website":"http://www.wox.one/plugin", - "ExecuteFileName":"Wox.Plugin.ControlPanel.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.ControlPanel.dll", "IcoPath":"Images\\ControlPanel.png" } diff --git a/Plugins/Wox.Plugin.Everything/Everything/EverythingAPI.cs b/Plugins/Wox.Plugin.Everything/Everything/EverythingAPI.cs index b9d2098ebd9..77875e1ec82 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/EverythingAPI.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/EverythingAPI.cs @@ -3,10 +3,10 @@ using System.Runtime.InteropServices; using System.Text; using System.Threading; -using Wox.Infrastructure.Logger; -using Wox.Plugin.Everything.Everything.Exceptions; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Plugin.Everything.Everything.Exceptions; -namespace Wox.Plugin.Everything.Everything +namespace Flow.Launcher.Plugin.Everything.Everything { public interface IEverythingApi { diff --git a/Plugins/Wox.Plugin.Everything/Everything/EverythingApiDllImport.cs b/Plugins/Wox.Plugin.Everything/Everything/EverythingApiDllImport.cs index 6c056a0f574..34afebe2305 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/EverythingApiDllImport.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/EverythingApiDllImport.cs @@ -1,7 +1,7 @@ using System.Runtime.InteropServices; using System.Text; -namespace Wox.Plugin.Everything.Everything +namespace Flow.Launcher.Plugin.Everything.Everything { public sealed class EverythingApiDllImport { diff --git a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/CreateThreadException.cs b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/CreateThreadException.cs index 170acde1897..16f24b7defc 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/CreateThreadException.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/CreateThreadException.cs @@ -1,6 +1,6 @@ using System; -namespace Wox.Plugin.Everything.Everything +namespace Flow.Launcher.Plugin.Everything.Everything { /// /// diff --git a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/CreateWindowException.cs b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/CreateWindowException.cs index 54fc903f1ce..43c8cc5b078 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/CreateWindowException.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/CreateWindowException.cs @@ -1,6 +1,6 @@ using System; -namespace Wox.Plugin.Everything.Everything +namespace Flow.Launcher.Plugin.Everything.Everything { /// /// diff --git a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/IPCErrorException.cs b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/IPCErrorException.cs index 92ea7fb7266..2a63fae0b8a 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/IPCErrorException.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/IPCErrorException.cs @@ -1,6 +1,6 @@ using System; -namespace Wox.Plugin.Everything.Everything +namespace Flow.Launcher.Plugin.Everything.Everything { /// /// diff --git a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/InvalidCallException.cs b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/InvalidCallException.cs index b109f4d30c5..58ae4a7134a 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/InvalidCallException.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/InvalidCallException.cs @@ -1,6 +1,6 @@ using System; -namespace Wox.Plugin.Everything.Everything +namespace Flow.Launcher.Plugin.Everything.Everything { /// /// diff --git a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/InvalidIndexException.cs b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/InvalidIndexException.cs index a6e7bfa443f..bbd19f86238 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/InvalidIndexException.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/InvalidIndexException.cs @@ -1,6 +1,6 @@ using System; -namespace Wox.Plugin.Everything.Everything +namespace Flow.Launcher.Plugin.Everything.Everything { /// /// diff --git a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/MemoryErrorException.cs b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/MemoryErrorException.cs index cd74e848727..d79d6454310 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/MemoryErrorException.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/MemoryErrorException.cs @@ -1,6 +1,6 @@ using System; -namespace Wox.Plugin.Everything.Everything.Exceptions +namespace Flow.Launcher.Plugin.Everything.Everything.Exceptions { /// /// diff --git a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/RegisterClassExException.cs b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/RegisterClassExException.cs index e51b7e8aa1c..79b2a1b3216 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/Exceptions/RegisterClassExException.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/Exceptions/RegisterClassExException.cs @@ -1,6 +1,6 @@ using System; -namespace Wox.Plugin.Everything.Everything +namespace Flow.Launcher.Plugin.Everything.Everything { /// /// diff --git a/Plugins/Wox.Plugin.Everything/Everything/ResultType.cs b/Plugins/Wox.Plugin.Everything/Everything/ResultType.cs index bd9776a13e1..f2514939b1b 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/ResultType.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/ResultType.cs @@ -1,4 +1,4 @@ -namespace Wox.Plugin.Everything.Everything +namespace Flow.Launcher.Plugin.Everything.Everything { public enum ResultType { diff --git a/Plugins/Wox.Plugin.Everything/Everything/SearchResult.cs b/Plugins/Wox.Plugin.Everything/Everything/SearchResult.cs index 2a9af23a214..be484d24892 100644 --- a/Plugins/Wox.Plugin.Everything/Everything/SearchResult.cs +++ b/Plugins/Wox.Plugin.Everything/Everything/SearchResult.cs @@ -1,4 +1,4 @@ -namespace Wox.Plugin.Everything.Everything +namespace Flow.Launcher.Plugin.Everything.Everything { public class SearchResult { diff --git a/Plugins/Wox.Plugin.Everything/EverythingSettings.xaml b/Plugins/Wox.Plugin.Everything/EverythingSettings.xaml index ba98b17cb72..019523ed6a3 100644 --- a/Plugins/Wox.Plugin.Everything/EverythingSettings.xaml +++ b/Plugins/Wox.Plugin.Everything/EverythingSettings.xaml @@ -1,4 +1,4 @@ -netcoreapp3.1 {230AE83F-E92E-4E69-8355-426B305DA9C0} Properties - Wox.Plugin.Everything - Wox.Plugin.Everything + Flow.Launcher.Plugin.Everything + Flow.Launcher.Plugin.Everything false false @@ -14,7 +14,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.Everything\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Everything\ DEBUG;TRACE prompt 4 @@ -25,7 +25,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.Everything\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Everything\ TRACE prompt 4 @@ -66,8 +66,8 @@ - - + + diff --git a/Plugins/Wox.Plugin.Everything/plugin.json b/Plugins/Wox.Plugin.Everything/plugin.json index c19d9a80ff9..5604a60ad14 100644 --- a/Plugins/Wox.Plugin.Everything/plugin.json +++ b/Plugins/Wox.Plugin.Everything/plugin.json @@ -8,6 +8,6 @@ "Language":"csharp", "Website":"http://www.wox.one", "IcoPath":"Images\\find.png", - "ExecuteFileName":"Wox.Plugin.Everything.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.Everything.dll", "Disabled": true } diff --git a/Plugins/Wox.Plugin.Folder/ContextMenuLoader.cs b/Plugins/Wox.Plugin.Folder/ContextMenuLoader.cs index 646093f92ff..c083a95f67c 100644 --- a/Plugins/Wox.Plugin.Folder/ContextMenuLoader.cs +++ b/Plugins/Wox.Plugin.Folder/ContextMenuLoader.cs @@ -4,11 +4,11 @@ using System.IO; using System.Threading.Tasks; using System.Windows; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.Image; -using Wox.Plugin.SharedCommands; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.Image; +using Flow.Launcher.Plugin.SharedCommands; -namespace Wox.Plugin.Folder +namespace Flow.Launcher.Plugin.Folder { internal class ContextMenuLoader : IContextMenu { @@ -185,7 +185,7 @@ private Result CreateOpenWithEditorResult(SearchResult record) public void LogException(string message, Exception e) { - Log.Exception($"|Wox.Plugin.Folder.ContextMenu|{message}", e); + Log.Exception($"|Flow.Launcher.Plugin.Folder.ContextMenu|{message}", e); } private bool CanRunAsDifferentUser(string path) diff --git a/Plugins/Wox.Plugin.Folder/FolderLink.cs b/Plugins/Wox.Plugin.Folder/FolderLink.cs index 8148c45bf49..b7bcb1d3487 100644 --- a/Plugins/Wox.Plugin.Folder/FolderLink.cs +++ b/Plugins/Wox.Plugin.Folder/FolderLink.cs @@ -2,7 +2,7 @@ using System.Linq; using Newtonsoft.Json; -namespace Wox.Plugin.Folder +namespace Flow.Launcher.Plugin.Folder { [JsonObject(MemberSerialization.OptIn)] public class FolderLink diff --git a/Plugins/Wox.Plugin.Folder/FolderPluginSettings.xaml b/Plugins/Wox.Plugin.Folder/FolderPluginSettings.xaml index 93b9178e013..730625c7756 100644 --- a/Plugins/Wox.Plugin.Folder/FolderPluginSettings.xaml +++ b/Plugins/Wox.Plugin.Folder/FolderPluginSettings.xaml @@ -1,4 +1,4 @@ -Bist du sicher {0} zu löschen? Ordner - Öffne deine Lieblingsordner direkt von Wox aus + Öffne deine Lieblingsordner direkt von Flow.Launcher aus \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Folder/Languages/en.xaml b/Plugins/Wox.Plugin.Folder/Languages/en.xaml index 78190d1b89c..ab2e4160ee5 100644 --- a/Plugins/Wox.Plugin.Folder/Languages/en.xaml +++ b/Plugins/Wox.Plugin.Folder/Languages/en.xaml @@ -10,6 +10,6 @@ Are you sure you want to delete {0}? Folder - Open favorite folder from Wox directly + Open favorite folder from Flow.Launcher directly \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Folder/Languages/pl.xaml b/Plugins/Wox.Plugin.Folder/Languages/pl.xaml index 454b85036dd..7d4baa2dda8 100644 --- a/Plugins/Wox.Plugin.Folder/Languages/pl.xaml +++ b/Plugins/Wox.Plugin.Folder/Languages/pl.xaml @@ -10,6 +10,6 @@ Czy jesteś pewien że chcesz usunąć {0}? Foldery - Otwórz ulubione foldery bezpośrednio z poziomu Woxa + Otwórz ulubione foldery bezpośrednio z poziomu Flow.Launchera \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Folder/Languages/tr.xaml b/Plugins/Wox.Plugin.Folder/Languages/tr.xaml index 8cf0c765351..b06d795dcd7 100644 --- a/Plugins/Wox.Plugin.Folder/Languages/tr.xaml +++ b/Plugins/Wox.Plugin.Folder/Languages/tr.xaml @@ -10,6 +10,6 @@ {0} bağlantısını silmek istediğinize emin misiniz? Klasör - Favori klasörünüzü doğrudan Wox'tan açın + Favori klasörünüzü doğrudan Flow.Launcher'tan açın \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Folder/Languages/zh-cn.xaml b/Plugins/Wox.Plugin.Folder/Languages/zh-cn.xaml index 15df3d5c6e0..c43bc2760de 100644 --- a/Plugins/Wox.Plugin.Folder/Languages/zh-cn.xaml +++ b/Plugins/Wox.Plugin.Folder/Languages/zh-cn.xaml @@ -10,6 +10,6 @@ 你确定要删除{0}吗? 文件夹 - 在Wox中直接打开收藏的文件夹 + 在Flow.Launcher中直接打开收藏的文件夹 \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Folder/Languages/zh-tw.xaml b/Plugins/Wox.Plugin.Folder/Languages/zh-tw.xaml index f87d8c14d4c..2c53ade920f 100644 --- a/Plugins/Wox.Plugin.Folder/Languages/zh-tw.xaml +++ b/Plugins/Wox.Plugin.Folder/Languages/zh-tw.xaml @@ -10,6 +10,6 @@ 你確認要刪除{0}嗎? 資料夾 - 在 Wox 中直接開啟收藏的資料夾 + 在 Flow.Launcher 中直接開啟收藏的資料夾 diff --git a/Plugins/Wox.Plugin.Folder/Main.cs b/Plugins/Wox.Plugin.Folder/Main.cs index 5e20aeda4c4..45c7dc0748b 100644 --- a/Plugins/Wox.Plugin.Folder/Main.cs +++ b/Plugins/Wox.Plugin.Folder/Main.cs @@ -5,10 +5,10 @@ using System.Linq; using System.Windows; using System.Windows.Controls; -using Wox.Infrastructure; -using Wox.Infrastructure.Storage; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Storage; -namespace Wox.Plugin.Folder +namespace Flow.Launcher.Plugin.Folder { public class Main : IPlugin, ISettingProvider, IPluginI18n, ISavable, IContextMenu { diff --git a/Plugins/Wox.Plugin.Folder/Settings.cs b/Plugins/Wox.Plugin.Folder/Settings.cs index 27518258f9c..b605dfda407 100644 --- a/Plugins/Wox.Plugin.Folder/Settings.cs +++ b/Plugins/Wox.Plugin.Folder/Settings.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; using Newtonsoft.Json; -using Wox.Infrastructure.Storage; +using Flow.Launcher.Infrastructure.Storage; -namespace Wox.Plugin.Folder +namespace Flow.Launcher.Plugin.Folder { public class Settings { diff --git a/Plugins/Wox.Plugin.Folder/Wox.Plugin.Folder.csproj b/Plugins/Wox.Plugin.Folder/Wox.Plugin.Folder.csproj index 6fb87073746..67cc0294cf4 100644 --- a/Plugins/Wox.Plugin.Folder/Wox.Plugin.Folder.csproj +++ b/Plugins/Wox.Plugin.Folder/Wox.Plugin.Folder.csproj @@ -4,8 +4,8 @@ netcoreapp3.1 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} Properties - Wox.Plugin.Folder - Wox.Plugin.Folder + Flow.Launcher.Plugin.Folder + Flow.Launcher.Plugin.Folder true false false @@ -15,7 +15,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.Folder\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Folder\ DEBUG;TRACE prompt 4 @@ -25,7 +25,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.Folder\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Folder\ TRACE prompt 4 @@ -88,8 +88,8 @@ - - + + diff --git a/Plugins/Wox.Plugin.Folder/plugin.json b/Plugins/Wox.Plugin.Folder/plugin.json index 662a4df6ebb..b588d5beb93 100644 --- a/Plugins/Wox.Plugin.Folder/plugin.json +++ b/Plugins/Wox.Plugin.Folder/plugin.json @@ -7,6 +7,6 @@ "Version":"1.0.0", "Language":"csharp", "Website":"http://www.wox.one/plugin", - "ExecuteFileName":"Wox.Plugin.Folder.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.Folder.dll", "IcoPath":"Images\\folder.png" } diff --git a/Plugins/Wox.Plugin.PluginIndicator/Main.cs b/Plugins/Wox.Plugin.PluginIndicator/Main.cs index 54dcf007a00..b7f0a770b66 100644 --- a/Plugins/Wox.Plugin.PluginIndicator/Main.cs +++ b/Plugins/Wox.Plugin.PluginIndicator/Main.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; using System.Linq; -using Wox.Core.Plugin; +using Flow.Launcher.Core.Plugin; -namespace Wox.Plugin.PluginIndicator +namespace Flow.Launcher.Plugin.PluginIndicator { public class Main : IPlugin, IPluginI18n { diff --git a/Plugins/Wox.Plugin.PluginIndicator/Wox.Plugin.PluginIndicator.csproj b/Plugins/Wox.Plugin.PluginIndicator/Wox.Plugin.PluginIndicator.csproj index 1d1902eba90..a29c720f145 100644 --- a/Plugins/Wox.Plugin.PluginIndicator/Wox.Plugin.PluginIndicator.csproj +++ b/Plugins/Wox.Plugin.PluginIndicator/Wox.Plugin.PluginIndicator.csproj @@ -4,8 +4,8 @@ netcoreapp3.1 {FDED22C8-B637-42E8-824A-63B5B6E05A3A} Properties - Wox.Plugin.PluginIndicator - Wox.Plugin.PluginIndicator + Flow.Launcher.Plugin.PluginIndicator + Flow.Launcher.Plugin.PluginIndicator false false @@ -14,7 +14,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.PluginIndicator\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.PluginIndicator\ DEBUG;TRACE prompt 4 @@ -24,7 +24,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.PluginIndicator\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.PluginIndicator\ TRACE prompt 4 @@ -38,9 +38,9 @@ - - - + + + diff --git a/Plugins/Wox.Plugin.PluginIndicator/plugin.json b/Plugins/Wox.Plugin.PluginIndicator/plugin.json index a8effc2e7ee..31861948269 100644 --- a/Plugins/Wox.Plugin.PluginIndicator/plugin.json +++ b/Plugins/Wox.Plugin.PluginIndicator/plugin.json @@ -7,6 +7,6 @@ "Version":"1.0.0", "Language":"csharp", "Website":"http://www.wox.one/plugin", - "ExecuteFileName":"Wox.Plugin.PluginIndicator.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.PluginIndicator.dll", "IcoPath":"Images\\work.png" } diff --git a/Plugins/Wox.Plugin.PluginManagement/Languages/de.xaml b/Plugins/Wox.Plugin.PluginManagement/Languages/de.xaml index aa3de26f05e..eb60025558a 100644 --- a/Plugins/Wox.Plugin.PluginManagement/Languages/de.xaml +++ b/Plugins/Wox.Plugin.PluginManagement/Languages/de.xaml @@ -2,7 +2,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> - Wox Plugin Verwaltung - Installiere/Entferne/Aktualisiere Wox Plugins + Flow.Launcher Plugin Verwaltung + Installiere/Entferne/Aktualisiere Flow.Launcher Plugins \ No newline at end of file diff --git a/Plugins/Wox.Plugin.PluginManagement/Languages/en.xaml b/Plugins/Wox.Plugin.PluginManagement/Languages/en.xaml index 46d7025c319..b6c3af92016 100644 --- a/Plugins/Wox.Plugin.PluginManagement/Languages/en.xaml +++ b/Plugins/Wox.Plugin.PluginManagement/Languages/en.xaml @@ -2,7 +2,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> - Wox Plugin Management - Install, remove or update Wox plugins + Flow.Launcher Plugin Management + Install, remove or update Flow.Launcher plugins \ No newline at end of file diff --git a/Plugins/Wox.Plugin.PluginManagement/Languages/pl.xaml b/Plugins/Wox.Plugin.PluginManagement/Languages/pl.xaml index d26a7719050..1682b2d66be 100644 --- a/Plugins/Wox.Plugin.PluginManagement/Languages/pl.xaml +++ b/Plugins/Wox.Plugin.PluginManagement/Languages/pl.xaml @@ -2,7 +2,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> - Zarządzanie wtyczkami Wox + Zarządzanie wtyczkami Flow.Launcher Pozwala na instalacje, usuwanie i aktualizacje wtyczek \ No newline at end of file diff --git a/Plugins/Wox.Plugin.PluginManagement/Languages/tr.xaml b/Plugins/Wox.Plugin.PluginManagement/Languages/tr.xaml index 15e5163a577..ebaa4cb57f2 100644 --- a/Plugins/Wox.Plugin.PluginManagement/Languages/tr.xaml +++ b/Plugins/Wox.Plugin.PluginManagement/Languages/tr.xaml @@ -2,7 +2,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> - Wox Eklenti Yöneticisi - Wox eklentilerini kurun, kaldırın ya da güncelleyin + Flow.Launcher Eklenti Yöneticisi + Flow.Launcher eklentilerini kurun, kaldırın ya da güncelleyin \ No newline at end of file diff --git a/Plugins/Wox.Plugin.PluginManagement/Languages/zh-cn.xaml b/Plugins/Wox.Plugin.PluginManagement/Languages/zh-cn.xaml index 00ada8ff36e..055e3db1cf2 100644 --- a/Plugins/Wox.Plugin.PluginManagement/Languages/zh-cn.xaml +++ b/Plugins/Wox.Plugin.PluginManagement/Languages/zh-cn.xaml @@ -2,7 +2,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> - Wox插件管理 - 安装/卸载/更新Wox插件 + Flow.Launcher插件管理 + 安装/卸载/更新Flow.Launcher插件 \ No newline at end of file diff --git a/Plugins/Wox.Plugin.PluginManagement/Languages/zh-tw.xaml b/Plugins/Wox.Plugin.PluginManagement/Languages/zh-tw.xaml index c50b0c06e92..ff7871cf8e6 100644 --- a/Plugins/Wox.Plugin.PluginManagement/Languages/zh-tw.xaml +++ b/Plugins/Wox.Plugin.PluginManagement/Languages/zh-tw.xaml @@ -2,7 +2,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> - Wox 外掛管理 - 安裝/解除安裝/更新 Wox 外掛 + Flow.Launcher 外掛管理 + 安裝/解除安裝/更新 Flow.Launcher 外掛 diff --git a/Plugins/Wox.Plugin.PluginManagement/Main.cs b/Plugins/Wox.Plugin.PluginManagement/Main.cs index 1ee0fd7ae89..6d1b2ad2ddc 100644 --- a/Plugins/Wox.Plugin.PluginManagement/Main.cs +++ b/Plugins/Wox.Plugin.PluginManagement/Main.cs @@ -8,11 +8,11 @@ using System.Threading.Tasks; using System.Windows; using Newtonsoft.Json; -using Wox.Infrastructure; -using Wox.Infrastructure.Http; -using Wox.Infrastructure.Logger; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Http; +using Flow.Launcher.Infrastructure.Logger; -namespace Wox.Plugin.PluginManagement +namespace Flow.Launcher.Plugin.PluginManagement { public class Main : IPlugin, IPluginI18n { @@ -119,25 +119,25 @@ private List ResultForInstallPlugin(Query query) catch (WebException e) { //todo happlebao add option in log to decide give user prompt or not - context.API.ShowMsg("PluginManagement.ResultForInstallPlugin: Can't connect to Wox plugin website, check your conenction"); - Log.Exception("|PluginManagement.ResultForInstallPlugin|Can't connect to Wox plugin website, check your conenction", e); + context.API.ShowMsg("PluginManagement.ResultForInstallPlugin: Can't connect to Flow.Launcher plugin website, check your conenction"); + Log.Exception("|PluginManagement.ResultForInstallPlugin|Can't connect to Flow.Launcher plugin website, check your conenction", e); return new List(); } - List searchedPlugins; + List searchedPlugins; try { - searchedPlugins = JsonConvert.DeserializeObject>(json); + searchedPlugins = JsonConvert.DeserializeObject>(json); } catch (JsonSerializationException e) { - context.API.ShowMsg("PluginManagement.ResultForInstallPlugin: Coundn't parse api search results, Please update your Wox!"); - Log.Exception("|PluginManagement.ResultForInstallPlugin|Coundn't parse api search results, Please update your Wox!", e); + context.API.ShowMsg("PluginManagement.ResultForInstallPlugin: Coundn't parse api search results, Please update your Flow.Launcher!"); + Log.Exception("|PluginManagement.ResultForInstallPlugin|Coundn't parse api search results, Please update your Flow.Launcher!", e); return results; } - foreach (WoxPluginResult r in searchedPlugins) + foreach (Flow.LauncherPluginResult r in searchedPlugins) { - WoxPluginResult r1 = r; + Flow.LauncherPluginResult r1 = r; results.Add(new Result { Title = r.name, @@ -152,7 +152,7 @@ private List ResultForInstallPlugin(Query query) if (result == MessageBoxResult.Yes) { - string folder = Path.Combine(Path.GetTempPath(), "WoxPluginDownload"); + string folder = Path.Combine(Path.GetTempPath(), "Flow.LauncherPluginDownload"); if (!Directory.Exists(folder)) Directory.CreateDirectory(folder); string filePath = Path.Combine(folder, Guid.NewGuid().ToString() + ".wox"); @@ -212,11 +212,11 @@ private void UnInstallPlugin(PluginMetadata plugin) $"Name: {plugin.Name}{Environment.NewLine}" + $"Version: {plugin.Version}{Environment.NewLine}" + $"Author: {plugin.Author}"; - if (MessageBox.Show(content, "Wox", MessageBoxButton.YesNo) == MessageBoxResult.Yes) + if (MessageBox.Show(content, "Flow.Launcher", MessageBoxButton.YesNo) == MessageBoxResult.Yes) { File.Create(Path.Combine(plugin.PluginDirectory, "NeedDelete.txt")).Close(); var result = MessageBox.Show($"You have uninstalled plugin {plugin.Name} successfully.{Environment.NewLine}" + - "Restart Wox to take effect?", + "Restart Flow.Launcher to take effect?", "Install plugin", MessageBoxButton.YesNo, MessageBoxImage.Question); if (result == MessageBoxResult.Yes) { diff --git a/Plugins/Wox.Plugin.PluginManagement/Wox.Plugin.PluginManagement.csproj b/Plugins/Wox.Plugin.PluginManagement/Wox.Plugin.PluginManagement.csproj index 62f59df4e54..aa180cca4d2 100644 --- a/Plugins/Wox.Plugin.PluginManagement/Wox.Plugin.PluginManagement.csproj +++ b/Plugins/Wox.Plugin.PluginManagement/Wox.Plugin.PluginManagement.csproj @@ -4,8 +4,8 @@ netcoreapp3.1 {049490F0-ECD2-4148-9B39-2135EC346EBE} Properties - Wox.Plugin.PluginManagement - Wox.Plugin.PluginManagement + Flow.Launcher.Plugin.PluginManagement + Flow.Launcher.Plugin.PluginManagement true false false @@ -15,7 +15,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.PluginManagement\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.PluginManagement\ DEBUG;TRACE prompt 4 @@ -25,7 +25,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.PluginManagement\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.PluginManagement\ TRACE prompt 4 @@ -33,8 +33,8 @@ - - + + diff --git a/Plugins/Wox.Plugin.PluginManagement/WoxPluginResult.cs b/Plugins/Wox.Plugin.PluginManagement/WoxPluginResult.cs index a7fcd513e2b..9003f0b2c9c 100644 --- a/Plugins/Wox.Plugin.PluginManagement/WoxPluginResult.cs +++ b/Plugins/Wox.Plugin.PluginManagement/WoxPluginResult.cs @@ -1,6 +1,6 @@ -namespace Wox.Plugin.PluginManagement +namespace Flow.Launcher.Plugin.PluginManagement { - public class WoxPluginResult + public class Flow.LauncherPluginResult { public string plugin_file; public string description; diff --git a/Plugins/Wox.Plugin.PluginManagement/plugin.json b/Plugins/Wox.Plugin.PluginManagement/plugin.json index 88a134e264f..00dbfedd662 100644 --- a/Plugins/Wox.Plugin.PluginManagement/plugin.json +++ b/Plugins/Wox.Plugin.PluginManagement/plugin.json @@ -1,12 +1,12 @@ { "ID":"D2D2C23B084D422DB66FE0C79D6C2A6A", "ActionKeyword":"wpm", - "Name":"Wox Plugin Management", + "Name":"Flow.Launcher Plugin Management", "Description":"Install/Remove/Update wox plugins", "Author":"qianlifeng", "Version":"1.0", "Language":"csharp", "Website":"http://www.wox.one/plugin", - "ExecuteFileName":"Wox.Plugin.PluginManagement.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.PluginManagement.dll", "IcoPath":"Images\\plugin.png" } diff --git a/Plugins/Wox.Plugin.Program/AddProgramSource.xaml b/Plugins/Wox.Plugin.Program/AddProgramSource.xaml index 6e3d66ff5b1..72a78166000 100644 --- a/Plugins/Wox.Plugin.Program/AddProgramSource.xaml +++ b/Plugins/Wox.Plugin.Program/AddProgramSource.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for AddProgramSource.xaml diff --git a/Plugins/Wox.Plugin.Program/FileChangeWatcher.cs b/Plugins/Wox.Plugin.Program/FileChangeWatcher.cs index 0df361215c7..4ede37dec5d 100644 --- a/Plugins/Wox.Plugin.Program/FileChangeWatcher.cs +++ b/Plugins/Wox.Plugin.Program/FileChangeWatcher.cs @@ -1,10 +1,10 @@ using System.Collections.Generic; using System.IO; using System.Threading.Tasks; -using Wox.Infrastructure.Logger; -using Wox.Plugin.Program.Programs; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Plugin.Program.Programs; -namespace Wox.Plugin.Program +namespace Flow.Launcher.Plugin.Program { //internal static class FileChangeWatcher //{ diff --git a/Plugins/Wox.Plugin.Program/Languages/de.xaml b/Plugins/Wox.Plugin.Program/Languages/de.xaml index cfcb43089d3..d5a1065dbd2 100644 --- a/Plugins/Wox.Plugin.Program/Languages/de.xaml +++ b/Plugins/Wox.Plugin.Program/Languages/de.xaml @@ -23,7 +23,7 @@ Bitte wähle eine Programmquelle Aktualisieren - Wox indexiert nur Datien mit folgenden Endungen: + Flow.Launcher indexiert nur Datien mit folgenden Endungen: (Jede Endung muss durch ein ; getrennt werden) Dateiendungen wurden erfolgreich aktualisiert Dateiendungen dürfen nicht leer sein @@ -32,6 +32,6 @@ Enthaltenden Ordner öffnen Programm - Suche Programme mit Wox + Suche Programme mit Flow.Launcher \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Program/Languages/en.xaml b/Plugins/Wox.Plugin.Program/Languages/en.xaml index b7202d590fd..d41b8853c9e 100644 --- a/Plugins/Wox.Plugin.Program/Languages/en.xaml +++ b/Plugins/Wox.Plugin.Program/Languages/en.xaml @@ -26,7 +26,7 @@ Are you sure you want to delete the selected program sources? Update - Wox will only index files that end with the following suffixes: + Flow.Launcher will only index files that end with the following suffixes: (Each suffix should split by ';' ) Successfully updated file suffixes File suffixes can't be empty @@ -37,7 +37,7 @@ Disable this program from displaying Program - Search programs in Wox + Search programs in Flow.Launcher Invalid Path diff --git a/Plugins/Wox.Plugin.Program/Languages/ja.xaml b/Plugins/Wox.Plugin.Program/Languages/ja.xaml index 07630a1cda7..91cacd24842 100644 --- a/Plugins/Wox.Plugin.Program/Languages/ja.xaml +++ b/Plugins/Wox.Plugin.Program/Languages/ja.xaml @@ -24,7 +24,7 @@ Are your sure to delete {0}? Update - Wox will only index files that end with following suffixes: + Flow.Launcher will only index files that end with following suffixes: (Each suffix should split by ;) Sucessfully update file suffixes File suffixes can't be empty @@ -33,6 +33,6 @@ Open containing folder Program - Search programs in Wox + Search programs in Flow.Launcher \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Program/Languages/pl.xaml b/Plugins/Wox.Plugin.Program/Languages/pl.xaml index bb82ee8d2e6..b2dc8c69343 100644 --- a/Plugins/Wox.Plugin.Program/Languages/pl.xaml +++ b/Plugins/Wox.Plugin.Program/Languages/pl.xaml @@ -23,7 +23,7 @@ Musisz wybrać katalog programu Aktualizuj - Wox będzie indeksował tylko te pliki z podanymi rozszerzeniami: + Flow.Launcher będzie indeksował tylko te pliki z podanymi rozszerzeniami: (Każde rozszerzenie musi być oddzielone ;) Pomyślnie zaktualizowano rozszerzenia plików Musisz podać rozszerzenia plików @@ -32,6 +32,6 @@ Otwórz folder zawierający Programy - Szukaj i uruchamiaj programy z poziomu Woxa + Szukaj i uruchamiaj programy z poziomu Flow.Launchera \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Program/Languages/tr.xaml b/Plugins/Wox.Plugin.Program/Languages/tr.xaml index ef01e29fd11..407ff2cc7b8 100644 --- a/Plugins/Wox.Plugin.Program/Languages/tr.xaml +++ b/Plugins/Wox.Plugin.Program/Languages/tr.xaml @@ -23,7 +23,7 @@ İşlem yapmak istediğiniz klasörü seçin. Güncelle - Wox yalnızca aşağıdaki uzantılara sahip dosyaları indeksleyecektir: + Flow.Launcher yalnızca aşağıdaki uzantılara sahip dosyaları indeksleyecektir: (Her uzantıyı ; işareti ile ayırın) Dosya uzantıları başarıyla güncellendi Dosya uzantıları boş olamaz @@ -32,7 +32,7 @@ İçeren Klasörü Aç Program - Programları Wox'tan arayın + Programları Flow.Launcher'tan arayın Geçersiz Konum diff --git a/Plugins/Wox.Plugin.Program/Languages/zh-cn.xaml b/Plugins/Wox.Plugin.Program/Languages/zh-cn.xaml index f41193095bf..5897dd12aca 100644 --- a/Plugins/Wox.Plugin.Program/Languages/zh-cn.xaml +++ b/Plugins/Wox.Plugin.Program/Languages/zh-cn.xaml @@ -23,7 +23,7 @@ 请先选择一项 更新 - Wox仅索引下列后缀的文件: + Flow.Launcher仅索引下列后缀的文件: (每个后缀以英文状态下的分号分隔) 成功更新索引文件后缀 文件后缀不能为空 @@ -32,7 +32,7 @@ 打开所属文件夹 程序 - 在Wox中搜索程序 + 在Flow.Launcher中搜索程序 无效路径 diff --git a/Plugins/Wox.Plugin.Program/Languages/zh-tw.xaml b/Plugins/Wox.Plugin.Program/Languages/zh-tw.xaml index d3c0f18cca6..3530bf20f16 100644 --- a/Plugins/Wox.Plugin.Program/Languages/zh-tw.xaml +++ b/Plugins/Wox.Plugin.Program/Languages/zh-tw.xaml @@ -23,7 +23,7 @@ 請先選擇一項 更新 - Wox 僅索引下列副檔名的檔案: + Flow.Launcher 僅索引下列副檔名的檔案: (每個副檔名以英文的分號分隔) 成功更新索引副檔名清單 副檔名不能為空 @@ -32,5 +32,5 @@ 開啟檔案位置 程式 - 在 Wox 中搜尋程式 + 在 Flow.Launcher 中搜尋程式 diff --git a/Plugins/Wox.Plugin.Program/LocationConverter.cs b/Plugins/Wox.Plugin.Program/LocationConverter.cs index bd28bc9441d..41384aa8379 100644 --- a/Plugins/Wox.Plugin.Program/LocationConverter.cs +++ b/Plugins/Wox.Plugin.Program/LocationConverter.cs @@ -3,7 +3,7 @@ using System.Windows.Data; using System.Windows.Markup; -namespace Wox.Plugin.Program +namespace Flow.Launcher.Plugin.Program { public class LocationConverter : MarkupExtension, IValueConverter { diff --git a/Plugins/Wox.Plugin.Program/Logger/ProgramLogger.cs b/Plugins/Wox.Plugin.Program/Logger/ProgramLogger.cs index d9f92bca27e..4b9ff8ac045 100644 --- a/Plugins/Wox.Plugin.Program/Logger/ProgramLogger.cs +++ b/Plugins/Wox.Plugin.Program/Logger/ProgramLogger.cs @@ -6,13 +6,13 @@ using System.IO; using System.Runtime.CompilerServices; using System.Security; -using Wox.Infrastructure; -using Wox.Infrastructure.UserSettings; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.UserSettings; -namespace Wox.Plugin.Program.Logger +namespace Flow.Launcher.Plugin.Program.Logger { /// - /// The Program plugin has seen many issues recorded in the Wox repo related to various loading of Windows programs. + /// The Program plugin has seen many issues recorded in the Flow.Launcher repo related to various loading of Windows programs. /// This is a dedicated logger for this Program plugin with the aim to output a more friendlier message and clearer /// log that will allow debugging to be quicker and easier. /// @@ -57,13 +57,13 @@ internal static void LogException(string classname, string callingMethodName, st var possibleResolution = "Not yet known"; var errorStatus = "UNKNOWN"; - logger.Error("------------- BEGIN Wox.Plugin.Program exception -------------"); + logger.Error("------------- BEGIN Flow.Launcher.Plugin.Program exception -------------"); do { if (IsKnownWinProgramError(e, callingMethodName) || IsKnownUWPProgramError(e, callingMethodName)) { - possibleResolution = "Can be ignored and Wox should still continue, however the program may not be loaded"; + possibleResolution = "Can be ignored and Flow.Launcher should still continue, however the program may not be loaded"; errorStatus = "KNOWN"; } @@ -87,12 +87,12 @@ internal static void LogException(string classname, string callingMethodName, st e = e.InnerException; } while (e != null); - logger.Error("------------- END Wox.Plugin.Program exception -------------"); + logger.Error("------------- END Flow.Launcher.Plugin.Program exception -------------"); } /// /// Please follow exception format: |class name|calling method name|loading program path|user friendly message that explains the error - /// => Example: |Win32|LnkProgram|c:\..\chrome.exe|Permission denied on directory, but Wox should continue + /// => Example: |Win32|LnkProgram|c:\..\chrome.exe|Permission denied on directory, but Flow.Launcher should continue /// [MethodImpl(MethodImplOptions.Synchronized)] internal static void LogException(string message, Exception e) diff --git a/Plugins/Wox.Plugin.Program/Main.cs b/Plugins/Wox.Plugin.Program/Main.cs index e99298c7889..e12f7e014ef 100644 --- a/Plugins/Wox.Plugin.Program/Main.cs +++ b/Plugins/Wox.Plugin.Program/Main.cs @@ -4,13 +4,13 @@ using System.Linq; using System.Threading.Tasks; using System.Windows.Controls; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.Storage; -using Wox.Plugin.Program.Programs; -using Wox.Plugin.Program.Views; -using Stopwatch = Wox.Infrastructure.Stopwatch; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Plugin.Program.Programs; +using Flow.Launcher.Plugin.Program.Views; +using Stopwatch = Flow.Launcher.Infrastructure.Stopwatch; -namespace Wox.Plugin.Program +namespace Flow.Launcher.Plugin.Program { public class Main : ISettingProvider, IPlugin, IPluginI18n, IContextMenu, ISavable, IReloadable { @@ -32,26 +32,26 @@ public Main() _settingsStorage = new PluginJsonStorage(); _settings = _settingsStorage.Load(); - Stopwatch.Normal("|Wox.Plugin.Program.Main|Preload programs cost", () => + Stopwatch.Normal("|Flow.Launcher.Plugin.Program.Main|Preload programs cost", () => { _win32Storage = new BinaryStorage("Win32"); _win32s = _win32Storage.TryLoad(new Win32[] { }); _uwpStorage = new BinaryStorage("UWP"); _uwps = _uwpStorage.TryLoad(new UWP.Application[] { }); }); - Log.Info($"|Wox.Plugin.Program.Main|Number of preload win32 programs <{_win32s.Length}>"); - Log.Info($"|Wox.Plugin.Program.Main|Number of preload uwps <{_uwps.Length}>"); + Log.Info($"|Flow.Launcher.Plugin.Program.Main|Number of preload win32 programs <{_win32s.Length}>"); + Log.Info($"|Flow.Launcher.Plugin.Program.Main|Number of preload uwps <{_uwps.Length}>"); var a = Task.Run(() => { if (IsStartupIndexProgramsRequired || !_win32s.Any()) - Stopwatch.Normal("|Wox.Plugin.Program.Main|Win32Program index cost", IndexWin32Programs); + Stopwatch.Normal("|Flow.Launcher.Plugin.Program.Main|Win32Program index cost", IndexWin32Programs); }); var b = Task.Run(() => { if (IsStartupIndexProgramsRequired || !_uwps.Any()) - Stopwatch.Normal("|Wox.Plugin.Program.Main|Win32Program index cost", IndexUWPPrograms); + Stopwatch.Normal("|Flow.Launcher.Plugin.Program.Main|Win32Program index cost", IndexUWPPrograms); }); Task.WaitAll(a, b); diff --git a/Plugins/Wox.Plugin.Program/ProgramSuffixes.xaml b/Plugins/Wox.Plugin.Program/ProgramSuffixes.xaml index 03d399a1971..48c166c6502 100644 --- a/Plugins/Wox.Plugin.Program/ProgramSuffixes.xaml +++ b/Plugins/Wox.Plugin.Program/ProgramSuffixes.xaml @@ -1,4 +1,4 @@ - /// ProgramSuffixes.xaml 的交互逻辑 diff --git a/Plugins/Wox.Plugin.Program/Programs/IProgram.cs b/Plugins/Wox.Plugin.Program/Programs/IProgram.cs index f51ab9610f8..b42acfbce5b 100644 --- a/Plugins/Wox.Plugin.Program/Programs/IProgram.cs +++ b/Plugins/Wox.Plugin.Program/Programs/IProgram.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Wox.Plugin.Program.Programs +namespace Flow.Launcher.Plugin.Program.Programs { public interface IProgram { diff --git a/Plugins/Wox.Plugin.Program/Programs/UWP.cs b/Plugins/Wox.Plugin.Program/Programs/UWP.cs index 35917cb3125..3496ae69242 100644 --- a/Plugins/Wox.Plugin.Program/Programs/UWP.cs +++ b/Plugins/Wox.Plugin.Program/Programs/UWP.cs @@ -14,12 +14,12 @@ using Windows.Management.Deployment; using AppxPackaing; using Shell; -using Wox.Infrastructure; -using Wox.Plugin.Program.Logger; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Plugin.Program.Logger; using IStream = AppxPackaing.IStream; using Rect = System.Windows.Rect; -namespace Wox.Plugin.Program.Programs +namespace Flow.Launcher.Plugin.Program.Programs { [Serializable] public class UWP @@ -377,7 +377,7 @@ internal string ResourceFromPri(string packageFullName, string resourceReference if (!string.IsNullOrWhiteSpace(resourceReference) && resourceReference.StartsWith(prefix)) { // magic comes from @talynone - // https://github.com/talynone/Wox.Plugin.WindowsUniversalAppLauncher/blob/master/StoreAppLauncher/Helpers/NativeApiHelper.cs#L139-L153 + // https://github.com/talynone/Flow.Launcher.Plugin.WindowsUniversalAppLauncher/blob/master/StoreAppLauncher/Helpers/NativeApiHelper.cs#L139-L153 string key = resourceReference.Substring(prefix.Length); string parsed; if (key.StartsWith("//")) @@ -413,7 +413,7 @@ internal string ResourceFromPri(string packageFullName, string resourceReference } else { - // https://github.com/Wox-launcher/Wox/issues/964 + // https://github.com/Flow.Launcher-launcher/Flow.Launcher/issues/964 // known hresult 2147942522: // 'Microsoft Corporation' violates pattern constraint of '\bms-resource:.{1,256}'. // for diff --git a/Plugins/Wox.Plugin.Program/Programs/Win32.cs b/Plugins/Wox.Plugin.Program/Programs/Win32.cs index 214c1b70f77..c060b8afe50 100644 --- a/Plugins/Wox.Plugin.Program/Programs/Win32.cs +++ b/Plugins/Wox.Plugin.Program/Programs/Win32.cs @@ -9,11 +9,11 @@ using System.Threading.Tasks; using Microsoft.Win32; using Shell; -using Wox.Infrastructure; -using Wox.Plugin.Program.Logger; -using Wox.Plugin.SharedCommands; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Plugin.Program.Logger; +using Flow.Launcher.Plugin.SharedCommands; -namespace Wox.Plugin.Program.Programs +namespace Flow.Launcher.Plugin.Program.Programs { [Serializable] public class Win32 : IProgram diff --git a/Plugins/Wox.Plugin.Program/Settings.cs b/Plugins/Wox.Plugin.Program/Settings.cs index 1ead3f9c329..0422cdd7162 100644 --- a/Plugins/Wox.Plugin.Program/Settings.cs +++ b/Plugins/Wox.Plugin.Program/Settings.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.IO; -namespace Wox.Plugin.Program +namespace Flow.Launcher.Plugin.Program { public class Settings { diff --git a/Plugins/Wox.Plugin.Program/SuffixesConverter.cs b/Plugins/Wox.Plugin.Program/SuffixesConverter.cs index 5db4ec945f1..a5e9f75dcf0 100644 --- a/Plugins/Wox.Plugin.Program/SuffixesConverter.cs +++ b/Plugins/Wox.Plugin.Program/SuffixesConverter.cs @@ -3,7 +3,7 @@ using System.Windows.Data; using System.Windows.Markup; -namespace Wox.Plugin.Program +namespace Flow.Launcher.Plugin.Program { public class SuffixesConvert : MarkupExtension, IValueConverter { diff --git a/Plugins/Wox.Plugin.Program/Views/Commands/ProgramSettingDisplay.cs b/Plugins/Wox.Plugin.Program/Views/Commands/ProgramSettingDisplay.cs index 21bba677a54..3129b2b996e 100644 --- a/Plugins/Wox.Plugin.Program/Views/Commands/ProgramSettingDisplay.cs +++ b/Plugins/Wox.Plugin.Program/Views/Commands/ProgramSettingDisplay.cs @@ -3,9 +3,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -using Wox.Plugin.Program.Views.Models; +using Flow.Launcher.Plugin.Program.Views.Models; -namespace Wox.Plugin.Program.Views.Commands +namespace Flow.Launcher.Plugin.Program.Views.Commands { internal static class ProgramSettingDisplay { diff --git a/Plugins/Wox.Plugin.Program/Views/Models/ProgramSource.cs b/Plugins/Wox.Plugin.Program/Views/Models/ProgramSource.cs index c2995f74da4..8e3184ff7fb 100644 --- a/Plugins/Wox.Plugin.Program/Views/Models/ProgramSource.cs +++ b/Plugins/Wox.Plugin.Program/Views/Models/ProgramSource.cs @@ -1,5 +1,5 @@  -namespace Wox.Plugin.Program.Views.Models +namespace Flow.Launcher.Plugin.Program.Views.Models { public class ProgramSource : Settings.ProgramSource { } } diff --git a/Plugins/Wox.Plugin.Program/Views/ProgramSetting.xaml b/Plugins/Wox.Plugin.Program/Views/ProgramSetting.xaml index 0fe8d3bd853..7dcc7de1ccb 100644 --- a/Plugins/Wox.Plugin.Program/Views/ProgramSetting.xaml +++ b/Plugins/Wox.Plugin.Program/Views/ProgramSetting.xaml @@ -1,9 +1,9 @@ - diff --git a/Plugins/Wox.Plugin.Program/Views/ProgramSetting.xaml.cs b/Plugins/Wox.Plugin.Program/Views/ProgramSetting.xaml.cs index 72a4f574660..b7ee94b99a4 100644 --- a/Plugins/Wox.Plugin.Program/Views/ProgramSetting.xaml.cs +++ b/Plugins/Wox.Plugin.Program/Views/ProgramSetting.xaml.cs @@ -5,13 +5,13 @@ using System.Windows; using System.Windows.Controls; using System.Windows.Input; -using Wox.Plugin.Program.Views.Models; -using Wox.Plugin.Program.Views.Commands; -using Wox.Plugin.Program.Programs; +using Flow.Launcher.Plugin.Program.Views.Models; +using Flow.Launcher.Plugin.Program.Views.Commands; +using Flow.Launcher.Plugin.Program.Programs; using System.ComponentModel; using System.Windows.Data; -namespace Wox.Plugin.Program.Views +namespace Flow.Launcher.Plugin.Program.Views { /// /// Interaction logic for ProgramSetting.xaml diff --git a/Plugins/Wox.Plugin.Program/Wox.Plugin.Program.csproj b/Plugins/Wox.Plugin.Program/Wox.Plugin.Program.csproj index 8468c16f799..4bc5ba8cd83 100644 --- a/Plugins/Wox.Plugin.Program/Wox.Plugin.Program.csproj +++ b/Plugins/Wox.Plugin.Program/Wox.Plugin.Program.csproj @@ -4,8 +4,8 @@ netcoreapp3.1 {FDB3555B-58EF-4AE6-B5F1-904719637AB4} Properties - Wox.Plugin.Program - Wox.Plugin.Program + Flow.Launcher.Plugin.Program + Flow.Launcher.Plugin.Program true true false @@ -16,7 +16,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.Program\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Program\ DEBUG;TRACE prompt 4 @@ -26,7 +26,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.Program\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Program\ TRACE prompt 4 @@ -102,8 +102,8 @@ - - + + diff --git a/Plugins/Wox.Plugin.Program/plugin.json b/Plugins/Wox.Plugin.Program/plugin.json index 86fd8ebd62b..d518fe90c2c 100644 --- a/Plugins/Wox.Plugin.Program/plugin.json +++ b/Plugins/Wox.Plugin.Program/plugin.json @@ -2,11 +2,11 @@ "ID":"791FC278BA414111B8D1886DFE447410", "ActionKeyword":"*", "Name":"Program", - "Description":"Search programs in Wox", + "Description":"Search programs in Flow.Launcher", "Author":"qianlifeng", "Version":"1.0.0", "Language":"csharp", "Website":"http://www.wox.one/plugin", - "ExecuteFileName":"Wox.Plugin.Program.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.Program.dll", "IcoPath":"Images\\program.png" } diff --git a/Plugins/Wox.Plugin.Shell/Languages/de.xaml b/Plugins/Wox.Plugin.Shell/Languages/de.xaml index 73eebecdcb9..70ec7aa55b5 100644 --- a/Plugins/Wox.Plugin.Shell/Languages/de.xaml +++ b/Plugins/Wox.Plugin.Shell/Languages/de.xaml @@ -5,7 +5,7 @@ Ersetzt Win+R Schließe die Kommandozeilte nicht nachdem der Befehl ausgeführt wurde Kommandozeile - Bereitstellung der Kommandozeile in Wox. Befehle müssem mit > starten + Bereitstellung der Kommandozeile in Flow.Launcher. Befehle müssem mit > starten Dieser Befehl wurde {0} mal ausgeführt Führe Befehle mittels Kommandozeile aus Als Administrator ausführen diff --git a/Plugins/Wox.Plugin.Shell/Languages/en.xaml b/Plugins/Wox.Plugin.Shell/Languages/en.xaml index 0d0a41b3f1f..511cf434b71 100644 --- a/Plugins/Wox.Plugin.Shell/Languages/en.xaml +++ b/Plugins/Wox.Plugin.Shell/Languages/en.xaml @@ -7,7 +7,7 @@ Always run as administrator Run as different user Shell - Allows to execute system commands from Wox. Commands should start with > + Allows to execute system commands from Flow.Launcher. Commands should start with > this command has been executed {0} times execute command through command shell Run As Administrator diff --git a/Plugins/Wox.Plugin.Shell/Languages/pl.xaml b/Plugins/Wox.Plugin.Shell/Languages/pl.xaml index 909e5c2586b..ce1dcca8aac 100644 --- a/Plugins/Wox.Plugin.Shell/Languages/pl.xaml +++ b/Plugins/Wox.Plugin.Shell/Languages/pl.xaml @@ -5,7 +5,7 @@ Zastąp Win+R Nie zamykaj wiersza poleceń po wykonaniu polecenia Wiersz poleceń - Pozwala wykonywać komend wiersza polecania z Woxa. Polecania zaczynają się od > + Pozwala wykonywać komend wiersza polecania z Flow.Launchera. Polecania zaczynają się od > to polecenie zostało wykonane {0} razy wykonaj to polecenie w wierszu poleceń Uruchom jako administrator diff --git a/Plugins/Wox.Plugin.Shell/Languages/tr.xaml b/Plugins/Wox.Plugin.Shell/Languages/tr.xaml index 268b882533c..2ae1095a2d9 100644 --- a/Plugins/Wox.Plugin.Shell/Languages/tr.xaml +++ b/Plugins/Wox.Plugin.Shell/Languages/tr.xaml @@ -5,7 +5,7 @@ Win+R kısayolunu kullan Çalıştırma sona erdikten sonra komut istemini kapatma Kabuk - Wox üzerinden komut istemini kullanmanızı sağlar. Komutlar > işareti ile başlamalıdır. + Flow.Launcher üzerinden komut istemini kullanmanızı sağlar. Komutlar > işareti ile başlamalıdır. Bu komut {0} kez çalıştırıldı Komut isteminde çalıştır Yönetici Olarak Çalıştır diff --git a/Plugins/Wox.Plugin.Shell/Languages/zh-cn.xaml b/Plugins/Wox.Plugin.Shell/Languages/zh-cn.xaml index c4870a16474..b63d00670da 100644 --- a/Plugins/Wox.Plugin.Shell/Languages/zh-cn.xaml +++ b/Plugins/Wox.Plugin.Shell/Languages/zh-cn.xaml @@ -5,7 +5,7 @@ 替换 Win+R 执行后不关闭命令窗口 命令行 - 提供从Wox中执行命令行的能力,命令应该以>开头 + 提供从Flow.Launcher中执行命令行的能力,命令应该以>开头 此命令已经被执行了 {0} 次 执行此命令 以管理员身份运行 diff --git a/Plugins/Wox.Plugin.Shell/Languages/zh-tw.xaml b/Plugins/Wox.Plugin.Shell/Languages/zh-tw.xaml index 082de6301b8..e453e5a3501 100644 --- a/Plugins/Wox.Plugin.Shell/Languages/zh-tw.xaml +++ b/Plugins/Wox.Plugin.Shell/Languages/zh-tw.xaml @@ -5,7 +5,7 @@ 取代 Win+R 執行後不關閉命令提示字元視窗 命令提示字元 - 提供從 Wox 中執行命令提示字元的功能,指令應該以>開頭 + 提供從 Flow.Launcher 中執行命令提示字元的功能,指令應該以>開頭 此指令已執行了 {0} 次 執行指令 以系統管理員身分執行 diff --git a/Plugins/Wox.Plugin.Shell/Main.cs b/Plugins/Wox.Plugin.Shell/Main.cs index 1a5174c4e4f..e5a05714259 100644 --- a/Plugins/Wox.Plugin.Shell/Main.cs +++ b/Plugins/Wox.Plugin.Shell/Main.cs @@ -8,15 +8,15 @@ using System.Windows; using WindowsInput; using WindowsInput.Native; -using Wox.Infrastructure.Hotkey; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.Storage; -using Wox.Plugin.SharedCommands; +using Flow.Launcher.Infrastructure.Hotkey; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Plugin.SharedCommands; using Application = System.Windows.Application; using Control = System.Windows.Controls.Control; using Keys = System.Windows.Forms.Keys; -namespace Wox.Plugin.Shell +namespace Flow.Launcher.Plugin.Shell { public class Main : IPlugin, ISettingProvider, IPluginI18n, IContextMenu, ISavable { @@ -94,7 +94,7 @@ public List Query(Query query) } catch (Exception e) { - Log.Exception($"|Wox.Plugin.Shell.Main.Query|Exception when query for <{query}>", e); + Log.Exception($"|Flow.Launcher.Plugin.Shell.Main.Query|Exception when query for <{query}>", e); } return results; } diff --git a/Plugins/Wox.Plugin.Shell/Settings.cs b/Plugins/Wox.Plugin.Shell/Settings.cs index af149e8290c..7294630bb5f 100644 --- a/Plugins/Wox.Plugin.Shell/Settings.cs +++ b/Plugins/Wox.Plugin.Shell/Settings.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Wox.Plugin.Shell +namespace Flow.Launcher.Plugin.Shell { public class Settings { diff --git a/Plugins/Wox.Plugin.Shell/ShellSetting.xaml b/Plugins/Wox.Plugin.Shell/ShellSetting.xaml index dc6de53bace..afbf3d898e3 100644 --- a/Plugins/Wox.Plugin.Shell/ShellSetting.xaml +++ b/Plugins/Wox.Plugin.Shell/ShellSetting.xaml @@ -1,4 +1,4 @@ -netcoreapp3.1 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} Properties - Wox.Plugin.Shell - Wox.Plugin.Shell + Flow.Launcher.Plugin.Shell + Flow.Launcher.Plugin.Shell true false false @@ -15,7 +15,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.Shell\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Shell\ DEBUG;TRACE prompt 4 @@ -25,7 +25,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.Shell\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Shell\ TRACE prompt 4 @@ -59,8 +59,8 @@ - - + + diff --git a/Plugins/Wox.Plugin.Shell/plugin.json b/Plugins/Wox.Plugin.Shell/plugin.json index a09636e390b..632c352196d 100644 --- a/Plugins/Wox.Plugin.Shell/plugin.json +++ b/Plugins/Wox.Plugin.Shell/plugin.json @@ -2,11 +2,11 @@ "ID":"D409510CD0D2481F853690A07E6DC426", "ActionKeyword":">", "Name":"Shell", - "Description":"Provide executing commands from Wox. Commands should start with >", + "Description":"Provide executing commands from Flow.Launcher. Commands should start with >", "Author":"qianlifeng", "Version":"1.0.0", "Language":"csharp", "Website":"http://www.wox.one/plugin", - "ExecuteFileName":"Wox.Plugin.Shell.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.Shell.dll", "IcoPath":"Images\\shell.png" } diff --git a/Plugins/Wox.Plugin.Sys/Languages/de.xaml b/Plugins/Wox.Plugin.Sys/Languages/de.xaml index f47676b47b5..ba62c4618f9 100644 --- a/Plugins/Wox.Plugin.Sys/Languages/de.xaml +++ b/Plugins/Wox.Plugin.Sys/Languages/de.xaml @@ -9,8 +9,8 @@ Computer neu starten Abmelden Computer sperren - Wox schließen - Wox neu starten + Flow.Launcher schließen + Flow.Launcher neu starten Anwendung beschleunigen Computer in Schlafmodus versetzen Papierkorb leeren diff --git a/Plugins/Wox.Plugin.Sys/Languages/en.xaml b/Plugins/Wox.Plugin.Sys/Languages/en.xaml index f4b8bbfba58..da5378e0100 100644 --- a/Plugins/Wox.Plugin.Sys/Languages/en.xaml +++ b/Plugins/Wox.Plugin.Sys/Languages/en.xaml @@ -10,18 +10,18 @@ Restart Computer Log off Lock this computer - Close Wox - Restart Wox + Close Flow.Launcher + Restart Flow.Launcher Tweak this app Put computer to sleep Empty recycle bin Hibernate computer - Save all Wox settings - Reloads plugin data with new content added after Wox started. Plugins need to have this feature already added. + Save all Flow.Launcher settings + Reloads plugin data with new content added after Flow.Launcher started. Plugins need to have this feature already added. Success - All Wox settings saved + All Flow.Launcher settings saved Reloaded all applicable plugin data Are you sure you want to shut the computer down? Are you sure you want to restart the computer? diff --git a/Plugins/Wox.Plugin.Sys/Languages/ja.xaml b/Plugins/Wox.Plugin.Sys/Languages/ja.xaml index 0f909302385..15faf6e1563 100644 --- a/Plugins/Wox.Plugin.Sys/Languages/ja.xaml +++ b/Plugins/Wox.Plugin.Sys/Languages/ja.xaml @@ -9,8 +9,8 @@ コンピュータを再起動する ログオフ このコンピュータをロックする - Woxを終了する - Woxを再起動する + Flow.Launcherを終了する + Flow.Launcherを再起動する このアプリの設定 スリープ ゴミ箱を空にする diff --git a/Plugins/Wox.Plugin.Sys/Languages/pl.xaml b/Plugins/Wox.Plugin.Sys/Languages/pl.xaml index 19a9c1a67bb..24a30f5c7e2 100644 --- a/Plugins/Wox.Plugin.Sys/Languages/pl.xaml +++ b/Plugins/Wox.Plugin.Sys/Languages/pl.xaml @@ -9,8 +9,8 @@ Uruchom ponownie komputer Wyloguj się Zablokuj ten komputer - Wyłącz Woxa - Uruchom ponownie Woxa + Wyłącz Flow.Launchera + Uruchom ponownie Flow.Launchera Dostosuj ustawienia Przełącz komputer w tryb uśpienia Opróżnij kosz diff --git a/Plugins/Wox.Plugin.Sys/Languages/tr.xaml b/Plugins/Wox.Plugin.Sys/Languages/tr.xaml index 5111aa77855..5e6279b9760 100644 --- a/Plugins/Wox.Plugin.Sys/Languages/tr.xaml +++ b/Plugins/Wox.Plugin.Sys/Languages/tr.xaml @@ -10,18 +10,18 @@ Yeniden Başlat Oturumu Kapat Bilgisayarı Kilitle - Wox'u Kapat - Wox'u Yeniden Başlat - Wox Ayarlarını Aç + Flow.Launcher'u Kapat + Flow.Launcher'u Yeniden Başlat + Flow.Launcher Ayarlarını Aç Bilgisayarı Uyku Moduna Al Geri Dönüşüm Kutusunu Boşalt Bilgisayarı Askıya Al - Tüm Wox Ayarlarını Kaydet - Eklentilerin verilerini Wox'un açılışından sonra yapılan değişiklikleri için günceller. Eklentilerin bu özelliği zaten eklemiş olması gerekir. + Tüm Flow.Launcher Ayarlarını Kaydet + Eklentilerin verilerini Flow.Launcher'un açılışından sonra yapılan değişiklikleri için günceller. Eklentilerin bu özelliği zaten eklemiş olması gerekir. Başarılı - Tüm Wox ayarları kaydedildi. + Tüm Flow.Launcher ayarları kaydedildi. Bilgisayarı kapatmak istediğinize emin misiniz? Bilgisayarı yeniden başlatmak istediğinize emin misiniz? diff --git a/Plugins/Wox.Plugin.Sys/Languages/zh-cn.xaml b/Plugins/Wox.Plugin.Sys/Languages/zh-cn.xaml index 58e20961988..0b9f80997d6 100644 --- a/Plugins/Wox.Plugin.Sys/Languages/zh-cn.xaml +++ b/Plugins/Wox.Plugin.Sys/Languages/zh-cn.xaml @@ -9,8 +9,8 @@ 重启这台电脑 注销 锁定这台电脑 - 退出Wox - 重启Wox + 退出Flow.Launcher + 重启Flow.Launcher 设置 休眠这台电脑 清空回收站 diff --git a/Plugins/Wox.Plugin.Sys/Languages/zh-tw.xaml b/Plugins/Wox.Plugin.Sys/Languages/zh-tw.xaml index ac035bdd8f2..5c86f97305d 100644 --- a/Plugins/Wox.Plugin.Sys/Languages/zh-tw.xaml +++ b/Plugins/Wox.Plugin.Sys/Languages/zh-tw.xaml @@ -9,8 +9,8 @@ 電腦重新啟動 登出 鎖定電腦 - 退出Wox - 重新啟動 Wox + 退出Flow.Launcher + 重新啟動 Flow.Launcher 設定 睡眠 清空資源回收桶 diff --git a/Plugins/Wox.Plugin.Sys/Main.cs b/Plugins/Wox.Plugin.Sys/Main.cs index f6be3a43582..e1f8e447b67 100644 --- a/Plugins/Wox.Plugin.Sys/Main.cs +++ b/Plugins/Wox.Plugin.Sys/Main.cs @@ -5,13 +5,13 @@ using System.Windows; using System.Windows.Forms; using System.Windows.Interop; -using Wox.Infrastructure; +using Flow.Launcher.Infrastructure; using Application = System.Windows.Application; using Control = System.Windows.Controls.Control; using FormsApplication = System.Windows.Forms.Application; using MessageBox = System.Windows.MessageBox; -namespace Wox.Plugin.Sys +namespace Flow.Launcher.Plugin.Sys { public class Main : IPlugin, ISettingProvider, IPluginI18n { @@ -200,7 +200,7 @@ private List Commands() }, new Result { - Title = "Restart Wox", + Title = "Restart Flow.Launcher", SubTitle = context.API.GetTranslation("wox_plugin_sys_restart"), IcoPath = "Images\\app.png", Action = c => @@ -238,7 +238,7 @@ private List Commands() new Result { Title = "Check For Update", - SubTitle = "Check for new Wox update", + SubTitle = "Check for new Flow.Launcher update", IcoPath = "Images\\checkupdate.png", Action = c => { diff --git a/Plugins/Wox.Plugin.Sys/SysSettings.xaml b/Plugins/Wox.Plugin.Sys/SysSettings.xaml index 5ef2443a569..e9d980d7beb 100644 --- a/Plugins/Wox.Plugin.Sys/SysSettings.xaml +++ b/Plugins/Wox.Plugin.Sys/SysSettings.xaml @@ -1,4 +1,4 @@ -netcoreapp3.1 {0B9DE348-9361-4940-ADB6-F5953BFFCCEC} Properties - Wox.Plugin.Sys - Wox.Plugin.Sys + Flow.Launcher.Plugin.Sys + Flow.Launcher.Plugin.Sys true false false @@ -15,7 +15,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.Sys\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Sys\ DEBUG;TRACE prompt 4 @@ -25,7 +25,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.Sys\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Sys\ TRACE prompt 4 @@ -33,8 +33,8 @@ - - + + diff --git a/Plugins/Wox.Plugin.Sys/plugin.json b/Plugins/Wox.Plugin.Sys/plugin.json index 20c709a7950..8ffe0273c71 100644 --- a/Plugins/Wox.Plugin.Sys/plugin.json +++ b/Plugins/Wox.Plugin.Sys/plugin.json @@ -7,6 +7,6 @@ "Version":"1.0.0", "Language":"csharp", "Website":"http://www.wox.one/plugin", - "ExecuteFileName":"Wox.Plugin.Sys.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.Sys.dll", "IcoPath":"Images\\lock.png" } diff --git a/Plugins/Wox.Plugin.Url/Languages/de.xaml b/Plugins/Wox.Plugin.Url/Languages/de.xaml index 172a8412bcd..0b21599c659 100644 --- a/Plugins/Wox.Plugin.Url/Languages/de.xaml +++ b/Plugins/Wox.Plugin.Url/Languages/de.xaml @@ -6,6 +6,6 @@ Kann URL nicht öffnen:{0} URL - Öffne eine eingegebene URL mit Wox + Öffne eine eingegebene URL mit Flow.Launcher \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Url/Languages/en.xaml b/Plugins/Wox.Plugin.Url/Languages/en.xaml index 082f12d2d8f..f9be2d31470 100644 --- a/Plugins/Wox.Plugin.Url/Languages/en.xaml +++ b/Plugins/Wox.Plugin.Url/Languages/en.xaml @@ -6,7 +6,7 @@ Can't open url:{0} URL - Open the typed URL from Wox + Open the typed URL from Flow.Launcher Please set your browser path: Choose diff --git a/Plugins/Wox.Plugin.Url/Languages/ja.xaml b/Plugins/Wox.Plugin.Url/Languages/ja.xaml index b20f1a493f2..58ea3e871aa 100644 --- a/Plugins/Wox.Plugin.Url/Languages/ja.xaml +++ b/Plugins/Wox.Plugin.Url/Languages/ja.xaml @@ -6,6 +6,6 @@ 次のURLを開くことができません:{0} URL - 入力したURLをWoxから開くプラグインです。 + 入力したURLをFlow.Launcherから開くプラグインです。 \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Url/Languages/pl.xaml b/Plugins/Wox.Plugin.Url/Languages/pl.xaml index b2be290d1ec..c526cf6d82b 100644 --- a/Plugins/Wox.Plugin.Url/Languages/pl.xaml +++ b/Plugins/Wox.Plugin.Url/Languages/pl.xaml @@ -6,6 +6,6 @@ Nie udało się otworzyć adresu: {0} URL - Otwórz wpisany adres URL z poziomu Woxa + Otwórz wpisany adres URL z poziomu Flow.Launchera \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Url/Languages/tr.xaml b/Plugins/Wox.Plugin.Url/Languages/tr.xaml index 05ac1d1a453..659a65864ac 100644 --- a/Plugins/Wox.Plugin.Url/Languages/tr.xaml +++ b/Plugins/Wox.Plugin.Url/Languages/tr.xaml @@ -6,7 +6,7 @@ URL Açılamıyor: {0} URL - Wox'a yazılan URL'leri açar + Flow.Launcher'a yazılan URL'leri açar Tarayıcınızın konumunu ayarlayın: Seç diff --git a/Plugins/Wox.Plugin.Url/Languages/zh-cn.xaml b/Plugins/Wox.Plugin.Url/Languages/zh-cn.xaml index 6a4429b0123..487f6a651ea 100644 --- a/Plugins/Wox.Plugin.Url/Languages/zh-cn.xaml +++ b/Plugins/Wox.Plugin.Url/Languages/zh-cn.xaml @@ -6,7 +6,7 @@ 无法打开链接:{0} URL - 从Wox打开链接 + 从Flow.Launcher打开链接 请设置你的浏览器路径: 选择 diff --git a/Plugins/Wox.Plugin.Url/Languages/zh-tw.xaml b/Plugins/Wox.Plugin.Url/Languages/zh-tw.xaml index 33e7d1bedd5..b37ec2e3b9f 100644 --- a/Plugins/Wox.Plugin.Url/Languages/zh-tw.xaml +++ b/Plugins/Wox.Plugin.Url/Languages/zh-tw.xaml @@ -6,6 +6,6 @@ 無法開啟連結:{0} URL - 從 Wox 開啟連結 + 從 Flow.Launcher 開啟連結 diff --git a/Plugins/Wox.Plugin.Url/Main.cs b/Plugins/Wox.Plugin.Url/Main.cs index ed4e55b8673..d254c54b0e7 100644 --- a/Plugins/Wox.Plugin.Url/Main.cs +++ b/Plugins/Wox.Plugin.Url/Main.cs @@ -2,10 +2,10 @@ using System.Collections.Generic; using System.Text.RegularExpressions; using System.Windows.Controls; -using Wox.Infrastructure.Storage; -using Wox.Plugin.SharedCommands; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Plugin.SharedCommands; -namespace Wox.Plugin.Url +namespace Flow.Launcher.Plugin.Url { public class Main : ISettingProvider,IPlugin, IPluginI18n, ISavable { diff --git a/Plugins/Wox.Plugin.Url/Settings.cs b/Plugins/Wox.Plugin.Url/Settings.cs index 9ee074afcf6..7ac4c371d59 100644 --- a/Plugins/Wox.Plugin.Url/Settings.cs +++ b/Plugins/Wox.Plugin.Url/Settings.cs @@ -4,7 +4,7 @@ using System.Text; using System.Threading.Tasks; -namespace Wox.Plugin.Url +namespace Flow.Launcher.Plugin.Url { public class Settings { diff --git a/Plugins/Wox.Plugin.Url/SettingsControl.xaml b/Plugins/Wox.Plugin.Url/SettingsControl.xaml index 5bbca57f06a..9e4fcef402a 100644 --- a/Plugins/Wox.Plugin.Url/SettingsControl.xaml +++ b/Plugins/Wox.Plugin.Url/SettingsControl.xaml @@ -1,4 +1,4 @@ - /// SettingsControl.xaml 的交互逻辑 diff --git a/Plugins/Wox.Plugin.Url/Wox.Plugin.Url.csproj b/Plugins/Wox.Plugin.Url/Wox.Plugin.Url.csproj index 163cadba646..6bc8154af36 100644 --- a/Plugins/Wox.Plugin.Url/Wox.Plugin.Url.csproj +++ b/Plugins/Wox.Plugin.Url/Wox.Plugin.Url.csproj @@ -5,8 +5,8 @@ {A3DCCBCA-ACC1-421D-B16E-210896234C26} true Properties - Wox.Plugin.Url - Wox.Plugin.Url + Flow.Launcher.Plugin.Url + Flow.Launcher.Plugin.Url false false @@ -15,7 +15,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.Url\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Url\ DEBUG;TRACE prompt 4 @@ -25,7 +25,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.Url\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Url\ TRACE prompt 4 @@ -39,8 +39,8 @@ - - + + diff --git a/Plugins/Wox.Plugin.Url/plugin.json b/Plugins/Wox.Plugin.Url/plugin.json index 09c54a7ffa7..2f3741dedce 100644 --- a/Plugins/Wox.Plugin.Url/plugin.json +++ b/Plugins/Wox.Plugin.Url/plugin.json @@ -2,11 +2,11 @@ "ID":"0308FD86DE0A4DEE8D62B9B535370992", "ActionKeyword":"*", "Name":"URL", - "Description":"Open the typed URL from Wox", + "Description":"Open the typed URL from Flow.Launcher", "Author":"qianlifeng", "Version":"1.0.0", "Language":"csharp", "Website":"http://www.wox.one/plugin", - "ExecuteFileName":"Wox.Plugin.Url.dll", + "ExecuteFileName":"Flow.Launcher.Plugin.Url.dll", "IcoPath":"Images\\url.png" } diff --git a/Plugins/Wox.Plugin.WebSearch/Main.cs b/Plugins/Wox.Plugin.WebSearch/Main.cs index d8c6ccafbb4..a4b71fce19c 100644 --- a/Plugins/Wox.Plugin.WebSearch/Main.cs +++ b/Plugins/Wox.Plugin.WebSearch/Main.cs @@ -6,11 +6,11 @@ using System.Threading; using System.Threading.Tasks; using System.Windows.Controls; -using Wox.Infrastructure; -using Wox.Infrastructure.Storage; -using Wox.Plugin.SharedCommands; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Plugin.SharedCommands; -namespace Wox.Plugin.WebSearch +namespace Flow.Launcher.Plugin.WebSearch { public class Main : IPlugin, ISettingProvider, IPluginI18n, ISavable, IResultUpdated { diff --git a/Plugins/Wox.Plugin.WebSearch/SearchSource.cs b/Plugins/Wox.Plugin.WebSearch/SearchSource.cs index 5e8b8bdabfe..20d0dd5a454 100644 --- a/Plugins/Wox.Plugin.WebSearch/SearchSource.cs +++ b/Plugins/Wox.Plugin.WebSearch/SearchSource.cs @@ -2,9 +2,9 @@ using System.Windows.Media; using JetBrains.Annotations; using Newtonsoft.Json; -using Wox.Infrastructure.Image; +using Flow.Launcher.Infrastructure.Image; -namespace Wox.Plugin.WebSearch +namespace Flow.Launcher.Plugin.WebSearch { public class SearchSource : BaseModel { diff --git a/Plugins/Wox.Plugin.WebSearch/SearchSourceSetting.xaml b/Plugins/Wox.Plugin.WebSearch/SearchSourceSetting.xaml index 5a1e5bce50c..a1ab73b2e74 100644 --- a/Plugins/Wox.Plugin.WebSearch/SearchSourceSetting.xaml +++ b/Plugins/Wox.Plugin.WebSearch/SearchSourceSetting.xaml @@ -1,9 +1,9 @@ - /// Interaction logic for WebSearchesSetting.xaml diff --git a/Plugins/Wox.Plugin.WebSearch/SettingsViewModel.cs b/Plugins/Wox.Plugin.WebSearch/SettingsViewModel.cs index 5d50c3926cd..5943b187e47 100644 --- a/Plugins/Wox.Plugin.WebSearch/SettingsViewModel.cs +++ b/Plugins/Wox.Plugin.WebSearch/SettingsViewModel.cs @@ -1,6 +1,6 @@ -using Wox.Infrastructure.Storage; +using Flow.Launcher.Infrastructure.Storage; -namespace Wox.Plugin.WebSearch +namespace Flow.Launcher.Plugin.WebSearch { public class SettingsViewModel { diff --git a/Plugins/Wox.Plugin.WebSearch/SuggestionSources/Baidu.cs b/Plugins/Wox.Plugin.WebSearch/SuggestionSources/Baidu.cs index 7d58a57f5c1..57db223bcb9 100644 --- a/Plugins/Wox.Plugin.WebSearch/SuggestionSources/Baidu.cs +++ b/Plugins/Wox.Plugin.WebSearch/SuggestionSources/Baidu.cs @@ -6,10 +6,10 @@ using System.Threading.Tasks; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -using Wox.Infrastructure.Http; -using Wox.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.Http; +using Flow.Launcher.Infrastructure.Logger; -namespace Wox.Plugin.WebSearch.SuggestionSources +namespace Flow.Launcher.Plugin.WebSearch.SuggestionSources { public class Baidu : SuggestionSource { diff --git a/Plugins/Wox.Plugin.WebSearch/SuggestionSources/Google.cs b/Plugins/Wox.Plugin.WebSearch/SuggestionSources/Google.cs index d7a908969b2..81878bd8b4a 100644 --- a/Plugins/Wox.Plugin.WebSearch/SuggestionSources/Google.cs +++ b/Plugins/Wox.Plugin.WebSearch/SuggestionSources/Google.cs @@ -5,10 +5,10 @@ using System.Threading.Tasks; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -using Wox.Infrastructure.Http; -using Wox.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.Http; +using Flow.Launcher.Infrastructure.Logger; -namespace Wox.Plugin.WebSearch.SuggestionSources +namespace Flow.Launcher.Plugin.WebSearch.SuggestionSources { public class Google : SuggestionSource { diff --git a/Plugins/Wox.Plugin.WebSearch/SuggestionSources/SuggestionSource.cs b/Plugins/Wox.Plugin.WebSearch/SuggestionSources/SuggestionSource.cs index 173efcfaa5f..d6d89415f88 100644 --- a/Plugins/Wox.Plugin.WebSearch/SuggestionSources/SuggestionSource.cs +++ b/Plugins/Wox.Plugin.WebSearch/SuggestionSources/SuggestionSource.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Threading.Tasks; -namespace Wox.Plugin.WebSearch.SuggestionSources +namespace Flow.Launcher.Plugin.WebSearch.SuggestionSources { public abstract class SuggestionSource { diff --git a/Plugins/Wox.Plugin.WebSearch/Wox.Plugin.WebSearch.csproj b/Plugins/Wox.Plugin.WebSearch/Wox.Plugin.WebSearch.csproj index 54ce4d72435..21695ffcfa6 100644 --- a/Plugins/Wox.Plugin.WebSearch/Wox.Plugin.WebSearch.csproj +++ b/Plugins/Wox.Plugin.WebSearch/Wox.Plugin.WebSearch.csproj @@ -4,8 +4,8 @@ netcoreapp3.1 {403B57F2-1856-4FC7-8A24-36AB346B763E} Properties - Wox.Plugin.WebSearch - Wox.Plugin.WebSearch + Flow.Launcher.Plugin.WebSearch + Flow.Launcher.Plugin.WebSearch false false @@ -14,7 +14,7 @@ true full false - ..\..\Output\Debug\Plugins\Wox.Plugin.WebSearch\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.WebSearch\ DEBUG;TRACE prompt 4 @@ -24,7 +24,7 @@ pdbonly true - ..\..\Output\Release\Plugins\Wox.Plugin.WebSearch\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.WebSearch\ TRACE prompt 4 @@ -145,9 +145,9 @@ - - - + + + diff --git a/Plugins/Wox.Plugin.WebSearch/plugin.json b/Plugins/Wox.Plugin.WebSearch/plugin.json index 2fe7fe2921e..06f6604837c 100644 --- a/Plugins/Wox.Plugin.WebSearch/plugin.json +++ b/Plugins/Wox.Plugin.WebSearch/plugin.json @@ -28,6 +28,6 @@ "Version": "1.0.0", "Language": "csharp", "Website": "http://www.wox.one/plugin", - "ExecuteFileName": "Wox.Plugin.WebSearch.dll", + "ExecuteFileName": "Flow.Launcher.Plugin.WebSearch.dll", "IcoPath": "Images\\web_search.png" } diff --git a/README.md b/README.md index a76bc110d90..1cd1c74a8d2 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ WoX === ![Maintenance](https://img.shields.io/maintenance/yes/2020) -[![GitHub release (latest by date)](https://img.shields.io/github/v/release/jjw24/wox)](https://github.com/jjw24/Wox/releases/latest) +[![GitHub release (latest by date)](https://img.shields.io/github/v/release/jjw24/wox)](https://github.com/jjw24/Flow.Launcher/releases/latest) ![GitHub Release Date](https://img.shields.io/github/release-date/jjw24/wox) ![GitHub commits since latest release](https://img.shields.io/github/commits-since/jjw24/wox/v1.3.524) -[![Build Status](https://dev.azure.com/Wox-Launcher/Wox/_apis/build/status/jjw24.Wox?branchName=master)](https://dev.azure.com/Wox-Launcher/Wox/_build/latest?definitionId=1&branchName=master) -[![Github All Releases](https://img.shields.io/github/downloads/jjw24/Wox/total.svg)](https://github.com/jjw24/Wox/releases) +[![Build Status](https://dev.azure.com/Flow.Launcher-Launcher/Flow.Launcher/_apis/build/status/jjw24.Flow.Launcher?branchName=master)](https://dev.azure.com/Flow.Launcher-Launcher/Flow.Launcher/_build/latest?definitionId=1&branchName=master) +[![Github All Releases](https://img.shields.io/github/downloads/jjw24/Flow.Launcher/total.svg)](https://github.com/jjw24/Flow.Launcher/releases) [![RamenBless](https://cdn.rawgit.com/LunaGao/BlessYourCodeTag/master/tags/ramen.svg)](https://github.com/LunaGao/BlessYourCodeTag) **WoX** is a launcher for Windows that simply works. It's an alternative to [Alfred](https://www.alfredapp.com/) and [Launchy](http://www.launchy.net/). You can call it Windows omni-eXecutor if you want a long name. @@ -41,13 +41,13 @@ Features Installation ------------ -View new features released from this fork since Wox v1.3.524: [new releases](https://github.com/jjw24/Wox/releases) +View new features released from this fork since Flow.Launcher v1.3.524: [new releases](https://github.com/jjw24/Flow.Launcher/releases) -To install this fork's version of Wox, you can **download** it [here](https://github.com/jjw24/Wox/releases/latest). +To install this fork's version of Flow.Launcher, you can **download** it [here](https://github.com/jjw24/Flow.Launcher/releases/latest). To install the upstream version: -Download `Wox-xxx.exe` from [releases](https://github.com/Wox-launcher/Wox/releases). Latest as of now is [`1.3.524`](https://github.com/Wox-launcher/Wox/releases/download/v1.3.524/Wox-1.3.524.exe) ([`1.3.578`](https://github.com/Wox-launcher/Wox/releases/download/v1.3.578/Wox-1.3.578.exe) for preview channel) +Download `Flow.Launcher-xxx.exe` from [releases](https://github.com/Flow.Launcher-launcher/Flow.Launcher/releases). Latest as of now is [`1.3.524`](https://github.com/Flow.Launcher-launcher/Flow.Launcher/releases/download/v1.3.524/Flow.Launcher-1.3.524.exe) ([`1.3.578`](https://github.com/Flow.Launcher-launcher/Flow.Launcher/releases/download/v1.3.578/Flow.Launcher-1.3.578.exe) for preview channel) Windows may complain about security due to code not being signed. This will be fixed later. @@ -64,17 +64,17 @@ Usage - Context Menu: Ctrl+O - Cancel/Return: Esc - Install/Uninstall plugin: type `wpm install/uninstall` -- Reset: delete `%APPDATA%\Wox` -- Log: `%APPDATA%\Wox\Logs` +- Reset: delete `%APPDATA%\Flow.Launcher` +- Log: `%APPDATA%\Flow.Launcher\Logs` Contribution ------------ - First and most importantly, star it! -- Read [Coding Style](https://github.com/Wox-launcher/Wox/wiki/Coding-Style) +- Read [Coding Style](https://github.com/Flow.Launcher-launcher/Flow.Launcher/wiki/Coding-Style) - Send PR to **dev** branch -- I'd appreciate if you could solve [help_needed](https://github.com/Wox-launcher/Wox/issues?q=is%3Aopen+is%3Aissue+label%3Ahelp_needed) labeled issue -- Don't hesitate to ask questions in the [issues](https://github.com/Wox-launcher/Wox/issues) +- I'd appreciate if you could solve [help_needed](https://github.com/Flow.Launcher-launcher/Flow.Launcher/issues?q=is%3Aopen+is%3Aissue+label%3Ahelp_needed) labeled issue +- Don't hesitate to ask questions in the [issues](https://github.com/Flow.Launcher-launcher/Flow.Launcher/issues) Developing/Debugging ----- @@ -84,6 +84,6 @@ Install [.Net Core 3.1 SDK](https://dotnet.microsoft.com/download/dotnet-core/th Documentation ------------- -- [Wiki](https://github.com/jjw24/Wox/wiki) +- [Wiki](https://github.com/jjw24/Flow.Launcher/wiki) - Outdated doc: [WoX doc](http://doc.wox.one). -- Just ask questions in [issues](https://github.com/jjw24/Wox/issues) for now. +- Just ask questions in [issues](https://github.com/jjw24/Flow.Launcher/issues) for now. diff --git a/Scripts/post_build.ps1 b/Scripts/post_build.ps1 index 7435059cd2c..d0472bc7f83 100644 --- a/Scripts/post_build.ps1 +++ b/Scripts/post_build.ps1 @@ -32,7 +32,7 @@ function Build-Path { } function Copy-Resources ($path, $config) { - $project = "$path\Wox" + $project = "$path\Flow.Launcher" $output = "$path\Output" $target = "$output\$config" Copy-Item -Recurse -Force $project\Themes\* $target\Themes\ @@ -74,7 +74,7 @@ function Zip-Release ($path, $version, $output) { $input = "$path\Output\Release" Write-Host "Input path: $input" - $file = "$output\Wox-JJW24-$version.zip" + $file = "$output\Flow.Launcher-JJW24-$version.zip" Write-Host "Filename: $file" [Reflection.Assembly]::LoadWithPartialName("System.IO.Compression.FileSystem") @@ -93,9 +93,9 @@ function Pack-Squirrel-Installer ($path, $version, $output) { Write-Host "Input path: $input" Nuget pack $spec -Version $version -Properties Configuration=Release -BasePath $input -OutputDirectory $output - $nupkg = "$output\Wox-JJW24.$version.nupkg" + $nupkg = "$output\Flow.Launcher-JJW24.$version.nupkg" Write-Host "nupkg path: $nupkg" - $icon = "$path\Wox\Resources\app.ico" + $icon = "$path\Flow.Launcher\Resources\app.ico" Write-Host "icon: $icon" # Squirrel.com: https://github.com/Squirrel/Squirrel.Windows/issues/369 New-Alias Squirrel $env:USERPROFILE\.nuget\packages\squirrel.windows\1.5.2\tools\Squirrel.exe -Force @@ -107,7 +107,7 @@ function Pack-Squirrel-Installer ($path, $version, $output) { Move-Item $temp\* $output -Force Remove-Item $temp - $file = "$output\Wox-JJW24-$version.exe" + $file = "$output\Flow.Launcher-JJW24-$version.exe" Write-Host "Filename: $file" Move-Item "$output\Setup.exe" $file -Force diff --git a/Scripts/wox.nuspec b/Scripts/wox.nuspec index ed400f4045c..4a35d388566 100644 --- a/Scripts/wox.nuspec +++ b/Scripts/wox.nuspec @@ -1,16 +1,16 @@ - Wox-JJW24 - Wox + Flow.Launcher-JJW24 + Flow.Launcher $version$ happlebao, Jeremy Wu - https://github.com/jjw24/Wox - https://raw.githubusercontent.com/jjw24/Wox/master/Wox/Images/app.png + https://github.com/jjw24/Flow.Launcher + https://raw.githubusercontent.com/jjw24/Flow.Launcher/master/Flow.Launcher/Images/app.png false - Wox - a launcher for windows + Flow.Launcher - a launcher for windows - + diff --git a/Scripts/wox.plugin.nuspec b/Scripts/wox.plugin.nuspec index 0cf5988603a..0b851fefbe6 100644 --- a/Scripts/wox.plugin.nuspec +++ b/Scripts/wox.plugin.nuspec @@ -1,16 +1,16 @@ - Wox.Plugin + Flow.Launcher.Plugin $version$ qianlifeng, Jeremy Wu - https://github.com/jjw24/Wox/blob/master/LICENSE - https://github.com/jjw24/Wox + https://github.com/jjw24/Flow.Launcher/blob/master/LICENSE + https://github.com/jjw24/Flow.Launcher false Reference this library if you want to develop a wox plugin wox - + diff --git a/SolutionAssemblyInfo.cs b/SolutionAssemblyInfo.cs index 34846f53fac..4014c4a3a73 100644 --- a/SolutionAssemblyInfo.cs +++ b/SolutionAssemblyInfo.cs @@ -4,14 +4,14 @@ #if DEBUG [assembly: AssemblyConfiguration("Debug")] -[assembly: AssemblyDescription("Debug build, https://github.com/jjw24/Wox")] +[assembly: AssemblyDescription("Debug build, https://github.com/jjw24/Flow.Launcher")] #else [assembly: AssemblyConfiguration("Release")] -[assembly: AssemblyDescription("Release build, https://github.com/jjw24/Wox")] +[assembly: AssemblyDescription("Release build, https://github.com/jjw24/Flow.Launcher")] #endif -[assembly: AssemblyCompany("Wox")] -[assembly: AssemblyProduct("Wox")] +[assembly: AssemblyCompany("Flow.Launcher")] +[assembly: AssemblyProduct("Flow.Launcher")] [assembly: AssemblyCopyright("The MIT License (MIT)")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/Wox.Core/Configuration/IPortable.cs b/Wox.Core/Configuration/IPortable.cs index b0af436725e..e56b0188cfb 100644 --- a/Wox.Core/Configuration/IPortable.cs +++ b/Wox.Core/Configuration/IPortable.cs @@ -1,5 +1,5 @@  -namespace Wox.Core.Configuration +namespace Flow.Launcher.Core.Configuration { public interface IPortable { diff --git a/Wox.Core/Configuration/Portable.cs b/Wox.Core/Configuration/Portable.cs index 7160a6d4867..e4b94c617bb 100644 --- a/Wox.Core/Configuration/Portable.cs +++ b/Wox.Core/Configuration/Portable.cs @@ -4,12 +4,12 @@ using System.IO; using System.Reflection; using System.Windows; -using Wox.Infrastructure; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.UserSettings; -using Wox.Plugin.SharedCommands; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.UserSettings; +using Flow.Launcher.Plugin.SharedCommands; -namespace Wox.Core.Configuration +namespace Flow.Launcher.Core.Configuration { public class Portable : IPortable { @@ -19,7 +19,7 @@ public class Portable : IPortable /// private UpdateManager NewUpdateManager() { - return new UpdateManager(string.Empty, Constant.Wox, Constant.RootDirectory); + return new UpdateManager(string.Empty, Constant.Flow.Launcher, Constant.RootDirectory); } public void DisablePortableMode() @@ -36,7 +36,7 @@ public void DisablePortableMode() #endif IndicateDeletion(DataLocation.PortableDataPath); - MessageBox.Show("Wox needs to restart to finish disabling portable mode, " + + MessageBox.Show("Flow.Launcher needs to restart to finish disabling portable mode, " + "after the restart your portable data profile will be deleted and roaming data profile kept"); UpdateManager.RestartApp(Constant.ApplicationFileName); @@ -64,7 +64,7 @@ public void EnablePortableMode() #endif IndicateDeletion(DataLocation.RoamingDataPath); - MessageBox.Show("Wox needs to restart to finish enabling portable mode, " + + MessageBox.Show("Flow.Launcher needs to restart to finish enabling portable mode, " + "after the restart your roaming data profile will be deleted and portable data profile kept"); UpdateManager.RestartApp(Constant.ApplicationFileName); @@ -126,7 +126,7 @@ public void CreateUninstallerEntry() .CreateSubKey("Uninstall", RegistryKeyPermissionCheck.ReadWriteSubTree)) {; } var key = RegistryKey.OpenBaseKey(RegistryHive.CurrentUser, RegistryView.Default) - .CreateSubKey(uninstallRegSubKey + "\\" + Constant.Wox, RegistryKeyPermissionCheck.ReadWriteSubTree); + .CreateSubKey(uninstallRegSubKey + "\\" + Constant.Flow.Launcher, RegistryKeyPermissionCheck.ReadWriteSubTree); key.SetValue("DisplayIcon", Constant.ApplicationDirectory + "\\app.ico", RegistryValueKind.String); using (var portabilityUpdater = NewUpdateManager()) @@ -142,13 +142,13 @@ internal void IndicateDeletion(string filePathTodelete) /// ///This method should be run at first before all methods during start up and should be run before determining which data location - ///will be used for Wox. + ///will be used for Flow.Launcher. /// public void PreStartCleanUpAfterPortabilityUpdate() { // Specify here so this method does not rely on other environment variables to initialise var portableDataPath = Path.Combine(Directory.GetParent(Assembly.GetExecutingAssembly().Location.NonNull()).ToString(), "UserData"); - var roamingDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Wox"); + var roamingDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Flow.Launcher"); bool DataLocationPortableDeleteRequired = false; bool DataLocationRoamingDeleteRequired = false; @@ -163,7 +163,7 @@ public void PreStartCleanUpAfterPortabilityUpdate() { FilesFolders.RemoveFolderIfExists(roamingDataPath); - if (MessageBox.Show("Wox has detected you enabled portable mode, " + + if (MessageBox.Show("Flow.Launcher has detected you enabled portable mode, " + "would you like to move it to a different location?", string.Empty, MessageBoxButton.YesNo) == MessageBoxResult.Yes) { @@ -179,7 +179,7 @@ public void PreStartCleanUpAfterPortabilityUpdate() { FilesFolders.RemoveFolderIfExists(portableDataPath); - MessageBox.Show("Wox has detected you disabled portable mode, " + + MessageBox.Show("Flow.Launcher has detected you disabled portable mode, " + "the relevant shortcuts and uninstaller entry have been created"); return; @@ -193,7 +193,7 @@ public bool CanUpdatePortability() if(roamingLocationExists && portableLocationExists) { - MessageBox.Show(string.Format("Wox detected your user data exists both in {0} and " + + MessageBox.Show(string.Format("Flow.Launcher detected your user data exists both in {0} and " + "{1}. {2}{2}Please delete {1} in order to proceed. No changes have occured.", DataLocation.PortableDataPath, DataLocation.RoamingDataPath, Environment.NewLine)); diff --git a/Wox.Core/Plugin/ExecutablePlugin.cs b/Wox.Core/Plugin/ExecutablePlugin.cs index 2753b00b3a9..6a96a94b754 100644 --- a/Wox.Core/Plugin/ExecutablePlugin.cs +++ b/Wox.Core/Plugin/ExecutablePlugin.cs @@ -1,8 +1,8 @@ using System; using System.Diagnostics; -using Wox.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Core.Plugin +namespace Flow.Launcher.Core.Plugin { internal class ExecutablePlugin : JsonRPCPlugin { diff --git a/Wox.Core/Plugin/JsonPRCModel.cs b/Wox.Core/Plugin/JsonPRCModel.cs index 3a0253e559b..add43f21834 100644 --- a/Wox.Core/Plugin/JsonPRCModel.cs +++ b/Wox.Core/Plugin/JsonPRCModel.cs @@ -1,23 +1,23 @@  -/* We basically follow the Json-RPC 2.0 spec (http://www.jsonrpc.org/specification) to invoke methods between Wox and other plugins, +/* We basically follow the Json-RPC 2.0 spec (http://www.jsonrpc.org/specification) to invoke methods between Flow.Launcher and other plugins, * 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 * "id" and "jsonrpc" in the request, since it's not so useful in our request model. * * When execute a query: - * Wox -------JsonRPCServerRequestModel--------> client - * Wox <------JsonRPCQueryResponseModel--------- client + * Flow.Launcher -------JsonRPCServerRequestModel--------> client + * Flow.Launcher <------JsonRPCQueryResponseModel--------- client * * When execute a action (which mean user select an item in reulst item): - * Wox -------JsonRPCServerRequestModel--------> client - * Wox <------JsonRPCResponseModel-------------- client + * Flow.Launcher -------JsonRPCServerRequestModel--------> client + * Flow.Launcher <------JsonRPCResponseModel-------------- client * */ using System.Collections.Generic; using System.Linq; -using Wox.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Core.Plugin +namespace Flow.Launcher.Core.Plugin { public class JsonRPCErrorModel { @@ -98,7 +98,7 @@ private string ReplaceEscapes(string str) } /// - /// Json RPC Request that Wox sent to client + /// Json RPC Request that Flow.Launcher sent to client /// public class JsonRPCServerRequestModel : JsonRPCRequestModel { @@ -110,7 +110,7 @@ public override string ToString() } /// - /// Json RPC Request(in query response) that client sent to Wox + /// Json RPC Request(in query response) that client sent to Flow.Launcher /// public class JsonRPCClientRequestModel : JsonRPCRequestModel { @@ -124,9 +124,9 @@ public override string ToString() } /// - /// Represent the json-rpc result item that client send to Wox + /// Represent the json-rpc result item that client send to Flow.Launcher /// Typically, we will send back this request model to client after user select the result item - /// But if the request method starts with "Wox.", we will invoke the public APIs we expose. + /// But if the request method starts with "Flow.Launcher.", we will invoke the public APIs we expose. /// public class JsonRPCResult : Result { diff --git a/Wox.Core/Plugin/JsonRPCPlugin.cs b/Wox.Core/Plugin/JsonRPCPlugin.cs index 5057ae472ba..157da6ec5f4 100644 --- a/Wox.Core/Plugin/JsonRPCPlugin.cs +++ b/Wox.Core/Plugin/JsonRPCPlugin.cs @@ -7,11 +7,11 @@ using System.Threading.Tasks; using System.Windows.Forms; using Newtonsoft.Json; -using Wox.Infrastructure.Exception; -using Wox.Infrastructure.Logger; -using Wox.Plugin; +using Flow.Launcher.Infrastructure.Exception; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Plugin; -namespace Wox.Core.Plugin +namespace Flow.Launcher.Core.Plugin { /// /// Represent the plugin that using JsonPRC @@ -77,9 +77,9 @@ private List DeserializedResult(string output) if (!String.IsNullOrEmpty(result1.JsonRPCAction.Method)) { - if (result1.JsonRPCAction.Method.StartsWith("Wox.")) + if (result1.JsonRPCAction.Method.StartsWith("Flow.Launcher.")) { - ExecuteWoxAPI(result1.JsonRPCAction.Method.Substring(4), result1.JsonRPCAction.Parameters); + ExecuteFlow.LauncherAPI(result1.JsonRPCAction.Method.Substring(4), result1.JsonRPCAction.Parameters); } else { @@ -87,9 +87,9 @@ private List DeserializedResult(string output) JsonRPCRequestModel jsonRpcRequestModel = JsonConvert.DeserializeObject(actionReponse); if (jsonRpcRequestModel != null && !String.IsNullOrEmpty(jsonRpcRequestModel.Method) - && jsonRpcRequestModel.Method.StartsWith("Wox.")) + && jsonRpcRequestModel.Method.StartsWith("Flow.Launcher.")) { - ExecuteWoxAPI(jsonRpcRequestModel.Method.Substring(4), jsonRpcRequestModel.Parameters); + ExecuteFlow.LauncherAPI(jsonRpcRequestModel.Method.Substring(4), jsonRpcRequestModel.Parameters); } } } @@ -105,7 +105,7 @@ private List DeserializedResult(string output) } } - private void ExecuteWoxAPI(string method, object[] parameters) + private void ExecuteFlow.LauncherAPI(string method, object[] parameters) { MethodInfo methodInfo = PluginManager.API.GetType().GetMethod(method); if (methodInfo != null) diff --git a/Wox.Core/Plugin/PluginConfig.cs b/Wox.Core/Plugin/PluginConfig.cs index 8721a85a1cb..d12dee0c438 100644 --- a/Wox.Core/Plugin/PluginConfig.cs +++ b/Wox.Core/Plugin/PluginConfig.cs @@ -4,11 +4,11 @@ using System.IO; using System.Threading.Tasks; using Newtonsoft.Json; -using Wox.Infrastructure.Exception; -using Wox.Infrastructure.Logger; -using Wox.Plugin; +using Flow.Launcher.Infrastructure.Exception; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Plugin; -namespace Wox.Core.Plugin +namespace Flow.Launcher.Core.Plugin { internal abstract class PluginConfig diff --git a/Wox.Core/Plugin/PluginInstaller.cs b/Wox.Core/Plugin/PluginInstaller.cs index a867d2e10fc..3024f77f1a2 100644 --- a/Wox.Core/Plugin/PluginInstaller.cs +++ b/Wox.Core/Plugin/PluginInstaller.cs @@ -3,9 +3,9 @@ using System.Windows; using ICSharpCode.SharpZipLib.Zip; using Newtonsoft.Json; -using Wox.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Core.Plugin +namespace Flow.Launcher.Core.Plugin { internal class PluginInstaller { @@ -83,7 +83,7 @@ internal static void Install(string path) // Plugins.Initialize(); //} if (MessageBox.Show($"You have installed plugin {plugin.Name} successfully.{Environment.NewLine}" + - "Restart Wox to take effect?", + "Restart Flow.Launcher to take effect?", "Install plugin", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes) { PluginManager.API.RestarApp(); diff --git a/Wox.Core/Plugin/PluginManager.cs b/Wox.Core/Plugin/PluginManager.cs index aa1065dfbb7..18a9a25e9fb 100644 --- a/Wox.Core/Plugin/PluginManager.cs +++ b/Wox.Core/Plugin/PluginManager.cs @@ -4,23 +4,23 @@ using System.IO; using System.Linq; using System.Threading.Tasks; -using Wox.Infrastructure; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.Storage; -using Wox.Infrastructure.UserSettings; -using Wox.Plugin; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Infrastructure.UserSettings; +using Flow.Launcher.Plugin; -namespace Wox.Core.Plugin +namespace Flow.Launcher.Core.Plugin { /// - /// The entry for managing Wox plugins + /// The entry for managing Flow.Launcher plugins /// public static class PluginManager { private static IEnumerable _contextMenuPlugins; /// - /// Directories that will hold Wox plugin directory + /// Directories that will hold Flow.Launcher plugin directory /// public static List AllPlugins { get; private set; } diff --git a/Wox.Core/Plugin/PluginsLoader.cs b/Wox.Core/Plugin/PluginsLoader.cs index c575743f3af..31e1c7032cf 100644 --- a/Wox.Core/Plugin/PluginsLoader.cs +++ b/Wox.Core/Plugin/PluginsLoader.cs @@ -4,13 +4,13 @@ using System.Linq; using System.Reflection; using System.Runtime.Loader; -using Wox.Infrastructure; -using Wox.Infrastructure.Exception; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.UserSettings; -using Wox.Plugin; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Exception; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.UserSettings; +using Flow.Launcher.Plugin; -namespace Wox.Core.Plugin +namespace Flow.Launcher.Core.Plugin { public static class PluginsLoader { diff --git a/Wox.Core/Plugin/PythonPlugin.cs b/Wox.Core/Plugin/PythonPlugin.cs index 95a7d863e61..3c5a3a699a2 100644 --- a/Wox.Core/Plugin/PythonPlugin.cs +++ b/Wox.Core/Plugin/PythonPlugin.cs @@ -1,10 +1,10 @@ using System; using System.Diagnostics; using System.IO; -using Wox.Infrastructure; -using Wox.Plugin; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Plugin; -namespace Wox.Core.Plugin +namespace Flow.Launcher.Core.Plugin { internal class PythonPlugin : JsonRPCPlugin { diff --git a/Wox.Core/Plugin/QueryBuilder.cs b/Wox.Core/Plugin/QueryBuilder.cs index b01a93291c9..9ad6466e9f3 100644 --- a/Wox.Core/Plugin/QueryBuilder.cs +++ b/Wox.Core/Plugin/QueryBuilder.cs @@ -1,9 +1,9 @@ using System; using System.Collections.Generic; using System.Linq; -using Wox.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Core.Plugin +namespace Flow.Launcher.Core.Plugin { public static class QueryBuilder { diff --git a/Wox.Core/README.md b/Wox.Core/README.md index b2e9b83de3b..e706703863b 100644 --- a/Wox.Core/README.md +++ b/Wox.Core/README.md @@ -1,8 +1,8 @@ -What does Wox.Core do? +What does Flow.Launcher.Core do? ===== * Handle Query -* Define Wox exceptions +* Define Flow.Launcher exceptions * Manage Plugins (including system plugin and user plugin) * Manage Themes * Manage i18n diff --git a/Wox.Core/Resource/AvailableLanguages.cs b/Wox.Core/Resource/AvailableLanguages.cs index e6c1e07f268..3c3dbc76f9d 100644 --- a/Wox.Core/Resource/AvailableLanguages.cs +++ b/Wox.Core/Resource/AvailableLanguages.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Wox.Core.Resource +namespace Flow.Launcher.Core.Resource { internal static class AvailableLanguages { diff --git a/Wox.Core/Resource/FontHelper.cs b/Wox.Core/Resource/FontHelper.cs index c7cc54bf67c..bc479b55a37 100644 --- a/Wox.Core/Resource/FontHelper.cs +++ b/Wox.Core/Resource/FontHelper.cs @@ -3,7 +3,7 @@ using System.Windows; using System.Windows.Media; -namespace Wox.Core.Resource +namespace Flow.Launcher.Core.Resource { public static class FontHelper { diff --git a/Wox.Core/Resource/Internationalization.cs b/Wox.Core/Resource/Internationalization.cs index 53cce9174c3..67703ac2367 100644 --- a/Wox.Core/Resource/Internationalization.cs +++ b/Wox.Core/Resource/Internationalization.cs @@ -4,13 +4,13 @@ using System.Linq; using System.Reflection; using System.Windows; -using Wox.Core.Plugin; -using Wox.Infrastructure; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.UserSettings; -using Wox.Plugin; +using Flow.Launcher.Core.Plugin; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.UserSettings; +using Flow.Launcher.Plugin; -namespace Wox.Core.Resource +namespace Flow.Launcher.Core.Resource { public class Internationalization { @@ -27,11 +27,11 @@ public Internationalization() LoadDefaultLanguage(); // we don't want to load /Languages/en.xaml twice // so add wox language directory after load plugin language files - AddWoxLanguageDirectory(); + AddFlow.LauncherLanguageDirectory(); } - private void AddWoxLanguageDirectory() + private void AddFlow.LauncherLanguageDirectory() { var directory = Path.Combine(Constant.ProgramDirectory, Folder); _languageDirectories.Add(directory); diff --git a/Wox.Core/Resource/InternationalizationManager.cs b/Wox.Core/Resource/InternationalizationManager.cs index ffc2c2ecfee..3d87626e6f9 100644 --- a/Wox.Core/Resource/InternationalizationManager.cs +++ b/Wox.Core/Resource/InternationalizationManager.cs @@ -1,4 +1,4 @@ -namespace Wox.Core.Resource +namespace Flow.Launcher.Core.Resource { public static class InternationalizationManager { diff --git a/Wox.Core/Resource/Language.cs b/Wox.Core/Resource/Language.cs index c0bdc1ccb42..b8046a872bc 100644 --- a/Wox.Core/Resource/Language.cs +++ b/Wox.Core/Resource/Language.cs @@ -1,4 +1,4 @@ -namespace Wox.Core.Resource +namespace Flow.Launcher.Core.Resource { public class Language { diff --git a/Wox.Core/Resource/LocalizationConverter.cs b/Wox.Core/Resource/LocalizationConverter.cs index d86bf5f7e09..1d835a8317a 100644 --- a/Wox.Core/Resource/LocalizationConverter.cs +++ b/Wox.Core/Resource/LocalizationConverter.cs @@ -4,7 +4,7 @@ using System.Reflection; using System.Windows.Data; -namespace Wox.Core +namespace Flow.Launcher.Core { public class LocalizationConverter : IValueConverter { diff --git a/Wox.Core/Resource/LocalizedDescriptionAttribute.cs b/Wox.Core/Resource/LocalizedDescriptionAttribute.cs index ef1257220bc..af8b23136af 100644 --- a/Wox.Core/Resource/LocalizedDescriptionAttribute.cs +++ b/Wox.Core/Resource/LocalizedDescriptionAttribute.cs @@ -1,7 +1,7 @@ using System.ComponentModel; -using Wox.Core.Resource; +using Flow.Launcher.Core.Resource; -namespace Wox.Core +namespace Flow.Launcher.Core { public class LocalizedDescriptionAttribute : DescriptionAttribute { diff --git a/Wox.Core/Resource/Theme.cs b/Wox.Core/Resource/Theme.cs index b011b4f49d3..6c06bb484c4 100644 --- a/Wox.Core/Resource/Theme.cs +++ b/Wox.Core/Resource/Theme.cs @@ -8,11 +8,11 @@ using System.Windows.Interop; using System.Windows.Markup; using System.Windows.Media; -using Wox.Infrastructure; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.UserSettings; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.UserSettings; -namespace Wox.Core.Resource +namespace Flow.Launcher.Core.Resource { public class Theme { diff --git a/Wox.Core/Resource/ThemeManager.cs b/Wox.Core/Resource/ThemeManager.cs index 193b0bd534b..71f9acaa58a 100644 --- a/Wox.Core/Resource/ThemeManager.cs +++ b/Wox.Core/Resource/ThemeManager.cs @@ -1,4 +1,4 @@ -namespace Wox.Core.Resource +namespace Flow.Launcher.Core.Resource { public class ThemeManager { diff --git a/Wox.Core/Updater.cs b/Wox.Core/Updater.cs index 6a04def9f9b..ca451446961 100644 --- a/Wox.Core/Updater.cs +++ b/Wox.Core/Updater.cs @@ -9,15 +9,15 @@ using JetBrains.Annotations; using Squirrel; using Newtonsoft.Json; -using Wox.Core.Resource; -using Wox.Plugin.SharedCommands; -using Wox.Infrastructure; -using Wox.Infrastructure.Http; -using Wox.Infrastructure.Logger; +using Flow.Launcher.Core.Resource; +using Flow.Launcher.Plugin.SharedCommands; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Http; +using Flow.Launcher.Infrastructure.Logger; using System.IO; -using Wox.Infrastructure.UserSettings; +using Flow.Launcher.Infrastructure.UserSettings; -namespace Wox.Core +namespace Flow.Launcher.Core { public class Updater { @@ -63,7 +63,7 @@ public async Task UpdateApp(bool silentIfLatestVersion = true) if (newReleaseVersion <= currentVersion) { if (!silentIfLatestVersion) - MessageBox.Show("You already have the latest Wox version"); + MessageBox.Show("You already have the latest Flow.Launcher version"); updateManager.Dispose(); return; } @@ -86,7 +86,7 @@ public async Task UpdateApp(bool silentIfLatestVersion = true) var targetDestination = updateManager.RootAppDirectory + $"\\app-{newReleaseVersion.ToString()}\\{DataLocation.PortableFolderName}"; FilesFolders.Copy(DataLocation.PortableDataPath, targetDestination); if (!FilesFolders.VerifyBothFolderFilesEqual(DataLocation.PortableDataPath, targetDestination)) - MessageBox.Show(string.Format("Wox was not able to move your user profile data to the new update version. Please manually" + + MessageBox.Show(string.Format("Flow.Launcher was not able to move your user profile data to the new update version. Please manually" + "move your profile data folder from {0} to {1}", DataLocation.PortableDataPath, targetDestination)); } else diff --git a/Wox.Core/Wox.Core.csproj b/Wox.Core/Wox.Core.csproj index 904a8693c10..d5fc55da8f4 100644 --- a/Wox.Core/Wox.Core.csproj +++ b/Wox.Core/Wox.Core.csproj @@ -6,8 +6,8 @@ true Library Properties - Wox.Core - Wox.Core + Flow.Launcher.Core + Flow.Launcher.Core false false false @@ -68,8 +68,8 @@ - - + + \ No newline at end of file diff --git a/Wox.CrashReporter/Properties/AssemblyInfo.cs b/Wox.CrashReporter/Properties/AssemblyInfo.cs index 87313ef761f..acf2adca1b8 100644 --- a/Wox.CrashReporter/Properties/AssemblyInfo.cs +++ b/Wox.CrashReporter/Properties/AssemblyInfo.cs @@ -1,5 +1,5 @@ using System.Reflection; using System.Runtime.InteropServices; -[assembly: AssemblyTitle("Wox.CrashReporter")] +[assembly: AssemblyTitle("Flow.Launcher.CrashReporter")] [assembly: Guid("0ea3743c-2c0d-4b13-b9ce-e5e1f85aea23")] \ No newline at end of file diff --git a/Wox.CrashReporter/Wox.CrashReporter.csproj b/Wox.CrashReporter/Wox.CrashReporter.csproj index dd426979689..1e0a3fe5252 100644 --- a/Wox.CrashReporter/Wox.CrashReporter.csproj +++ b/Wox.CrashReporter/Wox.CrashReporter.csproj @@ -7,8 +7,8 @@ {2FEB2298-7653-4009-B1EA-FFFB1A768BCC} Library Properties - Wox.CrashReporter - Wox.CrashReporter + Flow.Launcher.CrashReporter + Flow.Launcher.CrashReporter v4.5.2 512 ..\ @@ -74,13 +74,13 @@ - + {B749F0DB-8E75-47DB-9E5E-265D16D0C0D2} - Wox.Core + Flow.Launcher.Core - + {4fd29318-a8ab-4d8f-aa47-60bc241b8da3} - Wox.Infrastructure + Flow.Launcher.Infrastructure diff --git a/Wox.Infrastructure/Alphabet.cs b/Wox.Infrastructure/Alphabet.cs index e366ad03404..d785e9673ac 100644 --- a/Wox.Infrastructure/Alphabet.cs +++ b/Wox.Infrastructure/Alphabet.cs @@ -6,11 +6,11 @@ using hyjiacan.util.p4n; using hyjiacan.util.p4n.format; using JetBrains.Annotations; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.Storage; -using Wox.Infrastructure.UserSettings; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Infrastructure.UserSettings; -namespace Wox.Infrastructure +namespace Flow.Launcher.Infrastructure { public interface IAlphabet { @@ -34,7 +34,7 @@ private void InitializePinyinHelpers() { Format.setToneType(HanyuPinyinToneType.WITHOUT_TONE); - Stopwatch.Normal("|Wox.Infrastructure.Alphabet.Initialize|Preload pinyin cache", () => + Stopwatch.Normal("|Flow.Launcher.Infrastructure.Alphabet.Initialize|Preload pinyin cache", () => { _pinyinStorage = new BinaryStorage>("Pinyin"); @@ -48,7 +48,7 @@ private void InitializePinyinHelpers() // force pinyin library static constructor initialize PinyinHelper.toHanyuPinyinStringArray('T', Format); }); - Log.Info($"|Wox.Infrastructure.Alphabet.Initialize|Number of preload pinyin combination<{PinyinCache.Count}>"); + Log.Info($"|Flow.Launcher.Infrastructure.Alphabet.Initialize|Number of preload pinyin combination<{PinyinCache.Count}>"); } public string Translate(string str) diff --git a/Wox.Infrastructure/Constant.cs b/Wox.Infrastructure/Constant.cs index 18d69318620..785f76c9bd0 100644 --- a/Wox.Infrastructure/Constant.cs +++ b/Wox.Infrastructure/Constant.cs @@ -2,23 +2,23 @@ using System.IO; using System.Reflection; -namespace Wox.Infrastructure +namespace Flow.Launcher.Infrastructure { public static class Constant { - public const string Wox = "Wox"; + public const string Flow.Launcher = "Flow.Launcher"; public const string Plugins = "Plugins"; - public const string ApplicationFileName = Wox + ".exe"; + public const string ApplicationFileName = Flow.Launcher + ".exe"; private static readonly Assembly Assembly = Assembly.GetExecutingAssembly(); public static readonly string ProgramDirectory = Directory.GetParent(Assembly.Location.NonNull()).ToString(); - public static readonly string ExecutablePath = Path.Combine(ProgramDirectory, Wox + ".exe"); + public static readonly string ExecutablePath = Path.Combine(ProgramDirectory, Flow.Launcher + ".exe"); public static readonly string ApplicationDirectory = Directory.GetParent(ProgramDirectory).ToString(); public static readonly string RootDirectory = Directory.GetParent(ApplicationDirectory).ToString(); public static readonly string PreinstalledDirectory = Path.Combine(ProgramDirectory, Plugins); - public const string Issue = "https://github.com/jjw24/Wox/issues/new"; + public const string Issue = "https://github.com/jjw24/Flow.Launcher/issues/new"; public static readonly string Version = FileVersionInfo.GetVersionInfo(Assembly.Location.NonNull()).ProductVersion; public static readonly int ThumbnailSize = 64; diff --git a/Wox.Infrastructure/Exception/ExceptionFormatter.cs b/Wox.Infrastructure/Exception/ExceptionFormatter.cs index 91fc5f2f4b4..42f0fee3e99 100644 --- a/Wox.Infrastructure/Exception/ExceptionFormatter.cs +++ b/Wox.Infrastructure/Exception/ExceptionFormatter.cs @@ -6,7 +6,7 @@ using System.Xml; using Microsoft.Win32; -namespace Wox.Infrastructure.Exception +namespace Flow.Launcher.Infrastructure.Exception { public class ExceptionFormatter { @@ -62,7 +62,7 @@ private static string CreateExceptionReport(System.Exception ex) sb.AppendLine("## Environment"); sb.AppendLine($"* Command Line: {Environment.CommandLine}"); sb.AppendLine($"* Timestamp: {DateTime.Now.ToString(CultureInfo.InvariantCulture)}"); - sb.AppendLine($"* Wox version: {Constant.Version}"); + sb.AppendLine($"* Flow.Launcher version: {Constant.Version}"); sb.AppendLine($"* OS Version: {Environment.OSVersion.VersionString}"); sb.AppendLine($"* IntPtr Length: {IntPtr.Size}"); sb.AppendLine($"* x64: {Environment.Is64BitOperatingSystem}"); diff --git a/Wox.Infrastructure/FuzzyMatcher.cs b/Wox.Infrastructure/FuzzyMatcher.cs index 49520e19d26..3df719b2886 100644 --- a/Wox.Infrastructure/FuzzyMatcher.cs +++ b/Wox.Infrastructure/FuzzyMatcher.cs @@ -1,6 +1,6 @@ using System; -namespace Wox.Infrastructure +namespace Flow.Launcher.Infrastructure { [Obsolete("This class is obsolete and should not be used. Please use the static function StringMatcher.FuzzySearch")] public class FuzzyMatcher diff --git a/Wox.Infrastructure/Helper.cs b/Wox.Infrastructure/Helper.cs index dc31bd70d75..fa7e18533ed 100644 --- a/Wox.Infrastructure/Helper.cs +++ b/Wox.Infrastructure/Helper.cs @@ -3,7 +3,7 @@ using Newtonsoft.Json; using Newtonsoft.Json.Converters; -namespace Wox.Infrastructure +namespace Flow.Launcher.Infrastructure { public static class Helper { diff --git a/Wox.Infrastructure/Hotkey/GlobalHotkey.cs b/Wox.Infrastructure/Hotkey/GlobalHotkey.cs index d999a1e6acc..e92a93c1269 100644 --- a/Wox.Infrastructure/Hotkey/GlobalHotkey.cs +++ b/Wox.Infrastructure/Hotkey/GlobalHotkey.cs @@ -1,9 +1,9 @@ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -using Wox.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Infrastructure.Hotkey +namespace Flow.Launcher.Infrastructure.Hotkey { /// /// Listens keyboard globally. diff --git a/Wox.Infrastructure/Hotkey/HotkeyModel.cs b/Wox.Infrastructure/Hotkey/HotkeyModel.cs index 624473c0868..5bd97714c15 100644 --- a/Wox.Infrastructure/Hotkey/HotkeyModel.cs +++ b/Wox.Infrastructure/Hotkey/HotkeyModel.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Windows.Input; -namespace Wox.Infrastructure.Hotkey +namespace Flow.Launcher.Infrastructure.Hotkey { public class HotkeyModel { diff --git a/Wox.Infrastructure/Hotkey/InterceptKeys.cs b/Wox.Infrastructure/Hotkey/InterceptKeys.cs index ef8dd576dff..c45e685f360 100644 --- a/Wox.Infrastructure/Hotkey/InterceptKeys.cs +++ b/Wox.Infrastructure/Hotkey/InterceptKeys.cs @@ -2,7 +2,7 @@ using System.Diagnostics; using System.Runtime.InteropServices; -namespace Wox.Infrastructure.Hotkey +namespace Flow.Launcher.Infrastructure.Hotkey { internal static class InterceptKeys { diff --git a/Wox.Infrastructure/Hotkey/KeyEvent.cs b/Wox.Infrastructure/Hotkey/KeyEvent.cs index 7c601660ecf..15e3068830f 100644 --- a/Wox.Infrastructure/Hotkey/KeyEvent.cs +++ b/Wox.Infrastructure/Hotkey/KeyEvent.cs @@ -1,4 +1,4 @@ -namespace Wox.Infrastructure.Hotkey +namespace Flow.Launcher.Infrastructure.Hotkey { public enum KeyEvent { diff --git a/Wox.Infrastructure/Http/Http.cs b/Wox.Infrastructure/Http/Http.cs index f8767e6e3e9..b7d274205ad 100644 --- a/Wox.Infrastructure/Http/Http.cs +++ b/Wox.Infrastructure/Http/Http.cs @@ -4,10 +4,10 @@ using System.Text; using System.Threading.Tasks; using JetBrains.Annotations; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.UserSettings; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.UserSettings; -namespace Wox.Infrastructure.Http +namespace Flow.Launcher.Infrastructure.Http { public static class Http { diff --git a/Wox.Infrastructure/Image/ImageCache.cs b/Wox.Infrastructure/Image/ImageCache.cs index c7266681958..5d7224c5b3d 100644 --- a/Wox.Infrastructure/Image/ImageCache.cs +++ b/Wox.Infrastructure/Image/ImageCache.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Windows.Media; -namespace Wox.Infrastructure.Image +namespace Flow.Launcher.Infrastructure.Image { [Serializable] public class ImageCache diff --git a/Wox.Infrastructure/Image/ImageHashGenerator.cs b/Wox.Infrastructure/Image/ImageHashGenerator.cs index 9ace8b74fc4..7361330528a 100644 --- a/Wox.Infrastructure/Image/ImageHashGenerator.cs +++ b/Wox.Infrastructure/Image/ImageHashGenerator.cs @@ -4,7 +4,7 @@ using System.Windows.Media; using System.Windows.Media.Imaging; -namespace Wox.Infrastructure.Image +namespace Flow.Launcher.Infrastructure.Image { public interface IImageHashGenerator { diff --git a/Wox.Infrastructure/Image/ImageLoader.cs b/Wox.Infrastructure/Image/ImageLoader.cs index b1f39d43caa..873eb306e3e 100644 --- a/Wox.Infrastructure/Image/ImageLoader.cs +++ b/Wox.Infrastructure/Image/ImageLoader.cs @@ -6,10 +6,10 @@ using System.Threading.Tasks; using System.Windows.Media; using System.Windows.Media.Imaging; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.Storage; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.Storage; -namespace Wox.Infrastructure.Image +namespace Flow.Launcher.Infrastructure.Image { public static class ImageLoader { @@ -129,7 +129,7 @@ private static ImageResult LoadInternal(string path, bool loadFullImage = false) /* Directories can also have thumbnails instead of shell icons. * Generating thumbnails for a bunch of folders while scrolling through * results from Everything makes a big impact on performance and - * Wox responsibility. + * Flow.Launcher responsibility. * - Solution: just load the icon */ type = ImageType.Folder; diff --git a/Wox.Infrastructure/Image/ThumbnailReader.cs b/Wox.Infrastructure/Image/ThumbnailReader.cs index bd65fc70008..247238bb68f 100644 --- a/Wox.Infrastructure/Image/ThumbnailReader.cs +++ b/Wox.Infrastructure/Image/ThumbnailReader.cs @@ -5,7 +5,7 @@ using System.Windows.Media.Imaging; using System.Windows; -namespace Wox.Infrastructure.Image +namespace Flow.Launcher.Infrastructure.Image { [Flags] public enum ThumbnailOptions diff --git a/Wox.Infrastructure/Logger/Log.cs b/Wox.Infrastructure/Logger/Log.cs index 4b7a972415d..289ec5d6829 100644 --- a/Wox.Infrastructure/Logger/Log.cs +++ b/Wox.Infrastructure/Logger/Log.cs @@ -4,9 +4,9 @@ using NLog; using NLog.Config; using NLog.Targets; -using Wox.Infrastructure.UserSettings; +using Flow.Launcher.Infrastructure.UserSettings; -namespace Wox.Infrastructure.Logger +namespace Flow.Launcher.Infrastructure.Logger { public static class Log { diff --git a/Wox.Infrastructure/Properties/AssemblyInfo.cs b/Wox.Infrastructure/Properties/AssemblyInfo.cs index b48a6ef581f..4cdadffc9c2 100644 --- a/Wox.Infrastructure/Properties/AssemblyInfo.cs +++ b/Wox.Infrastructure/Properties/AssemblyInfo.cs @@ -1,5 +1,5 @@ using System.Runtime.CompilerServices; -[assembly: InternalsVisibleTo("Wox")] -[assembly: InternalsVisibleTo("Wox.Core")] -[assembly: InternalsVisibleTo("Wox.Test")] \ No newline at end of file +[assembly: InternalsVisibleTo("Flow.Launcher")] +[assembly: InternalsVisibleTo("Flow.Launcher.Core")] +[assembly: InternalsVisibleTo("Flow.Launcher.Test")] \ No newline at end of file diff --git a/Wox.Infrastructure/Stopwatch.cs b/Wox.Infrastructure/Stopwatch.cs index 63156545524..d39d90e81b8 100644 --- a/Wox.Infrastructure/Stopwatch.cs +++ b/Wox.Infrastructure/Stopwatch.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; -using Wox.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.Logger; -namespace Wox.Infrastructure +namespace Flow.Launcher.Infrastructure { public static class Stopwatch { diff --git a/Wox.Infrastructure/Storage/BinaryStorage.cs b/Wox.Infrastructure/Storage/BinaryStorage.cs index 6f9031dde55..5205543b1d3 100644 --- a/Wox.Infrastructure/Storage/BinaryStorage.cs +++ b/Wox.Infrastructure/Storage/BinaryStorage.cs @@ -4,10 +4,10 @@ using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters; using System.Runtime.Serialization.Formatters.Binary; -using Wox.Infrastructure.Logger; -using Wox.Infrastructure.UserSettings; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.UserSettings; -namespace Wox.Infrastructure.Storage +namespace Flow.Launcher.Infrastructure.Storage { /// /// Stroage object using binary data diff --git a/Wox.Infrastructure/Storage/ISavable.cs b/Wox.Infrastructure/Storage/ISavable.cs index 67e4aa721b8..8294a3df898 100644 --- a/Wox.Infrastructure/Storage/ISavable.cs +++ b/Wox.Infrastructure/Storage/ISavable.cs @@ -1,4 +1,4 @@ -namespace Wox.Infrastructure.Storage +namespace Flow.Launcher.Infrastructure.Storage { /// /// Save plugin settings/cache, diff --git a/Wox.Infrastructure/Storage/JsonStorage.cs b/Wox.Infrastructure/Storage/JsonStorage.cs index 778b62b1c14..784c111106d 100644 --- a/Wox.Infrastructure/Storage/JsonStorage.cs +++ b/Wox.Infrastructure/Storage/JsonStorage.cs @@ -2,9 +2,9 @@ using System.Globalization; using System.IO; using Newtonsoft.Json; -using Wox.Infrastructure.Logger; +using Flow.Launcher.Infrastructure.Logger; -namespace Wox.Infrastructure.Storage +namespace Flow.Launcher.Infrastructure.Storage { /// /// Serialize object using json format. diff --git a/Wox.Infrastructure/Storage/PluginJsonStorage.cs b/Wox.Infrastructure/Storage/PluginJsonStorage.cs index 77dd541c3fe..5418e18371e 100644 --- a/Wox.Infrastructure/Storage/PluginJsonStorage.cs +++ b/Wox.Infrastructure/Storage/PluginJsonStorage.cs @@ -1,7 +1,7 @@ using System.IO; -using Wox.Infrastructure.UserSettings; +using Flow.Launcher.Infrastructure.UserSettings; -namespace Wox.Infrastructure.Storage +namespace Flow.Launcher.Infrastructure.Storage { public class PluginJsonStorage :JsonStrorage where T : new() { diff --git a/Wox.Infrastructure/Storage/WoxJsonStorage.cs b/Wox.Infrastructure/Storage/WoxJsonStorage.cs index 1a6b22c4be0..7202aeef4b9 100644 --- a/Wox.Infrastructure/Storage/WoxJsonStorage.cs +++ b/Wox.Infrastructure/Storage/WoxJsonStorage.cs @@ -4,13 +4,13 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -using Wox.Infrastructure.UserSettings; +using Flow.Launcher.Infrastructure.UserSettings; -namespace Wox.Infrastructure.Storage +namespace Flow.Launcher.Infrastructure.Storage { - public class WoxJsonStorage : JsonStrorage where T : new() + public class Flow.LauncherJsonStorage : JsonStrorage where T : new() { - public WoxJsonStorage() + public Flow.LauncherJsonStorage() { var directoryPath = Path.Combine(DataLocation.DataDirectory(), DirectoryName); Helper.ValidateDirectory(directoryPath); diff --git a/Wox.Infrastructure/StringMatcher.cs b/Wox.Infrastructure/StringMatcher.cs index 442c1e9ddb4..5babc4fdc47 100644 --- a/Wox.Infrastructure/StringMatcher.cs +++ b/Wox.Infrastructure/StringMatcher.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using System.ComponentModel; using System.Linq; -using static Wox.Infrastructure.StringMatcher; +using static Flow.Launcher.Infrastructure.StringMatcher; -namespace Wox.Infrastructure +namespace Flow.Launcher.Infrastructure { public class StringMatcher { diff --git a/Wox.Infrastructure/UI/EnumBindingSource.cs b/Wox.Infrastructure/UI/EnumBindingSource.cs index c23aacd81e0..350c892cf32 100644 --- a/Wox.Infrastructure/UI/EnumBindingSource.cs +++ b/Wox.Infrastructure/UI/EnumBindingSource.cs @@ -1,7 +1,7 @@ using System; using System.Windows.Markup; -namespace Wox.Infrastructure.UI +namespace Flow.Launcher.Infrastructure.UI { public class EnumBindingSourceExtension : MarkupExtension { diff --git a/Wox.Infrastructure/UserSettings/DataLocation.cs b/Wox.Infrastructure/UserSettings/DataLocation.cs index ef85341c596..37f0d80b3fd 100644 --- a/Wox.Infrastructure/UserSettings/DataLocation.cs +++ b/Wox.Infrastructure/UserSettings/DataLocation.cs @@ -5,14 +5,14 @@ using System.Text; using System.Threading.Tasks; -namespace Wox.Infrastructure.UserSettings +namespace Flow.Launcher.Infrastructure.UserSettings { public static class DataLocation { public const string PortableFolderName = "UserData"; public const string DeletionIndicatorFile = ".dead"; public static string PortableDataPath = Path.Combine(Constant.ProgramDirectory, PortableFolderName); - public static string RoamingDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), Constant.Wox); + public static string RoamingDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), Constant.Flow.Launcher); public static string DataDirectory() { if (PortableDataLocationInUse()) diff --git a/Wox.Infrastructure/UserSettings/HttpProxy.cs b/Wox.Infrastructure/UserSettings/HttpProxy.cs index 5385aca12a2..c1b0c1dd7fe 100644 --- a/Wox.Infrastructure/UserSettings/HttpProxy.cs +++ b/Wox.Infrastructure/UserSettings/HttpProxy.cs @@ -1,4 +1,4 @@ -namespace Wox.Infrastructure.UserSettings +namespace Flow.Launcher.Infrastructure.UserSettings { public class HttpProxy { diff --git a/Wox.Infrastructure/UserSettings/PluginHotkey.cs b/Wox.Infrastructure/UserSettings/PluginHotkey.cs index aef90a3839e..9dc395acaea 100644 --- a/Wox.Infrastructure/UserSettings/PluginHotkey.cs +++ b/Wox.Infrastructure/UserSettings/PluginHotkey.cs @@ -1,6 +1,6 @@ -using Wox.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Infrastructure.UserSettings +namespace Flow.Launcher.Infrastructure.UserSettings { public class CustomPluginHotkey : BaseModel { diff --git a/Wox.Infrastructure/UserSettings/PluginSettings.cs b/Wox.Infrastructure/UserSettings/PluginSettings.cs index 346d98e5341..4c47ca425d2 100644 --- a/Wox.Infrastructure/UserSettings/PluginSettings.cs +++ b/Wox.Infrastructure/UserSettings/PluginSettings.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; -using Wox.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Infrastructure.UserSettings +namespace Flow.Launcher.Infrastructure.UserSettings { public class PluginsSettings : BaseModel { diff --git a/Wox.Infrastructure/UserSettings/Settings.cs b/Wox.Infrastructure/UserSettings/Settings.cs index 94a1639d65e..cc2f488fb79 100644 --- a/Wox.Infrastructure/UserSettings/Settings.cs +++ b/Wox.Infrastructure/UserSettings/Settings.cs @@ -3,9 +3,9 @@ using System.Drawing; using Newtonsoft.Json; using Newtonsoft.Json.Converters; -using Wox.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Infrastructure.UserSettings +namespace Flow.Launcher.Infrastructure.UserSettings { public class Settings : BaseModel { @@ -76,7 +76,7 @@ public string QuerySearchPrecisionString public bool DontPromptUpdateMsg { get; set; } public bool EnableUpdateLog { get; set; } - public bool StartWoxOnSystemStartup { get; set; } = true; + public bool StartFlow.LauncherOnSystemStartup { get; set; } = true; public bool HideOnStartup { get; set; } bool _hideNotifyIcon { get; set; } public bool HideNotifyIcon diff --git a/Wox.Infrastructure/Wox.Infrastructure.csproj b/Wox.Infrastructure/Wox.Infrastructure.csproj index a4f25b83317..3a756cd26eb 100644 --- a/Wox.Infrastructure/Wox.Infrastructure.csproj +++ b/Wox.Infrastructure/Wox.Infrastructure.csproj @@ -6,8 +6,8 @@ Library true Properties - Wox.Infrastructure - Wox.Infrastructure + Flow.Launcher.Infrastructure + Flow.Launcher.Infrastructure false false false @@ -41,9 +41,9 @@ - + {8451ecdd-2ea4-4966-bb0a-7bbc40138e80} - Wox.Plugin + Flow.Launcher.Plugin diff --git a/Wox.Plugin/ActionContext.cs b/Wox.Plugin/ActionContext.cs index 94f6ba252c4..b9e499d2b0a 100644 --- a/Wox.Plugin/ActionContext.cs +++ b/Wox.Plugin/ActionContext.cs @@ -1,4 +1,4 @@ -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { public class ActionContext { diff --git a/Wox.Plugin/AllowedLanguage.cs b/Wox.Plugin/AllowedLanguage.cs index 840792af3ab..9f63c09fc79 100644 --- a/Wox.Plugin/AllowedLanguage.cs +++ b/Wox.Plugin/AllowedLanguage.cs @@ -1,4 +1,4 @@ -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { public static class AllowedLanguage { diff --git a/Wox.Plugin/BaseModel.cs b/Wox.Plugin/BaseModel.cs index 107fe81e7d9..5bb558702af 100644 --- a/Wox.Plugin/BaseModel.cs +++ b/Wox.Plugin/BaseModel.cs @@ -2,7 +2,7 @@ using System.Runtime.CompilerServices; using JetBrains.Annotations; -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { public class BaseModel : INotifyPropertyChanged { diff --git a/Wox.Plugin/EventHandler.cs b/Wox.Plugin/EventHandler.cs index 4c1fb0f4c76..62003aa262c 100644 --- a/Wox.Plugin/EventHandler.cs +++ b/Wox.Plugin/EventHandler.cs @@ -1,10 +1,10 @@ using System.Windows; using System.Windows.Input; -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { - public delegate void WoxKeyDownEventHandler(WoxKeyDownEventArgs e); - public delegate void AfterWoxQueryEventHandler(WoxQueryEventArgs e); + public delegate void Flow.LauncherKeyDownEventHandler(Flow.LauncherKeyDownEventArgs e); + public delegate void AfterFlow.LauncherQueryEventHandler(Flow.LauncherQueryEventArgs e); public delegate void ResultItemDropEventHandler(Result result, IDataObject dropObject, DragEventArgs e); @@ -15,15 +15,15 @@ namespace Wox.Plugin /// /// /// return true to continue handling, return false to intercept system handling - public delegate bool WoxGlobalKeyboardEventHandler(int keyevent, int vkcode, SpecialKeyState state); + public delegate bool Flow.LauncherGlobalKeyboardEventHandler(int keyevent, int vkcode, SpecialKeyState state); - public class WoxKeyDownEventArgs + public class Flow.LauncherKeyDownEventArgs { public string Query { get; set; } public KeyEventArgs keyEventArgs { get; set; } } - public class WoxQueryEventArgs + public class Flow.LauncherQueryEventArgs { public Query Query { get; set; } } diff --git a/Wox.Plugin/Feature.cs b/Wox.Plugin/Feature.cs index 6d1aa37fd3d..fbc8c6cd646 100644 --- a/Wox.Plugin/Feature.cs +++ b/Wox.Plugin/Feature.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Collections.Specialized; -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { public interface IFeatures { } @@ -22,7 +22,7 @@ public interface IExclusiveQuery : IFeatures /// Represent plugin query will be executed in UI thread directly. Don't do long-running operation in Query method if you implement this interface /// This will improve the performance of instant search like websearch or cmd plugin /// - [Obsolete("Wox is fast enough now, executed on ui thread is no longer needed")] + [Obsolete("Flow.Launcher is fast enough now, executed on ui thread is no longer needed")] public interface IInstantQuery : IFeatures { bool IsInstantQuery(string query); diff --git a/Wox.Plugin/Features/IContextMenu.cs b/Wox.Plugin/Features/IContextMenu.cs index f30b66abf00..f60e02a69ec 100644 --- a/Wox.Plugin/Features/IContextMenu.cs +++ b/Wox.Plugin/Features/IContextMenu.cs @@ -1,9 +1,9 @@ using System; -namespace Wox.Plugin.Features +namespace Flow.Launcher.Plugin.Features { - [Obsolete("Delete Wox.Plugin.Features using directive, " + - "and use Wox.Plugin.Feature.IContextMenu instead, " + + [Obsolete("Delete Flow.Launcher.Plugin.Features using directive, " + + "and use Flow.Launcher.Plugin.Feature.IContextMenu instead, " + "this method will be removed in v1.3.0")] public interface IContextMenu { } } \ No newline at end of file diff --git a/Wox.Plugin/Features/IExclusiveQuery.cs b/Wox.Plugin/Features/IExclusiveQuery.cs index a4330335056..57eddd93e9c 100644 --- a/Wox.Plugin/Features/IExclusiveQuery.cs +++ b/Wox.Plugin/Features/IExclusiveQuery.cs @@ -1,9 +1,9 @@ using System; -namespace Wox.Plugin.Features +namespace Flow.Launcher.Plugin.Features { - [Obsolete("Delete Wox.Plugin.Features using directive, " + - "and use Wox.Plugin.Feature.IInstantQuery instead, " + + [Obsolete("Delete Flow.Launcher.Plugin.Features using directive, " + + "and use Flow.Launcher.Plugin.Feature.IInstantQuery instead, " + "this method will be removed in v1.3.0")] public interface IExclusiveQuery { } } diff --git a/Wox.Plugin/Features/IInstantQuery.cs b/Wox.Plugin/Features/IInstantQuery.cs index 2fe81fad711..465640ae9d0 100644 --- a/Wox.Plugin/Features/IInstantQuery.cs +++ b/Wox.Plugin/Features/IInstantQuery.cs @@ -1,9 +1,9 @@ using System; -namespace Wox.Plugin.Features +namespace Flow.Launcher.Plugin.Features { - [Obsolete("Delete Wox.Plugin.Features using directive, " + - "and use Wox.Plugin.Feature.IInstantQuery instead, " + + [Obsolete("Delete Flow.Launcher.Plugin.Features using directive, " + + "and use Flow.Launcher.Plugin.Feature.IInstantQuery instead, " + "this method will be removed in v1.3.0")] public interface IInstantQuery { } } \ No newline at end of file diff --git a/Wox.Plugin/IPlugin.cs b/Wox.Plugin/IPlugin.cs index 69f2ba4835d..8f7d279fa4a 100644 --- a/Wox.Plugin/IPlugin.cs +++ b/Wox.Plugin/IPlugin.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { public interface IPlugin { diff --git a/Wox.Plugin/IPublicAPI.cs b/Wox.Plugin/IPublicAPI.cs index 3c5b342772e..40057af40f2 100644 --- a/Wox.Plugin/IPublicAPI.cs +++ b/Wox.Plugin/IPublicAPI.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { /// /// Public APIs that plugin can use @@ -14,16 +14,16 @@ public interface IPublicAPI /// /// /// - [Obsolete("This method will be removed in Wox 1.3")] + [Obsolete("This method will be removed in Flow.Launcher 1.3")] void PushResults(Query query, PluginMetadata plugin, List results); /// - /// Change Wox query + /// Change Flow.Launcher query /// /// query text /// - /// force requery By default, Wox will not fire query if your query is same with existing one. - /// Set this to true to force Wox requerying + /// force requery By default, Flow.Launcher will not fire query if your query is same with existing one. + /// Set this to true to force Flow.Launcher requerying /// void ChangeQuery(string query, bool requery = false); @@ -35,30 +35,30 @@ public interface IPublicAPI void ChangeQueryText(string query, bool selectAll = false); /// - /// Close Wox + /// Close Flow.Launcher /// [Obsolete] void CloseApp(); /// - /// Restart Wox + /// Restart Flow.Launcher /// void RestarApp(); /// - /// Hide Wox + /// Hide Flow.Launcher /// [Obsolete] void HideApp(); /// - /// Show Wox + /// Show Flow.Launcher /// [Obsolete] void ShowApp(); /// - /// Save all Wox settings + /// Save all Flow.Launcher settings /// void SaveAppAllSettings(); @@ -71,7 +71,7 @@ public interface IPublicAPI void ReloadAllPluginData(); /// - /// Check for new Wox update + /// Check for new Flow.Launcher update /// void CheckForNewUpdate(); @@ -110,7 +110,7 @@ public interface IPublicAPI void StopLoadingBar(); /// - /// Install Wox plugin + /// Install Flow.Launcher plugin /// /// Plugin path (ends with .wox) void InstallPlugin(string path); @@ -133,6 +133,6 @@ public interface IPublicAPI /// Fired after global keyboard events /// if you want to hook something like Ctrl+R, you should use this event /// - event WoxGlobalKeyboardEventHandler GlobalKeyboardEvent; + event Flow.LauncherGlobalKeyboardEventHandler GlobalKeyboardEvent; } } diff --git a/Wox.Plugin/ISettingProvider.cs b/Wox.Plugin/ISettingProvider.cs index 78d77cf5723..d5ffba20b9b 100644 --- a/Wox.Plugin/ISettingProvider.cs +++ b/Wox.Plugin/ISettingProvider.cs @@ -1,6 +1,6 @@ using System.Windows.Controls; -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { public interface ISettingProvider { diff --git a/Wox.Plugin/Interfaces/IReloadable.cs b/Wox.Plugin/Interfaces/IReloadable.cs index 86f75ee3e91..29b3c15c9b1 100644 --- a/Wox.Plugin/Interfaces/IReloadable.cs +++ b/Wox.Plugin/Interfaces/IReloadable.cs @@ -1,4 +1,4 @@ -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { /// /// This interface is to indicate and allow plugins to reload their diff --git a/Wox.Plugin/PluginInitContext.cs b/Wox.Plugin/PluginInitContext.cs index efa7d442acc..49366a5c618 100644 --- a/Wox.Plugin/PluginInitContext.cs +++ b/Wox.Plugin/PluginInitContext.cs @@ -1,6 +1,6 @@ using System; -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { public class PluginInitContext { diff --git a/Wox.Plugin/PluginMetadata.cs b/Wox.Plugin/PluginMetadata.cs index 64b8b032c36..fb615459bae 100644 --- a/Wox.Plugin/PluginMetadata.cs +++ b/Wox.Plugin/PluginMetadata.cs @@ -3,7 +3,7 @@ using System.IO; using Newtonsoft.Json; -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { [JsonObject(MemberSerialization.OptOut)] public class PluginMetadata : BaseModel diff --git a/Wox.Plugin/PluginPair.cs b/Wox.Plugin/PluginPair.cs index f008889641c..910367ec64e 100644 --- a/Wox.Plugin/PluginPair.cs +++ b/Wox.Plugin/PluginPair.cs @@ -1,4 +1,4 @@ -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { public class PluginPair { diff --git a/Wox.Plugin/Properties/AssemblyInfo.cs b/Wox.Plugin/Properties/AssemblyInfo.cs index b48a6ef581f..4cdadffc9c2 100644 --- a/Wox.Plugin/Properties/AssemblyInfo.cs +++ b/Wox.Plugin/Properties/AssemblyInfo.cs @@ -1,5 +1,5 @@ using System.Runtime.CompilerServices; -[assembly: InternalsVisibleTo("Wox")] -[assembly: InternalsVisibleTo("Wox.Core")] -[assembly: InternalsVisibleTo("Wox.Test")] \ No newline at end of file +[assembly: InternalsVisibleTo("Flow.Launcher")] +[assembly: InternalsVisibleTo("Flow.Launcher.Core")] +[assembly: InternalsVisibleTo("Flow.Launcher.Test")] \ No newline at end of file diff --git a/Wox.Plugin/Query.cs b/Wox.Plugin/Query.cs index e6ada021b6c..33310f2aa7c 100644 --- a/Wox.Plugin/Query.cs +++ b/Wox.Plugin/Query.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { public class Query { diff --git a/Wox.Plugin/README.md b/Wox.Plugin/README.md index 27024c25300..3b4d1598a20 100644 --- a/Wox.Plugin/README.md +++ b/Wox.Plugin/README.md @@ -1,4 +1,4 @@ -What does Wox.Plugin do? +What does Flow.Launcher.Plugin do? ==== * Defines base objects and interfaces for plugins diff --git a/Wox.Plugin/Result.cs b/Wox.Plugin/Result.cs index 4c8f2b1ede9..d49b739dc70 100644 --- a/Wox.Plugin/Result.cs +++ b/Wox.Plugin/Result.cs @@ -3,7 +3,7 @@ using System.IO; using System.Windows.Media; -namespace Wox.Plugin +namespace Flow.Launcher.Plugin { public class Result diff --git a/Wox.Plugin/SharedCommands/FilesFolders.cs b/Wox.Plugin/SharedCommands/FilesFolders.cs index 9e221fe616d..98e465b50db 100644 --- a/Wox.Plugin/SharedCommands/FilesFolders.cs +++ b/Wox.Plugin/SharedCommands/FilesFolders.cs @@ -3,7 +3,7 @@ using System.IO; using System.Windows; -namespace Wox.Plugin.SharedCommands +namespace Flow.Launcher.Plugin.SharedCommands { public static class FilesFolders { diff --git a/Wox.Plugin/SharedCommands/SearchWeb.cs b/Wox.Plugin/SharedCommands/SearchWeb.cs index e1471c0389e..b23da730ecb 100644 --- a/Wox.Plugin/SharedCommands/SearchWeb.cs +++ b/Wox.Plugin/SharedCommands/SearchWeb.cs @@ -3,7 +3,7 @@ using System.IO; using System.Linq; -namespace Wox.Plugin.SharedCommands +namespace Flow.Launcher.Plugin.SharedCommands { public static class SearchWeb { diff --git a/Wox.Plugin/SharedCommands/ShellCommand.cs b/Wox.Plugin/SharedCommands/ShellCommand.cs index 9da535150c8..c5d43a3d9df 100644 --- a/Wox.Plugin/SharedCommands/ShellCommand.cs +++ b/Wox.Plugin/SharedCommands/ShellCommand.cs @@ -7,7 +7,7 @@ using System.Threading; using System.Threading.Tasks; -namespace Wox.Plugin.SharedCommands +namespace Flow.Launcher.Plugin.SharedCommands { public static class ShellCommand { diff --git a/Wox.Plugin/Wox.Plugin.csproj b/Wox.Plugin/Wox.Plugin.csproj index 6c1e19ce73a..0c6df2b5900 100644 --- a/Wox.Plugin/Wox.Plugin.csproj +++ b/Wox.Plugin/Wox.Plugin.csproj @@ -6,8 +6,8 @@ true Library Properties - Wox.Plugin - Wox.Plugin + Flow.Launcher.Plugin + Flow.Launcher.Plugin false false false diff --git a/Wox.Test/FuzzyMatcherTest.cs b/Wox.Test/FuzzyMatcherTest.cs index 011f050ac14..a9248b698bb 100644 --- a/Wox.Test/FuzzyMatcherTest.cs +++ b/Wox.Test/FuzzyMatcherTest.cs @@ -3,10 +3,10 @@ using System.Diagnostics; using System.Linq; using NUnit.Framework; -using Wox.Infrastructure; -using Wox.Plugin; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Plugin; -namespace Wox.Test +namespace Flow.Launcher.Test { [TestFixture] public class FuzzyMatcherTest diff --git a/Wox.Test/Plugins/PluginInitTest.cs b/Wox.Test/Plugins/PluginInitTest.cs index 2ca59f64c57..299a837ee0e 100644 --- a/Wox.Test/Plugins/PluginInitTest.cs +++ b/Wox.Test/Plugins/PluginInitTest.cs @@ -1,8 +1,8 @@ using NUnit.Framework; -using Wox.Core.Plugin; -using Wox.Infrastructure.Exception; +using Flow.Launcher.Core.Plugin; +using Flow.Launcher.Infrastructure.Exception; -namespace Wox.Test.Plugins +namespace Flow.Launcher.Test.Plugins { [TestFixture] @@ -11,7 +11,7 @@ public class PluginInitTest [Test] public void PublicAPIIsNullTest() { - //Assert.Throws(typeof(WoxFatalException), () => PluginManager.Initialize(null)); + //Assert.Throws(typeof(Flow.LauncherFatalException), () => PluginManager.Initialize(null)); } } } diff --git a/Wox.Test/QueryBuilderTest.cs b/Wox.Test/QueryBuilderTest.cs index 0402d2ae813..6090ecc65ea 100644 --- a/Wox.Test/QueryBuilderTest.cs +++ b/Wox.Test/QueryBuilderTest.cs @@ -1,9 +1,9 @@ using System.Collections.Generic; using NUnit.Framework; -using Wox.Core.Plugin; -using Wox.Plugin; +using Flow.Launcher.Core.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Test +namespace Flow.Launcher.Test { public class QueryBuilderTest { diff --git a/Wox.Test/UrlPluginTest.cs b/Wox.Test/UrlPluginTest.cs index a91b506d622..7ccac5bd59d 100644 --- a/Wox.Test/UrlPluginTest.cs +++ b/Wox.Test/UrlPluginTest.cs @@ -1,7 +1,7 @@ using NUnit.Framework; -using Wox.Plugin.Url; +using Flow.Launcher.Plugin.Url; -namespace Wox.Test +namespace Flow.Launcher.Test { [TestFixture] public class UrlPluginTest diff --git a/Wox.Test/Wox.Test.csproj b/Wox.Test/Wox.Test.csproj index 9831874c6c0..4bef98cf276 100644 --- a/Wox.Test/Wox.Test.csproj +++ b/Wox.Test/Wox.Test.csproj @@ -5,8 +5,8 @@ {FF742965-9A80-41A5-B042-D6C7D3A21708} Library Properties - Wox.Test - Wox.Test + Flow.Launcher.Test + Flow.Launcher.Test false @@ -38,10 +38,10 @@ - - - - + + + + diff --git a/Wox.sln b/Wox.sln index b65e2a215ad..d8cf6f06be4 100644 --- a/Wox.sln +++ b/Wox.sln @@ -3,16 +3,16 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.29806.167 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Test", "Wox.Test\Wox.Test.csproj", "{FF742965-9A80-41A5-B042-D6C7D3A21708}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Test", "Flow.Launcher.Test\Flow.Launcher.Test.csproj", "{FF742965-9A80-41A5-B042-D6C7D3A21708}" ProjectSection(ProjectDependencies) = postProject {DB90F671-D861-46BB-93A3-F1304F5BA1C5} = {DB90F671-D861-46BB-93A3-F1304F5BA1C5} EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin", "Wox.Plugin\Wox.Plugin.csproj", "{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin", "Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj", "{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox", "Wox\Wox.csproj", "{DB90F671-D861-46BB-93A3-F1304F5BA1C5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher", "Flow.Launcher\Flow.Launcher.csproj", "{DB90F671-D861-46BB-93A3-F1304F5BA1C5}" ProjectSection(ProjectDependencies) = postProject {230AE83F-E92E-4E69-8355-426B305DA9C0} = {230AE83F-E92E-4E69-8355-426B305DA9C0} {1EE20B48-82FB-48A2-8086-675D6DDAB4F0} = {1EE20B48-82FB-48A2-8086-675D6DDAB4F0} @@ -29,29 +29,29 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox", "Wox\Wox.csproj", "{D {403B57F2-1856-4FC7-8A24-36AB346B763E} = {403B57F2-1856-4FC7-8A24-36AB346B763E} EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Infrastructure", "Wox.Infrastructure\Wox.Infrastructure.csproj", "{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Infrastructure", "Flow.Launcher.Infrastructure\Flow.Launcher.Infrastructure.csproj", "{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.PluginManagement", "Plugins\Wox.Plugin.PluginManagement\Wox.Plugin.PluginManagement.csproj", "{049490F0-ECD2-4148-9B39-2135EC346EBE}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.PluginManagement", "Plugins\Flow.Launcher.Plugin.PluginManagement\Flow.Launcher.Plugin.PluginManagement.csproj", "{049490F0-ECD2-4148-9B39-2135EC346EBE}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Core", "Wox.Core\Wox.Core.csproj", "{B749F0DB-8E75-47DB-9E5E-265D16D0C0D2}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Core", "Flow.Launcher.Core\Flow.Launcher.Core.csproj", "{B749F0DB-8E75-47DB-9E5E-265D16D0C0D2}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.Program", "Plugins\Wox.Plugin.Program\Wox.Plugin.Program.csproj", "{FDB3555B-58EF-4AE6-B5F1-904719637AB4}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Program", "Plugins\Flow.Launcher.Plugin.Program\Flow.Launcher.Plugin.Program.csproj", "{FDB3555B-58EF-4AE6-B5F1-904719637AB4}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.WebSearch", "Plugins\Wox.Plugin.WebSearch\Wox.Plugin.WebSearch.csproj", "{403B57F2-1856-4FC7-8A24-36AB346B763E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.WebSearch", "Plugins\Flow.Launcher.Plugin.WebSearch\Flow.Launcher.Plugin.WebSearch.csproj", "{403B57F2-1856-4FC7-8A24-36AB346B763E}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.ControlPanel", "Plugins\Wox.Plugin.ControlPanel\Wox.Plugin.ControlPanel.csproj", "{1EE20B48-82FB-48A2-8086-675D6DDAB4F0}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.ControlPanel", "Plugins\Flow.Launcher.Plugin.ControlPanel\Flow.Launcher.Plugin.ControlPanel.csproj", "{1EE20B48-82FB-48A2-8086-675D6DDAB4F0}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.Folder", "Plugins\Wox.Plugin.Folder\Wox.Plugin.Folder.csproj", "{787B8AA6-CA93-4C84-96FE-DF31110AD1C4}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Folder", "Plugins\Flow.Launcher.Plugin.Folder\Flow.Launcher.Plugin.Folder.csproj", "{787B8AA6-CA93-4C84-96FE-DF31110AD1C4}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.PluginIndicator", "Plugins\Wox.Plugin.PluginIndicator\Wox.Plugin.PluginIndicator.csproj", "{FDED22C8-B637-42E8-824A-63B5B6E05A3A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.PluginIndicator", "Plugins\Flow.Launcher.Plugin.PluginIndicator\Flow.Launcher.Plugin.PluginIndicator.csproj", "{FDED22C8-B637-42E8-824A-63B5B6E05A3A}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.Sys", "Plugins\Wox.Plugin.Sys\Wox.Plugin.Sys.csproj", "{0B9DE348-9361-4940-ADB6-F5953BFFCCEC}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Sys", "Plugins\Flow.Launcher.Plugin.Sys\Flow.Launcher.Plugin.Sys.csproj", "{0B9DE348-9361-4940-ADB6-F5953BFFCCEC}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.Url", "Plugins\Wox.Plugin.Url\Wox.Plugin.Url.csproj", "{A3DCCBCA-ACC1-421D-B16E-210896234C26}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Url", "Plugins\Flow.Launcher.Plugin.Url\Flow.Launcher.Plugin.Url.csproj", "{A3DCCBCA-ACC1-421D-B16E-210896234C26}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.Color", "Plugins\Wox.Plugin.Color\Wox.Plugin.Color.csproj", "{F35190AA-4758-4D9E-A193-E3BDF6AD3567}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Color", "Plugins\Flow.Launcher.Plugin.Color\Flow.Launcher.Plugin.Color.csproj", "{F35190AA-4758-4D9E-A193-E3BDF6AD3567}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.Everything", "Plugins\Wox.Plugin.Everything\Wox.Plugin.Everything.csproj", "{230AE83F-E92E-4E69-8355-426B305DA9C0}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Everything", "Plugins\Flow.Launcher.Plugin.Everything\Flow.Launcher.Plugin.Everything.csproj", "{230AE83F-E92E-4E69-8355-426B305DA9C0}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{FFD651C7-0546-441F-BC8C-D4EE8FD01EA7}" ProjectSection(SolutionItems) = preProject @@ -68,11 +68,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloWorldCSharp", "Plugins\HelloWorldCSharp\HelloWorldCSharp.csproj", "{03FFA443-5F50-48D5-8869-F3DF316803AA}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.Shell", "Plugins\Wox.Plugin.Shell\Wox.Plugin.Shell.csproj", "{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Shell", "Plugins\Flow.Launcher.Plugin.Shell\Flow.Launcher.Plugin.Shell.csproj", "{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.BrowserBookmark", "Plugins\Wox.Plugin.BrowserBookmark\Wox.Plugin.BrowserBookmark.csproj", "{9B130CC5-14FB-41FF-B310-0A95B6894C37}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.BrowserBookmark", "Plugins\Flow.Launcher.Plugin.BrowserBookmark\Flow.Launcher.Plugin.BrowserBookmark.csproj", "{9B130CC5-14FB-41FF-B310-0A95B6894C37}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin.Calculator", "Plugins\Wox.Plugin.Calculator\Wox.Plugin.Calculator.csproj", "{59BD9891-3837-438A-958D-ADC7F91F6F7E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Calculator", "Plugins\Flow.Launcher.Plugin.Calculator\Flow.Launcher.Plugin.Calculator.csproj", "{59BD9891-3837-438A-958D-ADC7F91F6F7E}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Wox/ActionKeywords.xaml b/Wox/ActionKeywords.xaml index ffe1b5400b3..39574964ba3 100644 --- a/Wox/ActionKeywords.xaml +++ b/Wox/ActionKeywords.xaml @@ -1,4 +1,4 @@ - Kunne ikke registrere genvejstast: {0} Kunne ikke starte {0} - Ugyldigt Wox plugin filformat + Ugyldigt Flow.Launcher plugin filformat Sæt øverst i denne søgning Annuller øverst i denne søgning Udfør søgning: {0} @@ -15,10 +15,10 @@ Afslut - Wox indstillinger + Flow.Launcher indstillinger Generelt - Start Wox ved system start - Skjul Wox ved mistet fokus + Start Flow.Launcher ved system start + Skjul Flow.Launcher ved mistet fokus Vis ikke notifikationer om nye versioner Husk seneste position Sprog @@ -27,7 +27,7 @@ Python bibliotek Autoopdatering Vælg - Skjul Wox ved opstart + Skjul Flow.Launcher ved opstart Plugin @@ -42,7 +42,7 @@ Tema Søg efter flere temaer - Hej Wox + Hej Flow.Launcher Søgefelt skrifttype Resultat skrifttype Vindue mode @@ -50,7 +50,7 @@ Genvejstast - Wox genvejstast + Flow.Launcher genvejstast Tilpasset søgegenvejstast Slet Rediger @@ -78,9 +78,9 @@ Om Website Version - Du har aktiveret Wox {0} gange + Du har aktiveret Flow.Launcher {0} gange Tjek for opdateringer - Ny version {0} er tilgængelig, genstart venligst Wox + Ny version {0} er tilgængelig, genstart venligst Flow.Launcher Release Notes: @@ -106,7 +106,7 @@ Version Tid - Beskriv venligst hvordan Wox crashede, så vi kan rette det. + Beskriv venligst hvordan Flow.Launcher crashede, så vi kan rette det. Send rapport Annuller Generelt @@ -117,14 +117,14 @@ Sender Rapport sendt korrekt Kunne ikke sende rapport - Wox fik en fejl + Flow.Launcher fik en fejl - Ny Wox udgivelse {0} er nu tilgængelig - Der skete en fejl ifm. opdatering af Wox + Ny Flow.Launcher udgivelse {0} er nu tilgængelig + Der skete en fejl ifm. opdatering af Flow.Launcher Opdater Annuler - Denne opdatering vil genstarte Wox + Denne opdatering vil genstarte Flow.Launcher Følgende filer bliver opdateret Opdatereringsfiler Opdateringsbeskrivelse diff --git a/Wox/Languages/de.xaml b/Wox/Languages/de.xaml index 3efa653e63c..b35749041a2 100644 --- a/Wox/Languages/de.xaml +++ b/Wox/Languages/de.xaml @@ -4,7 +4,7 @@ Tastenkombinationregistrierung: {0} fehlgeschlagen Kann {0} nicht starten - Fehlerhaftes Wox-Plugin Dateiformat + Fehlerhaftes Flow.Launcher-Plugin Dateiformat In dieser Abfrage als oberstes setzen In dieser Abfrage oberstes abbrechen Abfrage ausführen:{0} @@ -15,10 +15,10 @@ Schließen - Wox Einstellungen + Flow.Launcher Einstellungen Allgemein - Starte Wox bei Systemstart - Verstecke Wox wenn der Fokus verloren geht + Starte Flow.Launcher bei Systemstart + Verstecke Flow.Launcher wenn der Fokus verloren geht Zeige keine Nachricht wenn eine neue Version vorhanden ist Merke letzte Ausführungsposition Sprache @@ -27,7 +27,7 @@ Python-Verzeichnis Automatische Aktualisierung Auswählen - Verstecke Wox bei Systemstart + Verstecke Flow.Launcher bei Systemstart Plugin @@ -42,7 +42,7 @@ Theme Suche nach weiteren Themes - Hallo Wox + Hallo Flow.Launcher Abfragebox Schriftart Ergebnis Schriftart Fenstermodus @@ -50,7 +50,7 @@ Tastenkombination - Wox Tastenkombination + Flow.Launcher Tastenkombination Benutzerdefinierte Abfrage Tastenkombination Löschen Bearbeiten @@ -78,9 +78,9 @@ Über Webseite Version - Sie haben Wox {0} mal aktiviert + Sie haben Flow.Launcher {0} mal aktiviert Nach Aktuallisierungen Suchen - Eine neue Version ({0}) ist vorhanden. Bitte starten Sie Wox neu. + Eine neue Version ({0}) ist vorhanden. Bitte starten Sie Flow.Launcher neu. Versionshinweise: @@ -117,14 +117,14 @@ Sende Report erfolgreich Report fehlgeschlagen - Wox hat einen Fehler + Flow.Launcher hat einen Fehler - V{0} von Wox ist verfügbar + V{0} von Flow.Launcher ist verfügbar Es ist ein Fehler während der Installation der Aktualisierung aufgetreten. Aktualisieren Abbrechen - Diese Aktualisierung wird Wox neu starten + Diese Aktualisierung wird Flow.Launcher neu starten Folgende Dateien werden aktualisiert Aktualisiere Dateien Aktualisierungbeschreibung diff --git a/Wox/Languages/en.xaml b/Wox/Languages/en.xaml index 4f48b1dbcf5..2325d31b8b1 100644 --- a/Wox/Languages/en.xaml +++ b/Wox/Languages/en.xaml @@ -4,7 +4,7 @@ Failed to register hotkey: {0} Could not start {0} - Invalid Wox plugin file format + Invalid Flow.Launcher plugin file format Set as topmost in this query Cancel topmost in this query Execute query: {0} @@ -15,10 +15,10 @@ Exit - Wox Settings + Flow.Launcher Settings General - Start Wox on system startup - Hide Wox when focus is lost + Start Flow.Launcher on system startup + Hide Flow.Launcher when focus is lost Do not show new version notifications Remember last launch location Language @@ -31,7 +31,7 @@ Python Directory Auto Update Select - Hide Wox on startup + Hide Flow.Launcher on startup Hide tray icon Query Search Precision Should Use Pinyin @@ -49,7 +49,7 @@ Theme Browse for more themes - Hello Wox + Hello Flow.Launcher Query Box Font Result Item Font Window Mode @@ -59,7 +59,7 @@ Hotkey - Wox Hotkey + Flow.Launcher Hotkey Custom Query Hotkey Delete Edit @@ -87,13 +87,13 @@ About Website Version - You have activated Wox {0} times + You have activated Flow.Launcher {0} times Check for Updates - New version {0} is available, please restart Wox. + New version {0} is available, please restart Flow.Launcher. Check updates failed, please check your connection and proxy settings to api.github.com. Download updates failed, please check your connection and proxy settings to github-cloud.s3.amazonaws.com, - or go to https://github.com/jjw24/Wox/releases to download updates manually. + or go to https://github.com/jjw24/Flow.Launcher/releases to download updates manually. Release Notes: @@ -131,14 +131,14 @@ Sending Report sent successfully Failed to send report - Wox got an error + Flow.Launcher got an error - New Wox release {0} is now available + New Flow.Launcher release {0} is now available An error occurred while trying to install software updates Update Cancel - This upgrade will restart Wox + This upgrade will restart Flow.Launcher Following files will be updated Update files Update description diff --git a/Wox/Languages/fr.xaml b/Wox/Languages/fr.xaml index 0c2f9df53fd..68763b0f792 100644 --- a/Wox/Languages/fr.xaml +++ b/Wox/Languages/fr.xaml @@ -4,7 +4,7 @@ Échec lors de l'enregistrement du raccourci : {0} Impossible de lancer {0} - Le format de fichier n'est pas un plugin Wox valide + Le format de fichier n'est pas un plugin Flow.Launcher valide Définir en tant que favori pour cette requête Annuler le favori Lancer la requête : {0} @@ -15,10 +15,10 @@ Quitter - Paramètres - Wox + Paramètres - Flow.Launcher Général - Lancer Wox au démarrage du système - Cacher Wox lors de la perte de focus + Lancer Flow.Launcher au démarrage du système + Cacher Flow.Launcher lors de la perte de focus Ne pas afficher le message de mise à jour pour les nouvelles versions Se souvenir du dernier emplacement de la fenêtre Langue @@ -31,7 +31,7 @@ Répertoire de Python Mettre à jour automatiquement Sélectionner - Cacher Wox au démarrage + Cacher Flow.Launcher au démarrage Modules @@ -46,7 +46,7 @@ Thèmes Trouver plus de thèmes - Hello Wox + Hello Flow.Launcher Police (barre de recherche) Police (liste des résultats) Mode fenêtré @@ -54,7 +54,7 @@ Raccourcis - Ouvrir Wox + Ouvrir Flow.Launcher Requêtes personnalisées Supprimer Modifier @@ -82,11 +82,11 @@ À propos Site web Version - Vous avez utilisé Wox {0} fois + Vous avez utilisé Flow.Launcher {0} fois Vérifier les mises à jour - Nouvelle version {0} disponible, veuillez redémarrer Wox + Nouvelle version {0} disponible, veuillez redémarrer Flow.Launcher Échec de la vérification de la mise à jour, vérifiez votre connexion et vos paramètres de configuration proxy pour pouvoir acceder à api.github.com. - Échec du téléchargement de la mise à jour, vérifiez votre connexion et vos paramètres de configuration proxy pour pouvoir acceder à github-cloud.s3.amazonaws.com, ou téléchargez manuelement la mise à jour sur https://github.com/jjw24/Wox/releases. + Échec du téléchargement de la mise à jour, vérifiez votre connexion et vos paramètres de configuration proxy pour pouvoir acceder à github-cloud.s3.amazonaws.com, ou téléchargez manuelement la mise à jour sur https://github.com/jjw24/Flow.Launcher/releases. Notes de changement : @@ -123,14 +123,14 @@ Envoi en cours Signalement envoyé Échec de l'envoi du signalement - Wox a rencontré une erreur + Flow.Launcher a rencontré une erreur - Version v{0} de Wox disponible + Version v{0} de Flow.Launcher disponible Une erreur s'est produite lors de l'installation de la mise à jour Mettre à jour Annuler - Wox doit redémarrer pour installer cette mise à jour + Flow.Launcher doit redémarrer pour installer cette mise à jour Les fichiers suivants seront mis à jour Fichiers mis à jour Description de la mise à jour diff --git a/Wox/Languages/it.xaml b/Wox/Languages/it.xaml index 07a517be0f6..91e08405067 100644 --- a/Wox/Languages/it.xaml +++ b/Wox/Languages/it.xaml @@ -4,7 +4,7 @@ Impossibile salvare il tasto di scelta rapida: {0} Avvio fallito {0} - Formato file plugin non valido + Formato file plugin non valido Risultato prioritario con questa query Rimuovi risultato prioritario con questa query Query d'esecuzione: {0} @@ -15,10 +15,10 @@ Esci - Impostaizoni Wox + Impostaizoni Flow.Launcher Generale - Avvia Wow all'avvio di Windows - Nascondi Wox quando perde il focus + Avvia Wow all'avvio di Windows + Nascondi Flow.Launcher quando perde il focus Non mostrare le notifiche per una nuova versione Ricorda l'ultima posizione di avvio del launcher Lingua @@ -31,7 +31,7 @@ Cartella Python Aggiornamento automatico Seleziona - Nascondi Wox all'avvio + Nascondi Flow.Launcher all'avvio Plugin @@ -46,7 +46,7 @@ Tema Sfoglia per altri temi - Hello Wox + Hello Flow.Launcher Font campo di ricerca Font campo risultati Modalità finestra @@ -54,7 +54,7 @@ Tasti scelta rapida - Tasto scelta rapida Wox + Tasto scelta rapida Flow.Launcher Tasti scelta rapida per ricerche personalizzate Cancella Modifica @@ -82,13 +82,13 @@ About Sito web Versione - Hai usato Wox {0} volte + Hai usato Flow.Launcher {0} volte Cerca aggiornamenti - Una nuova versione {0} è disponibile, riavvia Wox per favore. + Una nuova versione {0} è disponibile, riavvia Flow.Launcher per favore. Ricerca aggiornamenti fallita, per favore controlla la tua connessione e le eventuali impostazioni proxy per api.github.com. Download degli aggiornamenti fallito, per favore controlla la tua connessione ed eventuali impostazioni proxy per github-cloud.s3.amazonaws.com, - oppure vai su https://github.com/jjw24/Wox/releases per scaricare gli aggiornamenti manualmente. + oppure vai su https://github.com/jjw24/Flow.Launcher/releases per scaricare gli aggiornamenti manualmente. Note di rilascio: @@ -126,14 +126,14 @@ Invio in corso Rapporto inviato correttamente Invio rapporto fallito - Wox ha riportato un errore + Flow.Launcher ha riportato un errore - E' disponibile la nuova release {0} di Wox + E' disponibile la nuova release {0} di Flow.Launcher Errore durante l'installazione degli aggiornamenti software Aggiorna Annulla - Questo aggiornamento riavvierà Wox + Questo aggiornamento riavvierà Flow.Launcher I seguenti file saranno aggiornati File aggiornati Descrizione aggiornamento diff --git a/Wox/Languages/ja.xaml b/Wox/Languages/ja.xaml index 107281718d9..1bae58b7bcb 100644 --- a/Wox/Languages/ja.xaml +++ b/Wox/Languages/ja.xaml @@ -4,21 +4,21 @@ ホットキー「{0}」の登録に失敗しました {0}の起動に失敗しました - Woxプラグインの形式が正しくありません + Flow.Launcherプラグインの形式が正しくありません このクエリを最上位にセットする このクエリを最上位にセットをキャンセル 次のコマンドを実行します:{0} 最終実行時間:{0} 開く 設定 - Woxについて + Flow.Launcherについて 終了 - Wox設定 + Flow.Launcher設定 一般 - スタートアップ時にWoxを起動する - フォーカスを失った時にWoxを隠す + スタートアップ時にFlow.Launcherを起動する + フォーカスを失った時にFlow.Launcherを隠す 最新版が入手可能であっても、アップグレードメッセージを表示しない 前回のランチャーの位置を記憶 言語 @@ -31,7 +31,7 @@ Pythonのディレクトリ 自動更新 選択 - 起動時にWoxを隠す + 起動時にFlow.Launcherを隠す トレイアイコンを隠す @@ -47,7 +47,7 @@ テーマ テーマを探す - こんにちは Wox + こんにちは Flow.Launcher 検索ボックスのフォント 検索結果一覧のフォント ウィンドウモード @@ -57,7 +57,7 @@ ホットキー - Wox ホットキー + Flow.Launcher ホットキー カスタムクエリ ホットキー 削除 編集 @@ -82,16 +82,16 @@ プロキシ接続に失敗しました - Woxについて + Flow.Launcherについて ウェブサイト バージョン - あなたはWoxを {0} 回利用しました + あなたはFlow.Launcherを {0} 回利用しました アップデートを確認する - 新しいバージョン {0} が利用可能です。Woxを再起動してください。 + 新しいバージョン {0} が利用可能です。Flow.Launcherを再起動してください。 アップデートの確認に失敗しました、api.github.com への接続とプロキシ設定を確認してください。 更新のダウンロードに失敗しました、github-cloud.s3.amazonaws.com への接続とプロキシ設定を確認するか、 - https://github.com/jjw24/Wox/releases から手動でアップデートをダウンロードしてください。 + https://github.com/jjw24/Flow.Launcher/releases から手動でアップデートをダウンロードしてください。 リリースノート: @@ -129,14 +129,14 @@ 送信中 クラッシュレポートの送信に成功しました クラッシュレポートの送信に失敗しました - Woxにエラーが発生しました + Flow.Launcherにエラーが発生しました - Wox の最新バージョン V{0} が入手可能です - Woxのアップデート中にエラーが発生しました + Flow.Launcher の最新バージョン V{0} が入手可能です + Flow.Launcherのアップデート中にエラーが発生しました アップデート キャンセル - このアップデートでは、Woxの再起動が必要です + このアップデートでは、Flow.Launcherの再起動が必要です 次のファイルがアップデートされます 更新ファイル一覧 アップデートの詳細 diff --git a/Wox/Languages/ko.xaml b/Wox/Languages/ko.xaml index 7810beec780..5fbb45f22f1 100644 --- a/Wox/Languages/ko.xaml +++ b/Wox/Languages/ko.xaml @@ -4,7 +4,7 @@ 핫키 등록 실패: {0} {0}을 실행할 수 없습니다. - Wox 플러그인 파일 형식이 유효하지 않습니다. + Flow.Launcher 플러그인 파일 형식이 유효하지 않습니다. 이 쿼리의 최상위로 설정 이 쿼리의 최상위 설정 취소 쿼리 실행: {0} @@ -15,10 +15,10 @@ 종료 - Wox 설정 + Flow.Launcher 설정 일반 - 시스템 시작 시 Wox 실행 - 포커스 잃으면 Wox 숨김 + 시스템 시작 시 Flow.Launcher 실행 + 포커스 잃으면 Flow.Launcher 숨김 새 버전 알림 끄기 마지막 실행 위치 기억 언어 @@ -31,7 +31,7 @@ Python 디렉토리 자동 업데이트 선택 - 시작 시 Wox 숨김 + 시작 시 Flow.Launcher 숨김 플러그인 @@ -46,7 +46,7 @@ 테마 테마 더 찾아보기 - Hello Wox + Hello Flow.Launcher 쿼리 상자 글꼴 결과 항목 글꼴 윈도우 모드 @@ -54,7 +54,7 @@ 핫키 - Wox 핫키 + Flow.Launcher 핫키 사용자지정 쿼리 핫키 삭제 편집 @@ -82,9 +82,9 @@ 정보 웹사이트 버전 - Wox를 {0}번 실행했습니다. + Flow.Launcher를 {0}번 실행했습니다. 업데이트 확인 - 새 버전({0})이 있습니다. Wox를 재시작하세요. + 새 버전({0})이 있습니다. Flow.Launcher를 재시작하세요. 릴리즈 노트: @@ -121,14 +121,14 @@ 보내는 중 보고서를 정상적으로 보냈습니다. 보고서를 보내지 못했습니다. - Wox에 문제가 발생했습니다. + Flow.Launcher에 문제가 발생했습니다. - 새 Wox 버전({0})을 사용할 수 있습니다. + 새 Flow.Launcher 버전({0})을 사용할 수 있습니다. 소프트웨어 업데이트를 설치하는 중에 오류가 발생했습니다. 업데이트 취소 - 업데이트를 위해 Wox를 재시작합니다. + 업데이트를 위해 Flow.Launcher를 재시작합니다. 아래 파일들이 업데이트됩니다. 업데이트 파일 업데이트 설명 diff --git a/Wox/Languages/nb-NO.xaml b/Wox/Languages/nb-NO.xaml index f436ace5137..54bb087b15c 100644 --- a/Wox/Languages/nb-NO.xaml +++ b/Wox/Languages/nb-NO.xaml @@ -4,7 +4,7 @@ Kunne ikke registrere hurtigtast: {0} Kunne ikke starte {0} - Ugyldig filformat for Wox-utvidelse + Ugyldig filformat for Flow.Launcher-utvidelse Sett til øverste for denne spørringen Avbryt øverste for denne spørringen Utfør spørring: {0} @@ -15,10 +15,10 @@ Avslutt - Wox-innstillinger + Flow.Launcher-innstillinger Generelt - Start Wox ved systemstart - Skjul Wox ved mistet fokus + Start Flow.Launcher ved systemstart + Skjul Flow.Launcher ved mistet fokus Ikke vis varsel om ny versjon Husk siste plassering Språk @@ -31,7 +31,7 @@ Python-mappe Oppdater automatisk Velg - Skjul Wox ved oppstart + Skjul Flow.Launcher ved oppstart Utvidelse @@ -46,7 +46,7 @@ Tema Finn flere temaer - Hallo Wox + Hallo Flow.Launcher Font for spørringsboks Font for resultat Vindusmodus @@ -54,7 +54,7 @@ Hurtigtast - Wox-hurtigtast + Flow.Launcher-hurtigtast Egendefinerd spørringshurtigtast Slett Rediger @@ -82,13 +82,13 @@ Om Netside Versjon - Du har aktivert Wox {0} ganger + Du har aktivert Flow.Launcher {0} ganger Sjekk for oppdatering - Ny versjon {0} er tilgjengelig, vennligst start Wox på nytt. + Ny versjon {0} er tilgjengelig, vennligst start Flow.Launcher på nytt. Oppdateringssjekk feilet, vennligst sjekk tilkoblingen og proxy-innstillene for api.github.com. Nedlastning av oppdateringer feilet, vennligst sjekk tilkoblingen og proxy-innstillene for github-cloud.s3.amazonaws.com, - eller gå til https://github.com/jjw24/Wox/releases for å laste ned oppdateringer manuelt. + eller gå til https://github.com/jjw24/Flow.Launcher/releases for å laste ned oppdateringer manuelt. Versjonsmerknader: @@ -126,14 +126,14 @@ Sender Rapport sendt med suksess Kunne ikke sende rapport - Wox møtte på en feil + Flow.Launcher møtte på en feil - Versjon {0} av Wox er nå tilgjengelig + Versjon {0} av Flow.Launcher er nå tilgjengelig En feil oppstod under installasjon av programvareoppdateringer Oppdater Avbryt - Denne opgraderingen vil starte Wox på nytt + Denne opgraderingen vil starte Flow.Launcher på nytt Følgende filer vil bli oppdatert Oppdateringsfiler Oppdateringsbeskrivelse diff --git a/Wox/Languages/nl.xaml b/Wox/Languages/nl.xaml index ffb77a79333..1c653438289 100644 --- a/Wox/Languages/nl.xaml +++ b/Wox/Languages/nl.xaml @@ -4,7 +4,7 @@ Sneltoets registratie: {0} mislukt Kan {0} niet starten - Ongeldige Wox plugin bestandsextensie + Ongeldige Flow.Launcher plugin bestandsextensie Stel in als hoogste in deze query Annuleer hoogste in deze query Executeer query: {0} @@ -15,10 +15,10 @@ Afsluiten - Wox Instellingen + Flow.Launcher Instellingen Algemeen - Start Wox als systeem opstart - Verberg Wox als focus verloren is + Start Flow.Launcher als systeem opstart + Verberg Flow.Launcher als focus verloren is Laat geen nieuwe versie notificaties zien Herinner laatste opstart locatie Taal @@ -27,7 +27,7 @@ Python map Automatische Update Selecteer - Verberg Wox als systeem opstart + Verberg Flow.Launcher als systeem opstart Plugin @@ -42,7 +42,7 @@ Thema Zoek meer thema´s - Hallo Wox + Hallo Flow.Launcher Query Box lettertype Resultaat Item lettertype Window Mode @@ -50,7 +50,7 @@ Sneltoets - Wox Sneltoets + Flow.Launcher Sneltoets Custom Query Sneltoets Verwijder Bewerken @@ -78,9 +78,9 @@ Over Website Versie - U heeft Wox {0} keer opgestart + U heeft Flow.Launcher {0} keer opgestart Zoek naar Updates - Nieuwe versie {0} beschikbaar, start Wox opnieuw op + Nieuwe versie {0} beschikbaar, start Flow.Launcher opnieuw op Release Notes: @@ -117,14 +117,14 @@ Versturen Rapport succesvol Rapport mislukt - Wox heeft een error + Flow.Launcher heeft een error - Nieuwe Wox release {0} nu beschikbaar + Nieuwe Flow.Launcher release {0} nu beschikbaar Een error is voorgekomen tijdens het installeren van de update Update Annuleer - Deze upgrade zal Wox opnieuw opstarten + Deze upgrade zal Flow.Launcher opnieuw opstarten Volgende bestanden zullen worden geüpdatet Update bestanden Update beschrijving diff --git a/Wox/Languages/pl.xaml b/Wox/Languages/pl.xaml index f6d638fbc8c..0ddca2bb684 100644 --- a/Wox/Languages/pl.xaml +++ b/Wox/Languages/pl.xaml @@ -4,7 +4,7 @@ Nie udało się ustawić skrótu klawiszowego: {0} Nie udało się uruchomić: {0} - Niepoprawny format pliku wtyczki + Niepoprawny format pliku wtyczki Ustaw jako najwyższy wynik dla tego zapytania Usuń ten najwyższy wynik dla tego zapytania Wyszukaj: {0} @@ -15,10 +15,10 @@ Wyjdź - Ustawienia Wox + Ustawienia Flow.Launcher Ogólne - Uruchamiaj Wox przy starcie systemu - Ukryj okno Wox kiedy przestanie ono być aktywne + Uruchamiaj Flow.Launcher przy starcie systemu + Ukryj okno Flow.Launcher kiedy przestanie ono być aktywne Nie pokazuj powiadomienia o nowej wersji Zapamiętaj ostatnią pozycję okna Język @@ -27,7 +27,7 @@ Folder biblioteki Python Automatyczne aktualizacje Wybierz - Uruchamiaj Wox zminimalizowany + Uruchamiaj Flow.Launcher zminimalizowany Wtyczki @@ -42,7 +42,7 @@ Skórka Znajdź więcej skórek - Witaj Wox + Witaj Flow.Launcher Czcionka okna zapytania Czcionka okna wyników Tryb w oknie @@ -50,7 +50,7 @@ Skrót klawiszowy - Skrót klawiszowy Wox + Skrót klawiszowy Flow.Launcher Skrót klawiszowy niestandardowych zapytań Usuń Edytuj @@ -78,9 +78,9 @@ O programie Strona internetowa Wersja - Uaktywniłeś Wox {0} razy + Uaktywniłeś Flow.Launcher {0} razy Szukaj aktualizacji - Nowa wersja {0} jest dostępna, uruchom ponownie Wox + Nowa wersja {0} jest dostępna, uruchom ponownie Flow.Launcher Zmiany: @@ -117,14 +117,14 @@ Wysyłam raport... Raport wysłany pomyślnie Nie udało się wysłać raportu - W programie Wox wystąpił błąd + W programie Flow.Launcher wystąpił błąd - Nowa wersja Wox {0} jest dostępna + Nowa wersja Flow.Launcher {0} jest dostępna Wystąpił błąd podczas instalowania aktualizacji programu Aktualizuj Anuluj - Aby dokończyć proces aktualizacji Wox musi zostać zresetowany + Aby dokończyć proces aktualizacji Flow.Launcher musi zostać zresetowany Następujące pliki zostaną zaktualizowane Aktualizuj pliki Opis aktualizacji diff --git a/Wox/Languages/pt-br.xaml b/Wox/Languages/pt-br.xaml index 32852bda4a5..38c4016abdc 100644 --- a/Wox/Languages/pt-br.xaml +++ b/Wox/Languages/pt-br.xaml @@ -4,7 +4,7 @@ Falha ao registrar atalho: {0} Não foi possível iniciar {0} - Formato de plugin Wox inválido + Formato de plugin Flow.Launcher inválido Tornar a principal nessa consulta Cancelar a principal nessa consulta Executar consulta: {0} @@ -15,10 +15,10 @@ Sair - Configurações do Wox + Configurações do Flow.Launcher Geral - Iniciar Wox com inicialização do sistema - Esconder Wox quando foco for perdido + Iniciar Flow.Launcher com inicialização do sistema + Esconder Flow.Launcher quando foco for perdido Não mostrar notificações de novas versões Lembrar última localização de lançamento Idioma @@ -31,7 +31,7 @@ Diretório Python Atualizar Automaticamente Selecionar - Esconder Wox na inicialização + Esconder Flow.Launcher na inicialização Plugin @@ -46,7 +46,7 @@ Tema Ver mais temas - Olá Wox + Olá Flow.Launcher Fonte da caixa de Consulta Fonte do Resultado Modo Janela @@ -54,7 +54,7 @@ Atalho - Atalho do Wox + Atalho do Flow.Launcher Atalho de Consulta Personalizada Apagar Editar @@ -82,13 +82,13 @@ Sobre Website Versão - Você ativou o Wox {0} vezes + Você ativou o Flow.Launcher {0} vezes Procurar atualizações - A nova versão {0} está disponível, por favor reinicie o Wox. + A nova versão {0} está disponível, por favor reinicie o Flow.Launcher. Falha ao procurar atualizações, confira sua conexão e configuração de proxy para api.github.com. Falha ao baixar atualizações, confira sua conexão e configuração de proxy para github-cloud.s3.amazonaws.com, - ou acesse https://github.com/jjw24/Wox/releases para baixar manualmente. + ou acesse https://github.com/jjw24/Flow.Launcher/releases para baixar manualmente. Notas de Versão: @@ -126,14 +126,14 @@ Enviando Relatório enviado com sucesso Falha ao enviar relatório - Wox apresentou um erro + Flow.Launcher apresentou um erro - A nova versão {0} do Wox agora está disponível + A nova versão {0} do Flow.Launcher agora está disponível Ocorreu um erro ao tentar instalar atualizações do progama Atualizar Cancelar - Essa atualização reiniciará o Wox + Essa atualização reiniciará o Flow.Launcher Os seguintes arquivos serão atualizados Atualizar arquivos Atualizar descrição diff --git a/Wox/Languages/ru.xaml b/Wox/Languages/ru.xaml index 945162b4254..2c522216b5a 100644 --- a/Wox/Languages/ru.xaml +++ b/Wox/Languages/ru.xaml @@ -4,21 +4,21 @@ Регистрация хоткея {0} не удалась Не удалось запустить {0} - Неверный формат файла wox плагина + Неверный формат файла wox плагина Отображать это окно выше всех при этом запросе Не отображать это окно выше всех при этом запросе Выполнить запрос:{0} Последний раз выполнен в:{0} Открыть Настройки - О Wox + О Flow.Launcher Закрыть - Настройки Wox + Настройки Flow.Launcher Общие - Запускать Wox при запуске системы - Скрывать Wox если потерян фокус + Запускать Flow.Launcher при запуске системы + Скрывать Flow.Launcher если потерян фокус Не отображать сообщение об обновлении когда доступна новая версия Запомнить последнее место запуска Язык @@ -27,7 +27,7 @@ Python Directory Auto Update Select - Hide Wox on startup + Hide Flow.Launcher on startup Плагины @@ -42,7 +42,7 @@ Темы Найти больше тем - Привет Wox + Привет Flow.Launcher Шрифт запросов Шрифт результатов Оконный режим @@ -50,7 +50,7 @@ Горячие клавиши - Горячая клавиша Wox + Горячая клавиша Flow.Launcher Задаваемые горячие клавиши для запросов Удалить Изменить @@ -75,10 +75,10 @@ Подключение к прокси серверу не удалось - О Wox + О Flow.Launcher Сайт Версия - Вы воспользовались Wox уже {0} раз + Вы воспользовались Flow.Launcher уже {0} раз Check for Updates New version {0} avaiable, please restart wox Release Notes: @@ -117,14 +117,14 @@ Отправляем Отчёт успешно отправлен Не удалось отправить отчёт - Произошёл сбой в Wox + Произошёл сбой в Flow.Launcher - Доступна новая версия Wox V{0} + Доступна новая версия Flow.Launcher V{0} Произошла ошибка при попытке установить обновление Обновить Отмена - Это обновление перезапустит Wox + Это обновление перезапустит Flow.Launcher Следующие файлы будут обновлены Обновить файлы Описание обновления diff --git a/Wox/Languages/sk.xaml b/Wox/Languages/sk.xaml index 7180fc8da12..99ad6b34fff 100644 --- a/Wox/Languages/sk.xaml +++ b/Wox/Languages/sk.xaml @@ -4,7 +4,7 @@ Nepodarilo sa registrovať klávesovú skratku {0} Nepodarilo sa spustiť {0} - Neplatný formát súboru pre plugin Wox + Neplatný formát súboru pre plugin Flow.Launcher Pri tomto dopyte umiestniť navrchu Zrušiť umiestnenie navrchu pri tomto dopyte Spustiť dopyt: {0} @@ -15,10 +15,10 @@ Ukončiť - Nastavenia Wox + Nastavenia Flow.Launcher Všeobecné - Spustiť Wox po štarte systému - Schovať Wox po strate fokusu + Spustiť Flow.Launcher po štarte systému + Schovať Flow.Launcher po strate fokusu Nezobrazovať upozornenia na novú verziu Zapamätať si posledné umiestnenie Jazyk @@ -31,7 +31,7 @@ Priečinok s Pythonom Automatická aktualizácia Vybrať - Schovať Wox po spustení + Schovať Flow.Launcher po spustení Schovať ikonu v oblasti oznámení @@ -47,7 +47,7 @@ Motív Prehliadať viac motívov - Ahoj Wox + Ahoj Flow.Launcher Písmo poľa pre dopyt Písmo výsledkov Režim okno @@ -55,7 +55,7 @@ Klávesová skratka - Klávesová skratka pre Wox + Klávesová skratka pre Flow.Launcher Vlastná klávesová skratka pre dopyt Odstrániť Upraviť @@ -83,13 +83,13 @@ O aplikácii Webstránka Verzia - Wox bol aktivovaný {0}-krát + Flow.Launcher bol aktivovaný {0}-krát Skontrolovať aktualizácie - Je dostupná nová verzia {0}, prosím, reštartujte Wox. + Je dostupná nová verzia {0}, prosím, reštartujte Flow.Launcher. Kontrola aktualizácií zlyhala, prosím, skontrolujte pripojenie na internet a nastavenie proxy k api.github.com. Sťahovanie aktualizácií zlyhalo, skontrolujte pripojenie na internet a nastavenie proxy k github-cloud.s3.amazonaws.com, - alebo prejdite na https://github.com/jjw24/Wox/releases pre manuálne stiahnutie aktualizácií. + alebo prejdite na https://github.com/jjw24/Flow.Launcher/releases pre manuálne stiahnutie aktualizácií. Poznámky k vydaniu: @@ -127,14 +127,14 @@ Odosiela sa Hlásenie bolo úspešne odoslané Odoslanie hlásenia zlyhalo - Wox zaznamenal chybu + Flow.Launcher zaznamenal chybu - Je dostupné nové vydanie Wox {0} + Je dostupné nové vydanie Flow.Launcher {0} Počas inštalácie aktualizácií došlo k chybe Aktualizovať Zrušiť - Tento upgrade reštartuje Wox + Tento upgrade reštartuje Flow.Launcher Nasledujúce súbory budú aktualizované Aktualizovať súbory Aktualizovať popis diff --git a/Wox/Languages/sr.xaml b/Wox/Languages/sr.xaml index 96cbffc3463..b3be4621c5e 100644 --- a/Wox/Languages/sr.xaml +++ b/Wox/Languages/sr.xaml @@ -4,21 +4,21 @@ Neuspešno registrovana prečica: {0} Neuspešno pokretanje {0} - Nepravilni Wox plugin format datoteke + Nepravilni Flow.Launcher plugin format datoteke Postavi kao najviši u ovom upitu Poništi najviši u ovom upitu Izvrši upit: {0} Vreme poslednjeg izvršenja: {0} Otvori Podešavanja - O Wox-u + O Flow.Launcher-u Izlaz - Wox Podešavanja + Flow.Launcher Podešavanja Opšte - Pokreni Wox pri podizanju sistema - Sakri Wox kada se izgubi fokus + Pokreni Flow.Launcher pri podizanju sistema + Sakri Flow.Launcher kada se izgubi fokus Ne prikazuj obaveštenje o novoj verziji Zapamti lokaciju poslednjeg pokretanja Jezik @@ -31,7 +31,7 @@ Python direktorijum Auto ažuriranje Izaberi - Sakrij Wox pri podizanju sistema + Sakrij Flow.Launcher pri podizanju sistema Plugin @@ -46,7 +46,7 @@ Tema Pretražite još tema - Zdravo Wox + Zdravo Flow.Launcher Font upita Font rezultata Režim prozora @@ -54,7 +54,7 @@ Prečica - Wox prečica + Flow.Launcher prečica prečica za ručno dodat upit Obriši Izmeni @@ -79,16 +79,16 @@ Veza sa proksijem neuspešna - O Wox-u + O Flow.Launcher-u Veb sajt Verzija - Aktivirali ste Wox {0} puta + Aktivirali ste Flow.Launcher {0} puta Proveri ažuriranja - Nove verzija {0} je dostupna, molim Vas ponovo pokrenite Wox. + Nove verzija {0} je dostupna, molim Vas ponovo pokrenite Flow.Launcher. Neuspešna provera ažuriranja, molim Vas proverite vašu vezu i podešavanja za proksi prema api.github.com. Neuspešno preuzimanje ažuriranja, molim Vas proverite vašu vezu i podešavanja za proksi prema github-cloud.s3.amazonaws.com, - ili posetite https://github.com/jjw24/Wox/releases da preuzmete ažuriranja ručno. + ili posetite https://github.com/jjw24/Flow.Launcher/releases da preuzmete ažuriranja ručno. U novoj verziji: @@ -126,14 +126,14 @@ Slanje Izveštaj uspešno poslat Izveštaj neuspešno poslat - Wox je dobio grešku + Flow.Launcher je dobio grešku - Nova verzija Wox-a {0} je dostupna + Nova verzija Flow.Launcher-a {0} je dostupna Došlo je do greške prilokom instalacije ažuriranja Ažuriraj Otkaži - Ova nadogradnja će ponovo pokrenuti Wox + Ova nadogradnja će ponovo pokrenuti Flow.Launcher Sledeće datoteke će biti ažurirane Ažuriraj datoteke Opis ažuriranja diff --git a/Wox/Languages/tr.xaml b/Wox/Languages/tr.xaml index 40dba2a11e8..ac8f6a24ea2 100644 --- a/Wox/Languages/tr.xaml +++ b/Wox/Languages/tr.xaml @@ -4,7 +4,7 @@ Kısayol tuşu ataması başarısız oldu: {0} {0} başlatılamıyor - Geçersiz Wox eklenti dosyası formatı + Geçersiz Flow.Launcher eklenti dosyası formatı Bu sorgu için başa sabitle Sabitlemeyi kaldır Sorguyu çalıştır: {0} @@ -15,10 +15,10 @@ Çıkış - Wox Ayarları + Flow.Launcher Ayarları Genel - Wox'u başlangıçta başlat - Odak pencereden ayrıldığında Wox'u gizle + Flow.Launcher'u başlangıçta başlat + Odak pencereden ayrıldığında Flow.Launcher'u gizle Güncelleme bildirimlerini gösterme Pencere konumunu hatırla Dil @@ -31,7 +31,7 @@ Python Konumu Otomatik Güncelle Seç - Başlangıçta Wox'u gizle + Başlangıçta Flow.Launcher'u gizle Sistem çekmecesi simgesini gizle Sorgu Arama Hassasiyeti @@ -48,7 +48,7 @@ Temalar Daha fazla tema bul - Merhaba Wox + Merhaba Flow.Launcher Pencere Yazı Tipi Sonuç Yazı Tipi Pencere Modu @@ -58,7 +58,7 @@ Kısayol Tuşu - Wox Kısayolu + Flow.Launcher Kısayolu Özel Sorgu Kısayolları Sil Düzenle @@ -86,13 +86,13 @@ Hakkında Web Sitesi Sürüm - Şu ana kadar Wox'u {0} kez aktifleştirdiniz. + Şu ana kadar Flow.Launcher'u {0} kez aktifleştirdiniz. Güncellemeleri Kontrol Et - Uygulamanın yeni sürümü ({0}) mevcut, Lütfen Wox'u yeniden başlatın. + Uygulamanın yeni sürümü ({0}) mevcut, Lütfen Flow.Launcher'u yeniden başlatın. Güncelleme kontrolü başarısız oldu. Lütfen bağlantınız ve vekil sunucu ayarlarınızın api.github.com adresine ulaşabilir olduğunu kontrol edin. Güncellemenin yüklenmesi başarısız oldu. Lütfen bağlantınız ve vekil sunucu ayarlarınızın github-cloud.s3.amazonaws.com - adresine ulaşabilir olduğunu kontrol edin ya da https://github.com/jjw24/Wox/releases adresinden güncellemeyi elle indirin. + adresine ulaşabilir olduğunu kontrol edin ya da https://github.com/jjw24/Flow.Launcher/releases adresinden güncellemeyi elle indirin. Sürüm Notları: @@ -130,14 +130,14 @@ Gönderiliyor Hata raporu başarıyla gönderildi Hata raporu gönderimi başarısız oldu - Wox'ta bir hata oluştu + Flow.Launcher'ta bir hata oluştu - Wox'un yeni bir sürümü ({0}) mevcut + Flow.Launcher'un yeni bir sürümü ({0}) mevcut Güncellemelerin kurulması sırasında bir hata oluştu Güncelle İptal - Bu güncelleme Wox'u yeniden başlatacaktır + Bu güncelleme Flow.Launcher'u yeniden başlatacaktır Aşağıdaki dosyalar güncelleştirilecektir Güncellenecek dosyalar Güncelleme açıklaması diff --git a/Wox/Languages/uk-UA.xaml b/Wox/Languages/uk-UA.xaml index e114c2706da..d3b8f6be4fd 100644 --- a/Wox/Languages/uk-UA.xaml +++ b/Wox/Languages/uk-UA.xaml @@ -4,21 +4,21 @@ Реєстрація хоткея {0} не вдалася Не вдалося запустити {0} - Невірний формат файлу плагіна Wox + Невірний формат файлу плагіна Flow.Launcher Відображати першим при такому ж запиті Відмінити відображення першим при такому ж запиті Виконати запит: {0} Час останнього використання: {0} Відкрити Налаштування - Про Wox + Про Flow.Launcher Закрити - Налаштування Wox + Налаштування Flow.Launcher Основні - Запускати Wox при запуску системи - Сховати Wox якщо втрачено фокус + Запускати Flow.Launcher при запуску системи + Сховати Flow.Launcher якщо втрачено фокус Не повідомляти про доступні нові версії Запам'ятати останнє місце запуску Мова @@ -27,7 +27,7 @@ Директорія Python Автоматичне оновлення Вибрати - Сховати Wox при запуску системи + Сховати Flow.Launcher при запуску системи Плагіни @@ -42,7 +42,7 @@ Теми Знайти більше тем - Привіт Wox + Привіт Flow.Launcher Шрифт запитів Шрифт результатів Віконний режим @@ -50,7 +50,7 @@ Гарячі клавіші - Гаряча клавіша Wox + Гаряча клавіша Flow.Launcher Задані гарячі клавіші для запитів Видалити Змінити @@ -75,12 +75,12 @@ Невдале підключення Proxy - Про Wox + Про Flow.Launcher Сайт Версия - Ви скористалися Wox вже {0} разів + Ви скористалися Flow.Launcher вже {0} разів Перевірити наявність оновлень - Доступна нова версія {0}, будь ласка, перезавантажте Wox + Доступна нова версія {0}, будь ласка, перезавантажте Flow.Launcher Примітки до поточного релізу: @@ -117,14 +117,14 @@ Відправити Звіт успішно відправлено Не вдалося відправити звіт - Стався збій в додатоку Wox + Стався збій в додатоку Flow.Launcher - Доступна нова версія Wox V{0} + Доступна нова версія Flow.Launcher V{0} Сталася помилка під час спроби встановити оновлення Оновити Скасувати - Це оновлення перезавантажить Wox + Це оновлення перезавантажить Flow.Launcher Ці файли будуть оновлені Оновити файли Опис оновлення diff --git a/Wox/Languages/zh-cn.xaml b/Wox/Languages/zh-cn.xaml index 679040928c4..6b191553a97 100644 --- a/Wox/Languages/zh-cn.xaml +++ b/Wox/Languages/zh-cn.xaml @@ -4,7 +4,7 @@ 注册热键:{0} 失败 启动命令 {0} 失败 - 不是合法的Wox插件格式 + 不是合法的Flow.Launcher插件格式 在当前查询中置顶 取消置顶 执行查询:{0} @@ -15,10 +15,10 @@ 退出 - Wox设置 + Flow.Launcher设置 通用 - 开机启动 - 失去焦点时自动隐藏Wox + 开机启动 + 失去焦点时自动隐藏Flow.Launcher 不显示新版本提示 记住上次启动位置 语言 @@ -47,7 +47,7 @@ 主题 浏览更多主题 - 你好,Wox + 你好,Flow.Launcher 查询框字体 结果项字体 窗口模式 @@ -57,7 +57,7 @@ 热键 - Wox激活热键 + Flow.Launcher激活热键 自定义查询热键 删除 编辑 @@ -85,7 +85,7 @@ 关于 网站 版本 - 你已经激活了Wox {0} 次 + 你已经激活了Flow.Launcher {0} 次 检查更新 发现新版本 {0} , 请重启 wox。 更新说明: @@ -124,14 +124,14 @@ 发送中 发送成功 发送失败 - Wox出错啦 + Flow.Launcher出错啦 - 发现Wox新版本 V{0} - 更新Wox出错 + 发现Flow.Launcher新版本 V{0} + 更新Flow.Launcher出错 更新 取消 - 此更新需要重启Wox + 此更新需要重启Flow.Launcher 下列文件会被更新 更新文件 更新日志 diff --git a/Wox/Languages/zh-tw.xaml b/Wox/Languages/zh-tw.xaml index 9b26b0d0672..ac5176787f4 100644 --- a/Wox/Languages/zh-tw.xaml +++ b/Wox/Languages/zh-tw.xaml @@ -4,7 +4,7 @@ 登錄快速鍵:{0} 失敗 啟動命令 {0} 失敗 - 無效的 Wox 外掛格式 + 無效的 Flow.Launcher 外掛格式 在目前查詢中置頂 取消置頂 執行查詢:{0} @@ -15,10 +15,10 @@ 結束 - Wox 設定 + Flow.Launcher 設定 一般 - 開機時啟動 - 失去焦點時自動隱藏 Wox + 開機時啟動 + 失去焦點時自動隱藏 Flow.Launcher 不顯示新版本提示 記住上次啟動位置 語言 @@ -42,7 +42,7 @@ 主題 瀏覽更多主題 - 你好,Wox + 你好,Flow.Launcher 查詢框字體 結果項字體 視窗模式 @@ -50,7 +50,7 @@ 熱鍵 - Wox 執行熱鍵 + Flow.Launcher 執行熱鍵 自定義熱鍵查詢 刪除 編輯 @@ -78,9 +78,9 @@ 關於 網站 版本 - 您已經啟動了 Wox {0} 次 + 您已經啟動了 Flow.Launcher {0} 次 檢查更新 - 發現有新版本 {0}, 請重新啟動 Wox。 + 發現有新版本 {0}, 請重新啟動 Flow.Launcher。 更新說明: @@ -117,14 +117,14 @@ 傳送中 傳送成功 傳送失敗 - Wox 出錯啦 + Flow.Launcher 出錯啦 - 發現 Wox 新版本 V{0} - 更新 Wox 出錯 + 發現 Flow.Launcher 新版本 V{0} + 更新 Flow.Launcher 出錯 更新 取消 - 此更新需要重新啟動 Wox + 此更新需要重新啟動 Flow.Launcher 下列檔案會被更新 更新檔案 更新日誌 diff --git a/Wox/MainWindow.xaml b/Wox/MainWindow.xaml index a93305453c0..45767146e71 100644 --- a/Wox/MainWindow.xaml +++ b/Wox/MainWindow.xaml @@ -1,13 +1,13 @@ - //------------------------------------------------------------------------------ -namespace Wox.Properties { +namespace Flow.Launcher.Properties { using System; @@ -39,7 +39,7 @@ internal Resources() { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Wox.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Flow.Launcher.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Wox/Properties/Settings.Designer.cs b/Wox/Properties/Settings.Designer.cs index afa2aca781c..bb9d90d1700 100644 --- a/Wox/Properties/Settings.Designer.cs +++ b/Wox/Properties/Settings.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace Wox.Properties { +namespace Flow.Launcher.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -25,7 +25,7 @@ public static Settings Default { [global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("https://github.com/jjw24/Wox")] + [global::System.Configuration.DefaultSettingValueAttribute("https://github.com/jjw24/Flow.Launcher")] public string GithubRepo { get { return ((string)(this["GithubRepo"])); diff --git a/Wox/Properties/Settings.settings b/Wox/Properties/Settings.settings index cf08a910259..1c93c3f989a 100644 --- a/Wox/Properties/Settings.settings +++ b/Wox/Properties/Settings.settings @@ -1,9 +1,9 @@  - + - https://github.com/jjw24/Wox + https://github.com/jjw24/Flow.Launcher \ No newline at end of file diff --git a/Wox/PublicAPIInstance.cs b/Wox/PublicAPIInstance.cs index 7dfd4dbf7da..3459c2a9bbb 100644 --- a/Wox/PublicAPIInstance.cs +++ b/Wox/PublicAPIInstance.cs @@ -5,17 +5,17 @@ using System.Threading.Tasks; using System.Windows; using Squirrel; -using Wox.Core; -using Wox.Core.Plugin; -using Wox.Core.Resource; -using Wox.Helper; -using Wox.Infrastructure; -using Wox.Infrastructure.Hotkey; -using Wox.Infrastructure.Image; -using Wox.Plugin; -using Wox.ViewModel; - -namespace Wox +using Flow.Launcher.Core; +using Flow.Launcher.Core.Plugin; +using Flow.Launcher.Core.Resource; +using Flow.Launcher.Helper; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Hotkey; +using Flow.Launcher.Infrastructure.Image; +using Flow.Launcher.Plugin; +using Flow.Launcher.ViewModel; + +namespace Flow.Launcher { public class PublicAPIInstance : IPublicAPI { @@ -144,9 +144,9 @@ public List GetAllPlugins() return PluginManager.AllPlugins.ToList(); } - public event WoxGlobalKeyboardEventHandler GlobalKeyboardEvent; + public event Flow.LauncherGlobalKeyboardEventHandler GlobalKeyboardEvent; - [Obsolete("This will be removed in Wox 1.3")] + [Obsolete("This will be removed in Flow.Launcher 1.3")] public void PushResults(Query query, PluginMetadata plugin, List results) { results.ForEach(o => diff --git a/Wox/ReportWindow.xaml b/Wox/ReportWindow.xaml index fd53b01826d..8b77e05e007 100644 --- a/Wox/ReportWindow.xaml +++ b/Wox/ReportWindow.xaml @@ -1,4 +1,4 @@ - - - + - + @@ -224,7 +224,7 @@ - diff --git a/Wox/SettingWindow.xaml.cs b/Wox/SettingWindow.xaml.cs index df3b363d5b4..c483aa999d8 100644 --- a/Wox/SettingWindow.xaml.cs +++ b/Wox/SettingWindow.xaml.cs @@ -11,15 +11,15 @@ using Microsoft.Win32; using NHotkey; using NHotkey.Wpf; -using Wox.Core; -using Wox.Core.Plugin; -using Wox.Core.Resource; -using Wox.Infrastructure.Hotkey; -using Wox.Infrastructure.UserSettings; -using Wox.Plugin; -using Wox.ViewModel; - -namespace Wox +using Flow.Launcher.Core; +using Flow.Launcher.Core.Plugin; +using Flow.Launcher.Core.Resource; +using Flow.Launcher.Infrastructure.Hotkey; +using Flow.Launcher.Infrastructure.UserSettings; +using Flow.Launcher.Plugin; +using Flow.Launcher.ViewModel; + +namespace Flow.Launcher { public partial class SettingWindow { @@ -54,7 +54,7 @@ public static void SetStartup() { using (var key = Registry.CurrentUser.OpenSubKey(StartupPath, true)) { - key?.SetValue(Infrastructure.Constant.Wox, Infrastructure.Constant.ExecutablePath); + key?.SetValue(Infrastructure.Constant.Flow.Launcher, Infrastructure.Constant.ExecutablePath); } } @@ -62,7 +62,7 @@ private void RemoveStartup() { using (var key = Registry.CurrentUser.OpenSubKey(StartupPath, true)) { - key?.DeleteValue(Infrastructure.Constant.Wox, false); + key?.DeleteValue(Infrastructure.Constant.Flow.Launcher, false); } } @@ -70,7 +70,7 @@ public static bool StartupSet() { using (var key = Registry.CurrentUser.OpenSubKey(StartupPath, true)) { - var path = key?.GetValue(Infrastructure.Constant.Wox) as string; + var path = key?.GetValue(Infrastructure.Constant.Flow.Launcher) as string; if (path != null) { return path == Infrastructure.Constant.ExecutablePath; @@ -99,7 +99,7 @@ private void OnSelectPythonDirectoryClick(object sender, RoutedEventArgs e) if (File.Exists(pythonPath)) { _settings.PluginSettings.PythonDirectory = pythonDirectory; - MessageBox.Show("Remember to restart Wox use new Python path"); + MessageBox.Show("Remember to restart Flow.Launcher use new Python path"); } else { diff --git a/Wox/Settings.cs b/Wox/Settings.cs index b45d4a5a176..c5294b372b1 100644 --- a/Wox/Settings.cs +++ b/Wox/Settings.cs @@ -1,4 +1,4 @@ -namespace Wox.Properties { +namespace Flow.Launcher.Properties { // This class allows you to handle specific events on the settings class: diff --git a/Wox/Storage/HistoryItem.cs b/Wox/Storage/HistoryItem.cs index 084fa2882e5..6f0bf746181 100644 --- a/Wox/Storage/HistoryItem.cs +++ b/Wox/Storage/HistoryItem.cs @@ -1,6 +1,6 @@ using System; -namespace Wox.Storage +namespace Flow.Launcher.Storage { public class HistoryItem { diff --git a/Wox/Storage/QueryHistory.cs b/Wox/Storage/QueryHistory.cs index fc3f5250b65..de3bcaa2248 100644 --- a/Wox/Storage/QueryHistory.cs +++ b/Wox/Storage/QueryHistory.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using System.Linq; using Newtonsoft.Json; -using Wox.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Storage +namespace Flow.Launcher.Storage { public class History { diff --git a/Wox/Storage/TopMostRecord.cs b/Wox/Storage/TopMostRecord.cs index 5f940f21843..c110bdf92a5 100644 --- a/Wox/Storage/TopMostRecord.cs +++ b/Wox/Storage/TopMostRecord.cs @@ -1,9 +1,9 @@ using System.Collections.Generic; using System.Linq; using Newtonsoft.Json; -using Wox.Plugin; +using Flow.Launcher.Plugin; -namespace Wox.Storage +namespace Flow.Launcher.Storage { // todo this class is not thread safe.... but used from multiple threads. public class TopMostRecord diff --git a/Wox/Storage/UserSelectedRecord.cs b/Wox/Storage/UserSelectedRecord.cs index ef8bf7f8ef3..1fda04e9b1e 100644 --- a/Wox/Storage/UserSelectedRecord.cs +++ b/Wox/Storage/UserSelectedRecord.cs @@ -1,9 +1,9 @@ using System.Collections.Generic; using Newtonsoft.Json; -using Wox.Infrastructure.Storage; -using Wox.Plugin; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Plugin; -namespace Wox.Storage +namespace Flow.Launcher.Storage { public class UserSelectedRecord { diff --git a/Wox/ViewModel/MainViewModel.cs b/Wox/ViewModel/MainViewModel.cs index c2a277963c5..ae40cde0a54 100644 --- a/Wox/ViewModel/MainViewModel.cs +++ b/Wox/ViewModel/MainViewModel.cs @@ -9,17 +9,17 @@ using System.Windows.Input; using NHotkey; using NHotkey.Wpf; -using Wox.Core.Plugin; -using Wox.Core.Resource; -using Wox.Helper; -using Wox.Infrastructure; -using Wox.Infrastructure.Hotkey; -using Wox.Infrastructure.Storage; -using Wox.Infrastructure.UserSettings; -using Wox.Plugin; -using Wox.Storage; - -namespace Wox.ViewModel +using Flow.Launcher.Core.Plugin; +using Flow.Launcher.Core.Resource; +using Flow.Launcher.Helper; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Hotkey; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Infrastructure.UserSettings; +using Flow.Launcher.Plugin; +using Flow.Launcher.Storage; + +namespace Flow.Launcher.ViewModel { public class MainViewModel : BaseModel, ISavable { @@ -29,9 +29,9 @@ public class MainViewModel : BaseModel, ISavable private Query _lastQuery; private string _queryTextBeforeLeaveResults; - private readonly WoxJsonStorage _historyItemsStorage; - private readonly WoxJsonStorage _userSelectedRecordStorage; - private readonly WoxJsonStorage _topMostRecordStorage; + private readonly Flow.LauncherJsonStorage _historyItemsStorage; + private readonly Flow.LauncherJsonStorage _userSelectedRecordStorage; + private readonly Flow.LauncherJsonStorage _topMostRecordStorage; private readonly Settings _settings; private readonly History _history; private readonly UserSelectedRecord _userSelectedRecord; @@ -56,9 +56,9 @@ public MainViewModel(Settings settings) _settings = settings; - _historyItemsStorage = new WoxJsonStorage(); - _userSelectedRecordStorage = new WoxJsonStorage(); - _topMostRecordStorage = new WoxJsonStorage(); + _historyItemsStorage = new Flow.LauncherJsonStorage(); + _userSelectedRecordStorage = new Flow.LauncherJsonStorage(); + _topMostRecordStorage = new Flow.LauncherJsonStorage(); _history = _historyItemsStorage.Load(); _userSelectedRecord = _userSelectedRecordStorage.Load(); _topMostRecord = _topMostRecordStorage.Load(); @@ -566,7 +566,7 @@ public void RemoveHotkey(string hotkeyStr) } /// - /// Checks if Wox should ignore any hotkeys + /// Checks if Flow.Launcher should ignore any hotkeys /// /// private bool ShouldIgnoreHotkeys() @@ -615,12 +615,12 @@ private void OnHotkey(object sender, HotkeyEventArgs e) throw new ArgumentException($"wrong LastQueryMode: <{_settings.LastQueryMode}>"); } - ToggleWox(); + ToggleFlow.Launcher(); e.Handled = true; } } - private void ToggleWox() + private void ToggleFlow.Launcher() { if (MainWindowVisibility != Visibility.Visible) { diff --git a/Wox/ViewModel/PluginViewModel.cs b/Wox/ViewModel/PluginViewModel.cs index b1ae8909381..7021b4b9571 100644 --- a/Wox/ViewModel/PluginViewModel.cs +++ b/Wox/ViewModel/PluginViewModel.cs @@ -1,10 +1,10 @@ using System.Windows; using System.Windows.Media; -using Wox.Plugin; -using Wox.Core.Resource; -using Wox.Infrastructure.Image; +using Flow.Launcher.Plugin; +using Flow.Launcher.Core.Resource; +using Flow.Launcher.Infrastructure.Image; -namespace Wox.ViewModel +namespace Flow.Launcher.ViewModel { public class PluginViewModel : BaseModel { diff --git a/Wox/ViewModel/RelayCommand.cs b/Wox/ViewModel/RelayCommand.cs index b1dbc551c10..ee4140ed5a8 100644 --- a/Wox/ViewModel/RelayCommand.cs +++ b/Wox/ViewModel/RelayCommand.cs @@ -1,7 +1,7 @@ using System; using System.Windows.Input; -namespace Wox.ViewModel +namespace Flow.Launcher.ViewModel { public class RelayCommand : ICommand { diff --git a/Wox/ViewModel/ResultViewModel.cs b/Wox/ViewModel/ResultViewModel.cs index 1d610db2fe8..69040ee25a6 100644 --- a/Wox/ViewModel/ResultViewModel.cs +++ b/Wox/ViewModel/ResultViewModel.cs @@ -1,13 +1,13 @@ using System; using System.Windows.Media; using System.Windows.Threading; -using Wox.Infrastructure; -using Wox.Infrastructure.Image; -using Wox.Infrastructure.Logger; -using Wox.Plugin; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Image; +using Flow.Launcher.Infrastructure.Logger; +using Flow.Launcher.Plugin; -namespace Wox.ViewModel +namespace Flow.Launcher.ViewModel { public class ResultViewModel : BaseModel { diff --git a/Wox/ViewModel/ResultsViewModel.cs b/Wox/ViewModel/ResultsViewModel.cs index 76a7ee75ba7..911cd5807a3 100644 --- a/Wox/ViewModel/ResultsViewModel.cs +++ b/Wox/ViewModel/ResultsViewModel.cs @@ -6,10 +6,10 @@ using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; -using Wox.Infrastructure.UserSettings; -using Wox.Plugin; +using Flow.Launcher.Infrastructure.UserSettings; +using Flow.Launcher.Plugin; -namespace Wox.ViewModel +namespace Flow.Launcher.ViewModel { public class ResultsViewModel : BaseModel { diff --git a/Wox/ViewModel/SettingWindowViewModel.cs b/Wox/ViewModel/SettingWindowViewModel.cs index 3f315a9e3aa..898e60b03ef 100644 --- a/Wox/ViewModel/SettingWindowViewModel.cs +++ b/Wox/ViewModel/SettingWindowViewModel.cs @@ -7,29 +7,29 @@ using System.Windows.Controls; using System.Windows.Media; using System.Windows.Media.Imaging; -using Wox.Core; -using Wox.Core.Configuration; -using Wox.Core.Plugin; -using Wox.Core.Resource; -using Wox.Helper; -using Wox.Infrastructure; -using Wox.Infrastructure.Storage; -using Wox.Infrastructure.UserSettings; -using Wox.Plugin; - -namespace Wox.ViewModel +using Flow.Launcher.Core; +using Flow.Launcher.Core.Configuration; +using Flow.Launcher.Core.Plugin; +using Flow.Launcher.Core.Resource; +using Flow.Launcher.Helper; +using Flow.Launcher.Infrastructure; +using Flow.Launcher.Infrastructure.Storage; +using Flow.Launcher.Infrastructure.UserSettings; +using Flow.Launcher.Plugin; + +namespace Flow.Launcher.ViewModel { public class SettingWindowViewModel : BaseModel { private readonly Updater _updater; private readonly IPortable _portable; - private readonly WoxJsonStorage _storage; + private readonly Flow.LauncherJsonStorage _storage; public SettingWindowViewModel(Updater updater, IPortable portable) { _updater = updater; _portable = portable; - _storage = new WoxJsonStorage(); + _storage = new Flow.LauncherJsonStorage(); Settings = _storage.Load(); Settings.PropertyChanged += (s, e) => { diff --git a/Wox/Wox.csproj b/Wox/Wox.csproj index 3cb80a293d5..4baeb69e493 100644 --- a/Wox/Wox.csproj +++ b/Wox/Wox.csproj @@ -5,7 +5,7 @@ netcoreapp3.1 true true - Wox.App + Flow.Launcher.App Resources\app.ico app.manifest false @@ -75,9 +75,9 @@ - - - + + + @@ -183,7 +183,7 @@ - + diff --git a/appveyor.yml b/appveyor.yml index 20efd8dcc00..a676731b962 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,14 +11,14 @@ assembly_info: before_build: - ps: nuget restore build: - project: Wox.sln + project: Flow.Launcher.sln after_test: artifacts: -- path: 'Output\Packages\Wox-*.zip' +- path: 'Output\Packages\Flow.Launcher-*.zip' name: zipped_binary -- path: 'Output\Packages\Wox.Plugin.*.nupkg' +- path: 'Output\Packages\Flow.Launcher.Plugin.*.nupkg' name: nuget_package -- path: 'Output\Packages\Wox-*.*' +- path: 'Output\Packages\Flow.Launcher-*.*' name: installer - path: 'Output\Packages\RELEASES' name: installer