*.[删除]删除管理员方式打开软件的警告通知。

*.[改进]当当前路径没有填写时,默认使用软件路径所在文件夹作为当前路径。
*.[更新]更新Newtonsoft.Json.dll到12.0.3.23909版本
This commit is contained in:
鑫Intel 2020-12-08 13:46:27 +08:00
parent 3d0941f31f
commit 60ef7eeb55
19 changed files with 9741 additions and 9432 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@ -1,4 +1,4 @@
[VSoft]
hwnd=395896
hwnd=660032
width=742
height=572

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,3 +1,3 @@
<root>
<list id="LastUpdateTime" Value="2020/11/28 9:22:07" />
<list id="LastUpdateTime" Value="2020/12/8 13:44:08" />
</root>

Binary file not shown.

Binary file not shown.

View File

@ -1,29 +1,8 @@
### 2020-11-16更新
### 2020-12-08更新
------
#### DyTools V1.9.2011.1601
#### VSoft V1.0.2012.0801
*.[新增]新增网址状态扫描。
- *.[删除]删除管理员方式打开软件的警告通知。
- *.[改进]当当前路径没有填写时,默认使用软件路径所在文件夹作为当前路径。
- *.[更新]更新Newtonsoft.Json.dll到12.0.3.23909版本
------
### 2019-10-12更新
------
#### DyTools V1.9.1910.1201
*.[新增]游戏入库查询支持87g和当下数量显示。
------
2017-04-19 V1.1.1.0
*.[新增]新增支持清空和粘贴文本。
*.[新增]支持读取网址进行分析。
*.[修复]修复文件夹分析结果不准确的Bug。
2017-04-18 V1.1.0.0
*.[新增]新增盘古分词。
*.[新增]支持添加用户词库。
2017-04-17 V1.0.0.1
*.[修复]修复文章内容太多导致分词报错的BUG。
2017-04-15 V1.0.0.0
*.[初始版本]

Binary file not shown.

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.2011.1701")]
[assembly: AssemblyFileVersion("1.0.2011.1701")]
[assembly: AssemblyVersion("1.0.2012.0801")]
[assembly: AssemblyFileVersion("1.0.2012.0801")]

View File

@ -171,10 +171,10 @@ namespace VSoft
VSoft.Config.Soft_Config.LoadSetting();
LoadColumn();
//rySearch1.PerformClick();
if(RySoft.IsAdministrator())
{
MessageBox.Show("管理员模式下启动本软件,可能会导致无法拖放图标到本软件。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
//if(RySoft.IsAdministrator())
//{
// MessageBox.Show("管理员模式下启动本软件,可能会导致无法拖放图标到本软件。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
//}
hotkey = new SysFuns.WinHotReg(Handle);
HotkeyValue hot = new HotkeyValue(Soft_Config.ShowMainHotKey);
hotkey.RegHotKey(100,hot.Modifiers_Int, hot.KeyCode);

View File

@ -64,6 +64,17 @@ namespace VSoft.Prams
}
#endregion
}
if (StartPath.Length == 0)
{
if (System.IO.File.Exists(path) || System.IO.Directory.Exists(path))
{
StartPath = System.IO.Path.GetDirectoryName(path.TrimEnd('\\'));
}
else
{
StartPath = null;
}
}
if (path.StartsWith("@", StringComparison.OrdinalIgnoreCase)) //如果路径是@开头,则表示这个是一个命令
{
switch(path.Substring(1).ToLower())

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.2011.1701")]
[assembly: AssemblyFileVersion("1.0.2011.1701")]
[assembly: AssemblyVersion("1.0.2012.0801")]
[assembly: AssemblyFileVersion("1.0.2012.0801")]