### 2021-03-04更新
------ #### VSoft V1.0.2103.0401 - *.[新增]新增测试模式,测试模式下支持编辑内置命令。 - *.[修复]修复内置命令删除栏目时,内置命令没有同步删除的BUG。 #### VSoftBox V1.0.2103.0401 - *.[删除]删除配置类,全部集合在VSoft.dll中。
|
Before Width: | Height: | Size: 9.8 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 8.3 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/京东.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/优酷.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 6.7 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/我的电脑.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/爱奇艺.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/网上邻居.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/腾讯视频.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/苏宁易购.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
|
|
@ -1,4 +1,8 @@
|
||||||
[VSoft]
|
[VSoft]
|
||||||
hwnd=399788
|
hwnd=659936
|
||||||
|
width=699
|
||||||
|
height=508
|
||||||
|
[VSoft_Test]
|
||||||
|
hwnd=399336
|
||||||
width=733
|
width=733
|
||||||
height=570
|
height=570
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
<root>
|
<root>
|
||||||
<list id="LastUpdateTime" Value="2021/2/28 16:44:50" />
|
<list id="LastUpdateTime" Value="2021/3/4 21:23:03" />
|
||||||
</root>
|
</root>
|
||||||
11
CHANGELOG.md
|
|
@ -1,4 +1,13 @@
|
||||||
### 2021-02-28更新
|
### 2021-03-04更新
|
||||||
|
------
|
||||||
|
#### VSoft V1.0.2103.0401
|
||||||
|
- *.[新增]新增测试模式,测试模式下支持编辑内置命令。
|
||||||
|
- *.[修复]修复内置命令删除栏目时,内置命令没有同步删除的BUG。
|
||||||
|
|
||||||
|
#### VSoftBox V1.0.2103.0401
|
||||||
|
- *.[删除]删除配置类,全部集合在VSoft.dll中。
|
||||||
|
|
||||||
|
### 2021-02-28更新
|
||||||
------
|
------
|
||||||
#### VSoft V1.0.2102.2801
|
#### VSoft V1.0.2102.2801
|
||||||
- *.[新增]项目支持毕方3.0标准。
|
- *.[新增]项目支持毕方3.0标准。
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,11 @@ namespace Itrycn_Project
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 软件ID
|
/// 软件ID
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
#if TEST
|
||||||
|
public const string Soft_Id = "VSoft_Test";
|
||||||
|
#else
|
||||||
public const string Soft_Id = "VSoft";
|
public const string Soft_Id = "VSoft";
|
||||||
|
#endif
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 开机启动的参数
|
/// 开机启动的参数
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
using Itrycn_Project;
|
using System;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
using VSoft.Config;
|
||||||
|
|
||||||
namespace VSoftBox
|
namespace VSoftBox
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
||||||
//通过使用 "*",如下所示:
|
//通过使用 "*",如下所示:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.2102.2701")]
|
[assembly: AssemblyVersion("1.0.2103.0401")]
|
||||||
[assembly: AssemblyFileVersion("1.0.2102.2701")]
|
[assembly: AssemblyFileVersion("1.0.2103.0401")]
|
||||||
|
|
@ -55,8 +55,6 @@
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Config\Soft_Config.cs" />
|
|
||||||
<Compile Include="Config\Soft_Info.cs" />
|
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<EmbeddedResource Include="Properties\Resources.resx">
|
<EmbeddedResource Include="Properties\Resources.resx">
|
||||||
|
|
|
||||||
|
|
@ -21,11 +21,20 @@ namespace VSoft.Config
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 软件标题
|
/// 软件标题
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
#if TEST
|
||||||
|
public const string Soft_Title = "VSoft 快速启动【测试模式】";
|
||||||
|
#else
|
||||||
public const string Soft_Title = "VSoft 快速启动";
|
public const string Soft_Title = "VSoft 快速启动";
|
||||||
|
#endif
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 软件ID
|
/// 软件ID
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
#if TEST
|
||||||
|
public const string Soft_Id = "VSoft_Test";
|
||||||
|
#else
|
||||||
public const string Soft_Id = "VSoft";
|
public const string Soft_Id = "VSoft";
|
||||||
|
#endif
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 开机启动的参数
|
/// 开机启动的参数
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,11 @@ namespace VSoft
|
||||||
public partial class FrmInCMD : Skins.SKinForm
|
public partial class FrmInCMD : Skins.SKinForm
|
||||||
{
|
{
|
||||||
public string SQLConnStr = Itrycn_Db.SQLConnStr_SysDb;
|
public string SQLConnStr = Itrycn_Db.SQLConnStr_SysDb;
|
||||||
|
#if TEST
|
||||||
|
private bool ReadOnly { get; set; } = false;
|
||||||
|
#else
|
||||||
private bool ReadOnly { get; set; } = true;
|
private bool ReadOnly { get; set; } = true;
|
||||||
|
#endif
|
||||||
public FrmInCMD()
|
public FrmInCMD()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
@ -315,6 +319,7 @@ namespace VSoft
|
||||||
}
|
}
|
||||||
ds.Dispose();
|
ds.Dispose();
|
||||||
db.DelById("Columns", column_id.ToString());
|
db.DelById("Columns", column_id.ToString());
|
||||||
|
db.ExecuteNonQuery("delete from Softs where ColumnId=" + column_id);
|
||||||
TabList_Column.SelectedItems[0].Remove();
|
TabList_Column.SelectedItems[0].Remove();
|
||||||
db.BeginTransaction();
|
db.BeginTransaction();
|
||||||
for (int i = 1; i < TabList_Column.Items.Count; i++)
|
for (int i = 1; i < TabList_Column.Items.Count; i++)
|
||||||
|
|
|
||||||
18
Source/VSoft_Dll/FrmVSoft.Designer.cs
generated
|
|
@ -71,6 +71,7 @@
|
||||||
this.IconViewEx1 = new ryControls.IconViewEx();
|
this.IconViewEx1 = new ryControls.IconViewEx();
|
||||||
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||||
this.TabList_Column = new ryControls.TabList();
|
this.TabList_Column = new ryControls.TabList();
|
||||||
|
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
|
||||||
this.MenuList.SuspendLayout();
|
this.MenuList.SuspendLayout();
|
||||||
this.MenuTabColumn.SuspendLayout();
|
this.MenuTabColumn.SuspendLayout();
|
||||||
this.MenuTabType.SuspendLayout();
|
this.MenuTabType.SuspendLayout();
|
||||||
|
|
@ -243,9 +244,10 @@
|
||||||
this.打开官网ToolStripMenuItem,
|
this.打开官网ToolStripMenuItem,
|
||||||
this.捐助ToolStripMenuItem,
|
this.捐助ToolStripMenuItem,
|
||||||
this.设置ToolStripMenuItem,
|
this.设置ToolStripMenuItem,
|
||||||
|
this.toolStripMenuItem3,
|
||||||
this.退出软件ToolStripMenuItem});
|
this.退出软件ToolStripMenuItem});
|
||||||
this.MenuTray.Name = "MenuTray";
|
this.MenuTray.Name = "MenuTray";
|
||||||
this.MenuTray.Size = new System.Drawing.Size(137, 114);
|
this.MenuTray.Size = new System.Drawing.Size(137, 120);
|
||||||
//
|
//
|
||||||
// 显示主窗体ToolStripMenuItem
|
// 显示主窗体ToolStripMenuItem
|
||||||
//
|
//
|
||||||
|
|
@ -355,11 +357,10 @@
|
||||||
this.rySearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(239)))), ((int)(((byte)(244)))));
|
this.rySearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(239)))), ((int)(((byte)(244)))));
|
||||||
this.rySearch1.BaseColor = System.Drawing.Color.Teal;
|
this.rySearch1.BaseColor = System.Drawing.Color.Teal;
|
||||||
this.rySearch1.ButtonRoundBackColor = System.Drawing.SystemColors.Control;
|
this.rySearch1.ButtonRoundBackColor = System.Drawing.SystemColors.Control;
|
||||||
this.rySearch1.ColorGradient = true;
|
this.rySearch1.EmptyText = "输入名称或拼音搜索";
|
||||||
this.rySearch1.EmptyText = "输入名称或拼音即可搜索";
|
this.rySearch1.Location = new System.Drawing.Point(537, 36);
|
||||||
this.rySearch1.Location = new System.Drawing.Point(509, 36);
|
|
||||||
this.rySearch1.Name = "rySearch1";
|
this.rySearch1.Name = "rySearch1";
|
||||||
this.rySearch1.Size = new System.Drawing.Size(170, 27);
|
this.rySearch1.Size = new System.Drawing.Size(142, 27);
|
||||||
this.rySearch1.TabIndex = 2;
|
this.rySearch1.TabIndex = 2;
|
||||||
this.rySearch1.UseDefSkin = false;
|
this.rySearch1.UseDefSkin = false;
|
||||||
this.rySearch1.OnSearch += new System.EventHandler(this.rySearch1_OnSearch);
|
this.rySearch1.OnSearch += new System.EventHandler(this.rySearch1_OnSearch);
|
||||||
|
|
@ -470,6 +471,11 @@
|
||||||
this.TabList_Column.DragOver += new System.Windows.Forms.DragEventHandler(this.IconViewEx1_DragOver);
|
this.TabList_Column.DragOver += new System.Windows.Forms.DragEventHandler(this.IconViewEx1_DragOver);
|
||||||
this.TabList_Column.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TabList_Column_KeyDown);
|
this.TabList_Column.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TabList_Column_KeyDown);
|
||||||
//
|
//
|
||||||
|
// toolStripMenuItem3
|
||||||
|
//
|
||||||
|
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
|
||||||
|
this.toolStripMenuItem3.Size = new System.Drawing.Size(133, 6);
|
||||||
|
//
|
||||||
// FrmVSoft
|
// FrmVSoft
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||||
|
|
@ -488,6 +494,7 @@
|
||||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||||
this.MinimumSize = new System.Drawing.Size(160, 60);
|
this.MinimumSize = new System.Drawing.Size(160, 60);
|
||||||
this.Name = "FrmVSoft";
|
this.Name = "FrmVSoft";
|
||||||
|
this.Opacity = 0.97D;
|
||||||
this.SideResizeWidth = 4;
|
this.SideResizeWidth = 4;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||||
this.Text = "VSoft";
|
this.Text = "VSoft";
|
||||||
|
|
@ -671,5 +678,6 @@
|
||||||
private System.Windows.Forms.Label LblEmpty;
|
private System.Windows.Forms.Label LblEmpty;
|
||||||
private System.Windows.Forms.Label LblSetting;
|
private System.Windows.Forms.Label LblSetting;
|
||||||
private System.Windows.Forms.Panel PnlLeft;
|
private System.Windows.Forms.Panel PnlLeft;
|
||||||
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
||||||
//通过使用 "*",如下所示:
|
//通过使用 "*",如下所示:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.2102.2801")]
|
[assembly: AssemblyVersion("1.0.2103.0401")]
|
||||||
[assembly: AssemblyFileVersion("1.0.2102.2801")]
|
[assembly: AssemblyFileVersion("1.0.2103.0401")]
|
||||||
|
|
@ -24,7 +24,7 @@ namespace VSoft.Skins
|
||||||
{
|
{
|
||||||
if (!this.DesignMode)
|
if (!this.DesignMode)
|
||||||
{ base.XTheme = new VSoft.Skins.ThemeForm(); }
|
{ base.XTheme = new VSoft.Skins.ThemeForm(); }
|
||||||
Opacity = 0.9;
|
Opacity = 0.97;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>..\..\Bin\Debug\VSoft\</OutputPath>
|
<OutputPath>..\..\Bin\Debug\VSoft\</OutputPath>
|
||||||
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
<DefineConstants>TRACE;DEBUG;TEST</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
|
|
|
||||||