diff --git a/QuickCommand-1.5.5.upx b/QuickCommand-1.5.5.upx deleted file mode 100644 index 8a27e36..0000000 Binary files a/QuickCommand-1.5.5.upx and /dev/null differ diff --git a/README.md b/README.md index 1f9761b..6cc8306 100644 --- a/README.md +++ b/README.md @@ -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 - 适配新版本 diff --git a/src/README.md b/src/README.md index 1f9761b..6cc8306 100644 --- a/src/README.md +++ b/src/README.md @@ -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 - 适配新版本 diff --git a/src/assets/index.js b/src/assets/index.js index 9e85e11..fb9048c 100644 --- a/src/assets/index.js +++ b/src/assets/index.js @@ -82,9 +82,10 @@ function runCmd(cmd, option, output) { // 不需要输出的,提前关闭窗口 if (['ignore', 'clip', 'send', 'notice', 'terminal'].indexOf(output) !== -1) { utools.setExpendHeight(0); - utools.outPlugin(); - // utools.hideMainWindow(); - if(output == 'send') utools.hideMainWindow(); + utools.hideMainWindow(); + setTimeout(() => { + utools.outPlugin(); + }, 10); } var terminal = false; if(output == 'terminal') terminal = true; diff --git a/src/plugin.json b/src/plugin.json index b1f20d1..d24aee1 100644 --- a/src/plugin.json +++ b/src/plugin.json @@ -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" ],