Skip to content

Commit ab4a2d9

Browse files
更新3.0版本
1 parent e4b6e85 commit ab4a2d9

File tree

8 files changed

+13
-12
lines changed

8 files changed

+13
-12
lines changed

ContextMenuManager/AppConfig.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using System;
1+
using BluePointLilac.Methods;
2+
using System;
23
using System.Globalization;
34
using System.IO;
45
using System.Runtime.InteropServices;
56
using System.Windows.Forms;
6-
using BluePointLilac.Methods;
77

88
namespace ContextMenuManager
99
{

ContextMenuManager/AppImage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public static class AppImage
6060
///<summary>资源管理器图标</summary>
6161
public static readonly Image Explorer = ResourceIcon.GetIcon("explorer.exe", 0).ToBitmap();
6262
///<summary>命令提示符图标</summary>
63-
public static readonly Image Cmd= ResourceIcon.GetIcon("cmd.exe", 0).ToBitmap();
63+
public static readonly Image Cmd = ResourceIcon.GetIcon("cmd.exe", 0).ToBitmap();
6464
///<summary>重启Explorer图标</summary>
6565
public static readonly Image RestartExplorer = ResourceIcon.GetIcon("shell32.dll", 238).ToBitmap();
6666
///<summary>网络驱动器图标</summary>

ContextMenuManager/BluePointLilac.Controls/ReadOnlyRichTextBox.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using System.Drawing;
1+
using BluePointLilac.Methods;
2+
using System.Drawing;
23
using System.Windows.Forms;
3-
using BluePointLilac.Methods;
44

55
namespace BluePointLilac.Controls
66
{

ContextMenuManager/ContextMenuManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<PlatformTarget>AnyCPU</PlatformTarget>
3434
<DebugSymbols>true</DebugSymbols>
3535
<DebugType>full</DebugType>
36-
<Optimize>false</Optimize>
36+
<Optimize>true</Optimize>
3737
<OutputPath>bin\Debug\</OutputPath>
3838
<DefineConstants>DEBUG;TRACE</DefineConstants>
3939
<ErrorReport>prompt</ErrorReport>

ContextMenuManager/Controls/GuidBlockedList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ private void LoadBlockedItems()
2626
});
2727
Array.ForEach(values.Distinct(StringComparer.OrdinalIgnoreCase).ToArray(), value =>
2828
{
29-
this.AddItem(new GuidBlockedItem(value));
29+
this.AddItem(new GuidBlockedItem(value));
3030
});
3131
}
3232

ContextMenuManager/Controls/SendToItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public string IconLocation
117117
if(IsShortcut)
118118
{
119119
location = Shortcut.IconLocation;
120-
if(location==",0") location = Shortcut.TargetPath;
120+
if(location == ",0") location = Shortcut.TargetPath;
121121
}
122122
else
123123
{

ContextMenuManager/Controls/WinXItem.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ private void InitializeComponents()
132132
TsiChangeGroup.Click += (sender, e) => ChangeGroup();
133133
BtnMoveDown.MouseDown += (sender, e) => MoveItem(false);
134134
BtnMoveUp.MouseDown += (sender, e) => MoveItem(true);
135-
TsiAdministrator.Click += (sender, e) => {
135+
TsiAdministrator.Click += (sender, e) =>
136+
{
136137
WinXList.HashLnk(this.FilePath);
137138
ExplorerRestarter.Show();
138139
};

Update.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[Update]
2-
Version=2.2.0.0
3-
Url=https://github.com/BluePointLilac/ContextMenuManager/releases/download/2.2.0.0/ContextMenuManager.zip
4-
Info=【更新描述】\n(1).支持定义所有格式文件的右键菜单;\n(2).优化规则“使用 Skype 共享”,可永久禁用;\n(3).支持更改程序内网页搜索引擎;\n(4).添加设置文件格式感知类型功能;\n(5).扩充程序GUID字典,更友好!
2+
Version=3.0.0.0
3+
Url=https://github.com/BluePointLilac/ContextMenuManager/releases/download/3.0.0.0/ContextMenuManager.zip
4+
Info=【更新描述】\n(1).支持通过GUID添加ShellEx菜单项目;\n(2).添加ShellExecute函数,方便创建更加强大的Shell菜单项目;\n(3).添加WinX菜单创建和排序功能;\n(4).添加IE右键菜单管理和创建功能;\n(5).添加管理和创建右键拖拽菜单项目功能;\n(6).添加了丰富的字典,添加了很多增强菜单;\n(7).整合文件类型管理功能,使管理更加方便;\n(8).添加状态栏实时显示文件路径功能;\n(9).优化程序部分UI,优化部分代码,解决一些已知Bug。

0 commit comments

Comments
 (0)