diff --git a/Codist/Commands/CommandRegistry.cs b/Codist/Commands/CommandRegistry.cs index a023f662..9d8ce1f2 100644 --- a/Codist/Commands/CommandRegistry.cs +++ b/Codist/Commands/CommandRegistry.cs @@ -14,11 +14,7 @@ public static CommandID GetID(this Command command) { } public static void Register(this Command command, EventHandler commandHandler, EventHandler queryStatusHandler = null) { - var cmd = new OleMenuCommand(commandHandler, command.GetID()); - if (queryStatusHandler != null) { - cmd.BeforeQueryStatus += queryStatusHandler; - } - CodistPackage.MenuService.AddCommand(cmd); + CodistPackage.MenuService.AddCommand(new OleMenuCommand(commandHandler, null, queryStatusHandler, command.GetID())); } } diff --git a/Codist/Config.cs b/Codist/Config.cs index 32903570..3656ccf7 100644 --- a/Codist/Config.cs +++ b/Codist/Config.cs @@ -16,7 +16,7 @@ namespace Codist { sealed class Config { - internal const string CurrentVersion = "7.0.0"; + internal const string CurrentVersion = "7.1.0"; const string ThemePrefix = "res:"; const int DefaultIconSize = 20; internal const string LightTheme = ThemePrefix + "Light", diff --git a/Codist/Properties/AssemblyInfo.cs b/Codist/Properties/AssemblyInfo.cs index d9ddb0f8..91982375 100644 --- a/Codist/Properties/AssemblyInfo.cs +++ b/Codist/Properties/AssemblyInfo.cs @@ -7,9 +7,9 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("WMJ")] [assembly: AssemblyProduct(nameof(Codist))] -[assembly: AssemblyCopyright("Copyright WMJ, 2022")] +[assembly: AssemblyCopyright("Copyright WMJ, 2023")] [assembly: AssemblyTrademark(nameof(Codist))] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.0.0.0")] -[assembly: AssemblyFileVersion(Codist.Config.CurrentVersion + ".8000")] +[assembly: AssemblyVersion("7.1.0.0")] +[assembly: AssemblyFileVersion(Codist.Config.CurrentVersion + ".8100")] [assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] \ No newline at end of file diff --git a/Codist/source.extension.vsixmanifest b/Codist/source.extension.vsixmanifest index 7afcaee8..64c7edd8 100644 --- a/Codist/source.extension.vsixmanifest +++ b/Codist/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + Codist A C# programmer's productivity booster which enhances syntax highlighting, quick info (tooltip), navigation bar, scrollbar, display quality, automatically updated version numbers, and brings smart tool bar to code editor. https://github.com/wmjordan/Codist @@ -9,7 +9,7 @@ https://github.com/wmjordan/Codist/releases icon.png preview.png - coding; programming; productivity; syntax highlight; quick info; reference analysis; code analysis; navigation; comment; tag; line number; scrollbar; line height; assembly version; C#; C; C++; html; markdown + coding; programming; productivity; syntax highlight; quick info; reference analysis; code analysis; navigation; comment; refactor; line number; scrollbar; build version number; C#; C; C++; html; markdown diff --git a/doc/feature-brief-super-quick-info.png b/doc/feature-brief-super-quick-info.png index 1c5ee5bf..878cfd45 100644 Binary files a/doc/feature-brief-super-quick-info.png and b/doc/feature-brief-super-quick-info.png differ diff --git a/doc/preview.png b/doc/preview.png index 8cc16449..014d7b48 100644 Binary files a/doc/preview.png and b/doc/preview.png differ