Skip to content

Commit

Permalink
Version 5.5: see #108
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Dec 7, 2019
1 parent 9107dc5 commit 214d0a1
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Codist/Commands/VersionInfoBar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public bool ShowAfterUpdate() {
new InfoBarTextSpan(nameof(Codist) + " has been updated to " + Config.CurrentVersion + ". "),
new InfoBarHyperlink("Click to see what's new", "New"),
new InfoBarTextSpan(" or "),
new InfoBarHyperlink("dismiss this bar", "Close")
new InfoBarHyperlink("dismiss this notification", "Close")
},
KnownMonikers.StatusInformation));
}
Expand Down
2 changes: 1 addition & 1 deletion Codist/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Codist
{
sealed class Config
{
internal const string CurrentVersion = "5.4";
internal const string CurrentVersion = "5.5";
const string ThemePrefix = "res:";
const int DefaultIconSize = 20;
internal const string LightTheme = ThemePrefix + "Light", DarkTheme = ThemePrefix + "Dark", SimpleTheme = ThemePrefix + "Simple";
Expand Down
1 change: 1 addition & 0 deletions Codist/Options/ConfigPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ protected override void OnDeactivate(CancelEventArgs e) {

protected override void Dispose(bool disposing) {
Control?.Dispose();
_DisabledNotice?.Dispose();
base.Dispose(disposing);
}

Expand Down
30 changes: 15 additions & 15 deletions Codist/Options/SyntaxStyleOptionPage.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Codist/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?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="5.4.0.5001" Language="en-US" Publisher="WMJ" />
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="5.5.0.5144" Language="en-US" Publisher="WMJ" />
<DisplayName>Codist</DisplayName>
<Description xml:space="preserve">A productivity enhancer for C# programmers with advanced syntax highlight, Super Quick Info (code tooltip), Smart Bar (contextual toolbar), Navigation Bar, code structure markers on scrollbar, comment tagger, and more.</Description>
<MoreInfo>https://github.com/wmjordan/Codist</MoreInfo>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Check out this list to see what _Codist_ can do for you?
* The font size of type and member declarations can be enlarged, font families are also changeable, so it is much easier to spot them.
* Syntax highlight can be applied to braces and parentheses.
* Various syntax identifiers have different styles, temporary elements such as method parameters and local variables are italic, `static` symbols are underlined.
* Comment content can be tagged (e.g. _note_).
* Comment content can be tagged (e.g. _note_) and highlighted with individual style.
* Unnecessary code can be marked strike-through.
* Keywords are categorized and highlighted with various styles (e.g. `abstract` and `sealed`, `return` and `throw`, etc.).
* Overriding members (such as `ToString`) can be painted with gradient background color, so at a glance we know that the marked implementations have overrided their base classes.
Expand Down

0 comments on commit 214d0a1

Please sign in to comment.