2020-12-18 V2.0.2012.1801

*.[新增]新增hosts设置命令行参数。
This commit is contained in:
鑫Intel 2020-12-18 15:54:15 +08:00
parent 5138d55443
commit e45b255752
14 changed files with 4909 additions and 4885 deletions

Binary file not shown.

View File

@ -958,6 +958,13 @@
<param name="str"></param>
<returns></returns>
</member>
<member name="M:ryCommon.Strings.IsEng(System.String)">
<summary>
判断字符串是否只包含英文
</summary>
<param name="str"></param>
<returns></returns>
</member>
<member name="M:ryCommon.Strings.IsMatchStr(System.String,System.String)">
<summary>
判断字符串是否匹配,支持?*通配符
@ -1091,6 +1098,13 @@
<param name="input"></param>
<returns></returns>
</member>
<member name="M:ryCommon.VarExtension.IsEng(System.String)">
<summary>
判断字符串是否是英文
</summary>
<param name="input"></param>
<returns></returns>
</member>
<member name="M:ryCommon.VarExtension.IsInRange(System.Decimal,System.Decimal,System.Decimal)">
<summary>
是否在指定范围内

Binary file not shown.

Binary file not shown.

View File

@ -1,2 +1,2 @@
[TimeClock]
hwnd=67418
hwnd=5705712

View File

@ -1,3 +1,3 @@
<root>
<list id="LastUpdateTime" Value="2020/11/28 9:21:53" />
<list id="LastUpdateTime" Value="2020/12/17 14:43:55" />
</root>

Binary file not shown.

Binary file not shown.

View File

@ -1,40 +1,43 @@
### 2020-12-10更新
### 2020-12-18更新
------
#### RyLine V2.0.2012.1801
- *.[新增]新增hosts设置命令行参数。
### 2020-12-10更新
------
#### TimeClock V1.0.2012.1001
*.[改进]适配MyDb.dll新版,解决打开设置时报错。
- *.[改进]适配MyDb.dll新版,解决打开设置时报错。
### 2019-09-30更新
------
#### TimeClock V1.0.1909.3001
*.[新增]新增国庆节节日。
*.[改进]日历上方月份、年份等变动会自动更新右侧具体信息。
- *.[新增]新增国庆节节日。
- *.[改进]日历上方月份、年份等变动会自动更新右侧具体信息。
#### MyTimeClock V2.0.1909.1501
暂无
- 暂无
#### RyLine V2.0.1909.0901
暂无
- 暂无
### 2019-09-28更新
------
#### TimeClock V1.0.1909.1501
*.[新增]快速提醒支持在主界面直接调用和右下角托盘菜单调用。
*.[改进]改进快速提醒,支持按指定分钟和指定时间提醒。
*.[修复]修复改变提醒窗口大小会导致界面显示异常的BUG。
- *.[新增]快速提醒支持在主界面直接调用和右下角托盘菜单调用。
- *.[改进]改进快速提醒,支持按指定分钟和指定时间提醒。
- *.[修复]修复改变提醒窗口大小会导致界面显示异常的BUG。
#### MyTimeClock V2.0.1909.1501
暂无
- 暂无
#### RyLine V2.0.1909.0901
暂无
- 暂无
2019-09-10 更新
------
#### TimeClock V1.0.1909.0907
*.[新增]便笺新增支持插入图片
*.[改进]改进便笺切换编辑状态的逻辑,在后台不会切换为编辑状态。
- *.[新增]便笺新增支持插入图片
- *.[改进]改进便笺切换编辑状态的逻辑,在后台不会切换为编辑状态。
#### MyTimeClock V2.0.1909.0907
暂无
- 暂无
#### RyLine V2.0.1909.0901
暂无
- 暂无

View File

@ -26,6 +26,13 @@ namespace RyLine
{ ryCommon.ryStart.SetAutoRun(true, args[1], "\""+args[2]+ "\"" + " "+args[3]); }
else if (args[0] == "DelAutoRun" && args.Length == 2)
{ ryCommon.ryStart.SetAutoRun(false, args[1]); }
else if (args[0] == "Hosts" && args.Length == 2)
{
if (System.IO.File.Exists(args[1]))
{
ryCommon.Hosts.AddHosts(ryCommon.RyFiles.ReadAllText(args[1]));
}
}
}
//shoutdown.DoExitWin(shoutdown.EWX_SHUTDOWN + shoutdown.EWX_FORCE);
//Application.Run(new Form1());

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.1909.0901")]
[assembly: AssemblyFileVersion("2.0.1909.0901")]
[assembly: AssemblyVersion("2.0.2012.1801")]
[assembly: AssemblyFileVersion("2.0.2012.1801")]