Skip to content

Commit 25dce15

Browse files
committed
Version 7.1
1 parent 7162800 commit 25dce15

File tree

6 files changed

+7
-11
lines changed

6 files changed

+7
-11
lines changed

Codist/Commands/CommandRegistry.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@ public static CommandID GetID(this Command command) {
1414
}
1515

1616
public static void Register(this Command command, EventHandler commandHandler, EventHandler queryStatusHandler = null) {
17-
var cmd = new OleMenuCommand(commandHandler, command.GetID());
18-
if (queryStatusHandler != null) {
19-
cmd.BeforeQueryStatus += queryStatusHandler;
20-
}
21-
CodistPackage.MenuService.AddCommand(cmd);
17+
CodistPackage.MenuService.AddCommand(new OleMenuCommand(commandHandler, null, queryStatusHandler, command.GetID()));
2218
}
2319
}
2420

Codist/Config.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Codist
1616
{
1717
sealed class Config
1818
{
19-
internal const string CurrentVersion = "7.0.0";
19+
internal const string CurrentVersion = "7.1.0";
2020
const string ThemePrefix = "res:";
2121
const int DefaultIconSize = 20;
2222
internal const string LightTheme = ThemePrefix + "Light",

Codist/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
[assembly: AssemblyConfiguration("")]
88
[assembly: AssemblyCompany("WMJ")]
99
[assembly: AssemblyProduct(nameof(Codist))]
10-
[assembly: AssemblyCopyright("Copyright WMJ, 2022")]
10+
[assembly: AssemblyCopyright("Copyright WMJ, 2023")]
1111
[assembly: AssemblyTrademark(nameof(Codist))]
1212
[assembly: ComVisible(false)]
13-
[assembly: AssemblyVersion("7.0.0.0")]
14-
[assembly: AssemblyFileVersion(Codist.Config.CurrentVersion + ".8000")]
13+
[assembly: AssemblyVersion("7.1.0.0")]
14+
[assembly: AssemblyFileVersion(Codist.Config.CurrentVersion + ".8100")]
1515
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]

Codist/source.extension.vsixmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="7.0.0.7989" Language="en-US" Publisher="WMJ" />
4+
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="7.1.0.8139" Language="en-US" Publisher="WMJ" />
55
<DisplayName>Codist</DisplayName>
66
<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>
77
<MoreInfo>https://github.com/wmjordan/Codist</MoreInfo>
88
<License>license.txt</License>
99
<ReleaseNotes>https://github.com/wmjordan/Codist/releases</ReleaseNotes>
1010
<Icon>icon.png</Icon>
1111
<PreviewImage>preview.png</PreviewImage>
12-
<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>
12+
<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>
1313
</Metadata>
1414
<Installation>
1515
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Pro">
9.24 KB
Loading

doc/preview.png

-606 Bytes
Loading

0 commit comments

Comments
 (0)