Skip to content

Commit

Permalink
更新3.0版本
Browse files Browse the repository at this point in the history
  • Loading branch information
BluePointLilac committed Feb 21, 2021
1 parent e4b6e85 commit ab4a2d9
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions ContextMenuManager/AppConfig.cs
@@ -1,9 +1,9 @@
using System;
using BluePointLilac.Methods;
using System;
using System.Globalization;
using System.IO;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using BluePointLilac.Methods;

namespace ContextMenuManager
{
Expand Down
2 changes: 1 addition & 1 deletion ContextMenuManager/AppImage.cs
Expand Up @@ -60,7 +60,7 @@ public static class AppImage
///<summary>资源管理器图标</summary>
public static readonly Image Explorer = ResourceIcon.GetIcon("explorer.exe", 0).ToBitmap();
///<summary>命令提示符图标</summary>
public static readonly Image Cmd= ResourceIcon.GetIcon("cmd.exe", 0).ToBitmap();
public static readonly Image Cmd = ResourceIcon.GetIcon("cmd.exe", 0).ToBitmap();
///<summary>重启Explorer图标</summary>
public static readonly Image RestartExplorer = ResourceIcon.GetIcon("shell32.dll", 238).ToBitmap();
///<summary>网络驱动器图标</summary>
Expand Down
@@ -1,6 +1,6 @@
using System.Drawing;
using BluePointLilac.Methods;
using System.Drawing;
using System.Windows.Forms;
using BluePointLilac.Methods;

namespace BluePointLilac.Controls
{
Expand Down
2 changes: 1 addition & 1 deletion ContextMenuManager/ContextMenuManager.csproj
Expand Up @@ -33,7 +33,7 @@
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<Optimize>true</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
Expand Down
2 changes: 1 addition & 1 deletion ContextMenuManager/Controls/GuidBlockedList.cs
Expand Up @@ -26,7 +26,7 @@ private void LoadBlockedItems()
});
Array.ForEach(values.Distinct(StringComparer.OrdinalIgnoreCase).ToArray(), value =>
{
this.AddItem(new GuidBlockedItem(value));
this.AddItem(new GuidBlockedItem(value));
});
}

Expand Down
2 changes: 1 addition & 1 deletion ContextMenuManager/Controls/SendToItem.cs
Expand Up @@ -117,7 +117,7 @@ public string IconLocation
if(IsShortcut)
{
location = Shortcut.IconLocation;
if(location==",0") location = Shortcut.TargetPath;
if(location == ",0") location = Shortcut.TargetPath;
}
else
{
Expand Down
3 changes: 2 additions & 1 deletion ContextMenuManager/Controls/WinXItem.cs
Expand Up @@ -132,7 +132,8 @@ private void InitializeComponents()
TsiChangeGroup.Click += (sender, e) => ChangeGroup();
BtnMoveDown.MouseDown += (sender, e) => MoveItem(false);
BtnMoveUp.MouseDown += (sender, e) => MoveItem(true);
TsiAdministrator.Click += (sender, e) => {
TsiAdministrator.Click += (sender, e) =>
{
WinXList.HashLnk(this.FilePath);
ExplorerRestarter.Show();
};
Expand Down
6 changes: 3 additions & 3 deletions Update.ini
@@ -1,4 +1,4 @@
[Update]
Version=2.2.0.0
Url=https://github.com/BluePointLilac/ContextMenuManager/releases/download/2.2.0.0/ContextMenuManager.zip
Info=【更新描述】\n(1).支持定义所有格式文件的右键菜单;\n(2).优化规则“使用 Skype 共享”,可永久禁用;\n(3).支持更改程序内网页搜索引擎;\n(4).添加设置文件格式感知类型功能;\n(5).扩充程序GUID字典,更友好!
Version=3.0.0.0
Url=https://github.com/BluePointLilac/ContextMenuManager/releases/download/3.0.0.0/ContextMenuManager.zip
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 comments on commit ab4a2d9

Please sign in to comment.