Skip to content

Commit

Permalink
Version 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Feb 15, 2023
1 parent 7162800 commit 25dce15
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 11 deletions.
6 changes: 1 addition & 5 deletions Codist/Commands/CommandRegistry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()));
}
}

Expand Down
2 changes: 1 addition & 1 deletion Codist/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions Codist/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
4 changes: 2 additions & 2 deletions Codist/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="7.0.0.7989" Language="en-US" Publisher="WMJ" />
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="7.1.0.8139" Language="en-US" Publisher="WMJ" />
<DisplayName>Codist</DisplayName>
<Description xml:space="preserve">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.</Description>
<MoreInfo>https://github.com/wmjordan/Codist</MoreInfo>
<License>license.txt</License>
<ReleaseNotes>https://github.com/wmjordan/Codist/releases</ReleaseNotes>
<Icon>icon.png</Icon>
<PreviewImage>preview.png</PreviewImage>
<Tags>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</Tags>
<Tags>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</Tags>
</Metadata>
<Installation>
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Pro">
Expand Down
Binary file modified doc/feature-brief-super-quick-info.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 25dce15

Please sign in to comment.