This commit is contained in:
fofolee 2020-05-08 23:00:21 +08:00
parent 2d92bc7da9
commit 3db94c8999
5 changed files with 21 additions and 6 deletions

Binary file not shown.

View File

@ -1,4 +1,4 @@
# 快捷命令 V1.5.8
# 快捷命令 V1.5.9
## 简介
@ -6,6 +6,13 @@
### 更新
#### v1.5.9
- 修复不能导入命令的bug
- 由于uTools 1.0.0版本匹配窗口时无法再使用正则,所以选择匹配窗口模式时,在填写进程时需填写进程全名,多个进程逗号隔开
- 忽略输出模式调整回自动隐藏窗口
- 更新示例命令库
#### v1.5.8
- 适配新版本

View File

@ -1,4 +1,4 @@
# 快捷命令 V1.5.8
# 快捷命令 V1.5.9
## 简介
@ -6,6 +6,13 @@
### 更新
#### v1.5.9
- 修复不能导入命令的bug
- 由于uTools 1.0.0版本匹配窗口时无法再使用正则,所以选择匹配窗口模式时,在填写进程时需填写进程全名,多个进程逗号隔开
- 忽略输出模式调整回自动隐藏窗口
- 更新示例命令库
#### v1.5.8
- 适配新版本

View File

@ -82,9 +82,10 @@ function runCmd(cmd, option, output) {
// 不需要输出的,提前关闭窗口
if (['ignore', 'clip', 'send', 'notice', 'terminal'].indexOf(output) !== -1) {
utools.setExpendHeight(0);
utools.hideMainWindow();
setTimeout(() => {
utools.outPlugin();
// utools.hideMainWindow();
if(output == 'send') utools.hideMainWindow();
}, 10);
}
var terminal = false;
if(output == 'terminal') terminal = true;

View File

@ -4,7 +4,7 @@
"main": "index.html",
"homepage": "https://github.com/fofolee/uTools-QuickerCommand",
"publishPage": "https://yuanliao.info/d/424",
"version": "1.5.8",
"version": "1.5.9",
"author": "云之轩",
"logo": "logo.png",
"platform": [ "win32", "darwin", "linux" ],