Skip to content

Commit

Permalink
【RunAny】 v5.2 @2018.04.26
Browse files Browse the repository at this point in the history
* 现在RunAny发现Everything没有权限时将最长等待30秒(感谢skystar提出问题)
  • Loading branch information
hui-Zz committed Apr 26, 2018
1 parent a6c04e6 commit 48b4581
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# 【RunAny】一劳永逸的快速启动工具 [v5.1 增加更新版本功能](#)
# 【RunAny】一劳永逸的快速启动工具 [v5.2](#)

**RunAny区别一般的启动工具,在任意电脑上仅需软件名就能直接找到并运行,特别适合使用家里、公司、学校多台电脑的你**
**RunAny区别一般的启动工具,适合家里、公司多台电脑的用户,不管软件装在C盘还是D盘,根据名字直接找到并运行**

__你只需配置一个自定义程序菜单,就能到处运行,网盘同步更是如虎添翼,达到一劳永逸!】😎__
__多台电脑你只需配置一套软件列表,就能到处运行,网盘同步更是如虎添翼,达到一劳永逸!】😎__

另外更有 [快捷打开文件][透明化启动][全局热键][一键批量搜索]...等你使用

【RunAny下载地址:】https://github.com/hui-Zz/RunAny/archive/v5.1.zip
【RunAny下载地址:】https://github.com/hui-Zz/RunAny/archive/v5.2.zip

[【RunAny版本更新历史】](https://github.com/hui-Zz/RunAny/wiki/RunAny版本更新历史)

Expand Down
15 changes: 12 additions & 3 deletions RunAny.ahk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
╔══════════════════════════════════════════════════
║【RunAny】一劳永逸的快速启动工具 v5.1 @2018.04.25 增加更新版本功能
║【RunAny】一劳永逸的快速启动工具 v5.2 @2018.04.26 增加更新版本功能
║ https://github.com/hui-Zz/RunAny
║ by hui-Zz 建议:hui0.0713@gmail.com
║ 讨论QQ群:[246308937]、3222783、493194474
Expand All @@ -17,8 +17,8 @@ SetWorkingDir,%A_ScriptDir% ;~脚本当前工作目录
;~ StartTick:=A_TickCount ;若要评估出menu初始化时间
global RunAnyZz:="RunAny" ;名称
global RunAnyConfig:="RunAnyConfig.ini" ;~配置文件
global RunAny_update_version:="5.1"
global RunAny_update_time:="2018.04.25"
global RunAny_update_version:="5.2"
global RunAny_update_time:="2018.04.26"
Gosub,Var_Set ;~参数初始化
Gosub,Run_Exist ;~调用判断依赖
global MenuObj:=Object() ;~程序全径
Expand Down Expand Up @@ -1973,6 +1973,15 @@ everythingQuery(){
ev.SetSearch(EvCommand)
;执行搜索
ev.Query()
while,% !ev.GetTotResults()
{
if(A_Index>300){
MsgBox,16,Everything启动异常,Everything不能读取磁盘文件,`n请打开Everything设置以下其中一项:`n* 以管理员身份运行(A)`n* 安装Everything服务(S)
break
}
Sleep, 100
ev.Query()
}
Loop,% ev.GetTotResults()
{
Z_Index:=A_Index-1
Expand Down
Binary file modified RunAny.exe
Binary file not shown.

0 comments on commit 48b4581

Please sign in to comment.