diff --git a/Codist/Config.cs b/Codist/Config.cs index cb5ba4ab..3ca0a5dd 100644 --- a/Codist/Config.cs +++ b/Codist/Config.cs @@ -16,7 +16,7 @@ namespace Codist { sealed class Config { - internal const string CurrentVersion = "5.11.0"; + internal const string CurrentVersion = "5.12.0"; const string ThemePrefix = "res:"; const int DefaultIconSize = 20; internal const string LightTheme = ThemePrefix + "Light", PaleLightTheme = ThemePrefix + "PaleLight", DarkTheme = ThemePrefix + "Dark", SimpleTheme = ThemePrefix + "Simple"; @@ -693,7 +693,8 @@ public enum SymbolToolTipOptions XmlDocSummary = 1, NumericValues = 1 << 1, Attributes = 1 << 2, - Default = XmlDocSummary | NumericValues | Attributes + Colors = 1 << 3, + Default = XmlDocSummary | NumericValues | Attributes | Colors } [Flags] diff --git a/Codist/Properties/AssemblyInfo.cs b/Codist/Properties/AssemblyInfo.cs index 56467c34..07765cdd 100644 --- a/Codist/Properties/AssemblyInfo.cs +++ b/Codist/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyTrademark(nameof(Codist))] [assembly: ComVisible(false)] [assembly: AssemblyVersion("5.0.0.0")] -[assembly: AssemblyFileVersion("5.11.0.6400")] +[assembly: AssemblyFileVersion("5.12.0.6600")] [assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] \ No newline at end of file diff --git a/Codist/Taggers/TaggerResult.cs b/Codist/Taggers/TaggerResult.cs index 418ce5b4..faf37edb 100644 --- a/Codist/Taggers/TaggerResult.cs +++ b/Codist/Taggers/TaggerResult.cs @@ -67,7 +67,7 @@ public TaggedContentSpan Add(TaggedContentSpan tag) { public void PurgeOutdatedTags(TextContentChangedEventArgs args) { Debug.WriteLine($"snapshot version: {args.AfterVersion.VersionNumber}"); foreach (var change in args.Changes) { - Debug.WriteLine($"change:{change.OldPosition}->{change.NewPosition}"); + Debug.WriteLine($"change: {change.OldPosition}->{change.NewPosition}"); var tags = _Tags; for (int i = tags.Count - 1; i >= 0; i--) { var t = tags[i]; diff --git a/Codist/source.extension.vsixmanifest b/Codist/source.extension.vsixmanifest index be1d4092..940f9b60 100644 --- a/Codist/source.extension.vsixmanifest +++ b/Codist/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + Codist A productivity booster for C# programmers which enhances syntax highlighting, quick info (tooltip), navigation bar, scrollbar, display quality and brings smart tool bar to code editor. https://github.com/wmjordan/Codist