Skip to content

Commit 1b79530

Browse files
committed
Rename code & text
1 parent 98758f6 commit 1b79530

File tree

321 files changed

+1100
-1100
lines changed

Some content is hidden

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

321 files changed

+1100
-1100
lines changed

.gitignore

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

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

Doc/app.psd

30 Bytes
Binary file not shown.

Doc/app_error.psd

30 Bytes
Binary file not shown.

ISSUE_TEMPLATE.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
3838
Known problems for 1.3.183:
3939
We are aware of the following issues and the following workarounds exist:
40-
1. `System.NullReferenceException`: https://github.com/Wox-launcher/Wox/releases/tag/v1.3.475
40+
1. `System.NullReferenceException`: https://github.com/Flow.Launcher-launcher/Flow.Launcher/releases/tag/v1.3.475
4141
2. `System.UriFormatException`: delete your old theme file
42-
3. `System.Threading.Tasks.TaskCanceledException`: https://github.com/Wox-launcher/Wox/releases/tag/v1.3.475
43-
4. `System.AggregateException`: see https://github.com/Wox-launcher/Wox/issues/1777
42+
3. `System.Threading.Tasks.TaskCanceledException`: https://github.com/Flow.Launcher-launcher/Flow.Launcher/releases/tag/v1.3.475
43+
4. `System.AggregateException`: see https://github.com/Flow.Launcher-launcher/Flow.Launcher/issues/1777
4444
4545
If none of them match your case, please continue.
4646
@@ -63,11 +63,11 @@
6363
2.
6464
3.
6565

66-
### Wox Error Window text
66+
### Flow.Launcher Error Window text
6767
<!--
68-
Paste below the logs generated by the Wox error reporter.
68+
Paste below the logs generated by the Flow.Launcher error reporter.
6969
70-
请在此处粘贴 Wox 错误报告程序提供的日志。
70+
请在此处粘贴 Flow.Launcher 错误报告程序提供的日志。
7171
-->
7272

7373
(paste here)
@@ -76,14 +76,14 @@
7676
### Detailed logs
7777
<!--
7878
Please also provide detailed logs. The latest log file
79-
can be found here: %APPDATA%\Wox\Logs\version\<date>.txt
79+
can be found here: %APPDATA%\Flow.Launcher\Logs\version\<date>.txt
8080
Drag and drop that file below this comment.
8181
In some cases you can skip uploading the the logs, but the chances
8282
of us being able to solve the problem will be higher if you do.
8383
8484
详细日志:
8585
请在此处提供详细日志。你可以在这个目录找到最新的日志:
86-
%APPDATA%\Wox\Logs\version\<date>.txt
86+
%APPDATA%\Flow.Launcher\Logs\version\<date>.txt
8787
直接拖放文件到这个评论就可以上传(国内大部分地区可能需要翻墙才能上传,作为备选方案可以考虑直接在此粘贴文件内容)
8888
-->
8989

JsonRPC/wox.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
import sys
55
import inspect
66

7-
class Wox(object):
7+
class Flow.Launcher(object):
88
"""
9-
Wox python plugin base
9+
Flow.Launcher python plugin base
1010
"""
1111

1212
def __init__(self):
@@ -42,74 +42,74 @@ def debug(self,msg):
4242
print("DEBUG:{}".format(msg))
4343
sys.exit()
4444

45-
class WoxAPI(object):
45+
class Flow.LauncherAPI(object):
4646

4747
@classmethod
4848
def change_query(cls,query,requery = False):
4949
"""
5050
change wox query
5151
"""
52-
print(json.dumps({"method": "Wox.ChangeQuery","parameters":[query,requery]}))
52+
print(json.dumps({"method": "Flow.Launcher.ChangeQuery","parameters":[query,requery]}))
5353

5454
@classmethod
5555
def shell_run(cls,cmd):
5656
"""
5757
run shell commands
5858
"""
59-
print(json.dumps({"method": "Wox.ShellRun","parameters":[cmd]}))
59+
print(json.dumps({"method": "Flow.Launcher.ShellRun","parameters":[cmd]}))
6060

