更新3.3.2.0版本

This commit is contained in:
蓝点lilac
2021-06-13 00:08:40 +08:00
parent 823875a06f
commit 13f436924c
4 changed files with 6 additions and 7 deletions

View File

@@ -18,7 +18,7 @@ namespace BluePointLilac.Methods
this.Encoding = Encoding.UTF8;
//远程服务器返回错误: (403) 已禁止
//浏览器 F12 console 输入 console.log(navigator.userAgent); 获取 User Agent
this.Headers.Add("User-Agent",
this.Headers.Add("User-Agent",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) " +
"Chrome/90.0.4430.212 Safari/537.36 Edg/90.0.818.66");
}

View File

@@ -1,6 +1,5 @@
using BluePointLilac.Controls;
using BluePointLilac.Methods;
using System;
using System.Windows.Forms;
namespace ContextMenuManager.Controls.Interfaces

View File

@@ -216,7 +216,7 @@ namespace ContextMenuManager.Controls
{
dlg.IsReference = true;
dlg.ShellPath = ShellItem.CommandStorePath;
dlg.Filter = new Func<string, bool>(itemName => !(AppConfig.HideSysStoreItems
dlg.Filter = new Func<string, bool>(itemName => !(AppConfig.HideSysStoreItems
&& itemName.StartsWith("Windows.", StringComparison.OrdinalIgnoreCase)));
if(dlg.ShowDialog() != DialogResult.OK) return;
foreach(string keyName in dlg.SelectedKeyNames)

View File

@@ -18,10 +18,10 @@ namespace ContextMenuManager
this.Text = AppString.General.AppName;
this.ForeColor = Color.FromArgb(80, 80, 80);
this.Controls.Add(new ExplorerRestarter());
donateBox.Parent = aboutMeBox.Parent = dictionariesBox.Parent
= languagesBox.Parent = appSettingBox.Owner = shellList.Owner
= shellNewList.Owner = sendToList.Owner = openWithList.Owner
= winXList.Owner = guidBlockedList.Owner = enhanceMenusList.Owner
donateBox.Parent = aboutMeBox.Parent = dictionariesBox.Parent
= languagesBox.Parent = appSettingBox.Owner = shellList.Owner
= shellNewList.Owner = sendToList.Owner = openWithList.Owner
= winXList.Owner = guidBlockedList.Owner = enhanceMenusList.Owner
= thirdRuleList.Owner = iEList.Owner = MainBody;
ToolBar.SelectedButtonChanged += (sender, e) => SwitchTab(ToolBar.SelectedIndex);
SideBar.HoverIndexChanged += (sender, e) => ShowItemInfo();