6161
@classmethod
6262
def close_app(cls):
6363
"""
6464
close wox
6565
"""
66-
print(json.dumps({"method": "Wox.CloseApp","parameters":[]}))
66+
print(json.dumps({"method": "Flow.Launcher.CloseApp","parameters":[]}))
6767

6868
@classmethod
6969
def hide_app(cls):
7070
"""
7171
hide wox
7272
"""
73-
print(json.dumps({"method": "Wox.HideApp","parameters":[]}))
73+
print(json.dumps({"method": "Flow.Launcher.HideApp","parameters":[]}))
7474

7575
@classmethod
7676
def show_app(cls):
7777
"""
7878
show wox
7979
"""
80-
print(json.dumps({"method": "Wox.ShowApp","parameters":[]}))
80+
print(json.dumps({"method": "Flow.Launcher.ShowApp","parameters":[]}))
8181

8282
@classmethod
8383
def show_msg(cls,title,sub_title,ico_path=""):
8484
"""
8585
show messagebox
8686
"""
87-
print(json.dumps({"method": "Wox.ShowMsg","parameters":[title,sub_title,ico_path]}))
87+
print(json.dumps({"method": "Flow.Launcher.ShowMsg","parameters":[title,sub_title,ico_path]}))
8888

8989
@classmethod
9090
def open_setting_dialog(cls):
9191
"""
9292
open setting dialog
9393
"""
94-
print(json.dumps({"method": "Wox.OpenSettingDialog","parameters":[]}))
94+
print(json.dumps({"method": "Flow.Launcher.OpenSettingDialog","parameters":[]}))
9595

9696
@classmethod
9797
def start_loadingbar(cls):
9898
"""
9999
start loading animation in wox
100100
"""
101-
print(json.dumps({"method": "Wox.StartLoadingBar","parameters":[]}))
101+
print(json.dumps({"method": "Flow.Launcher.StartLoadingBar","parameters":[]}))
102102

103103
@classmethod
104104
def stop_loadingbar(cls):
105105
"""
106106
stop loading animation in wox
107107
"""
108-
print(json.dumps({"method": "Wox.StopLoadingBar","parameters":[]}))
108+
print(json.dumps({"method": "Flow.Launcher.StopLoadingBar","parameters":[]}))
109109

110110
@classmethod
111111
def reload_plugins(cls):
112112
"""
113113
reload all wox plugins
114114
"""
115-
print(json.dumps({"method": "Wox.ReloadPlugins","parameters":[]}))
115+
print(json.dumps({"method": "Flow.Launcher.ReloadPlugins","parameters":[]}))

Plugins/HelloWorldCSharp/HelloWorldCSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</ItemGroup>
4444

4545
<ItemGroup>
46-
<ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj" />
46+
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
4747
</ItemGroup>
4848

4949
<ItemGroup>

Plugins/HelloWorldCSharp/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using Wox.Plugin;
6+
using Flow.Launcher.Plugin;
77

88
namespace HelloWorldCSharp
99
{

Plugins/HelloWorldCSharp/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Author":"happlebao",
77
"Version":"1.0.0",
88
"Language":"csharp",
9-
"Website":"https://github.com/Wox-launcher/Wox",
9+
"Website":"https://github.com/Flow.Launcher-launcher/Flow.Launcher",
1010
"ExecuteFileName":"HelloWorldCSharp.dll",
1111
"IcoPath":"app.png",
1212
"Disabled": true

Plugins/HelloWorldPython/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# -*- coding: utf-8 -*-
22

3-
from wox import Wox
3+
from wox import Flow.Launcher
44

5-
class HelloWorld(Wox):
5+
class HelloWorld(Flow.Launcher):
66

77
def query(self, query):
88
results = []

Plugins/HelloWorldPython/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Author":"happlebao",
77
"Version":"1.0",
88
"Language":"python",
9-
"Website":"https://github.com/Wox-launcher/Wox",
9+
"Website":"https://github.com/Flow.Launcher-launcher/Flow.Launcher",
1010
"IcoPath":"Images\\app.png",
1111
"ExecuteFileName":"main.py"
1212
}

0 commit comments

Comments
 (0)