From 873275bb9210df6cb1142b932965c5f17c242879 Mon Sep 17 00:00:00 2001
From: WMJ <wmj@live.cn>
Date: Sat, 24 Jul 2021 10:35:47 +0800
Subject: [PATCH] Version 5.12

---
 Codist/Config.cs                     | 5 +++--
 Codist/Properties/AssemblyInfo.cs    | 2 +-
 Codist/Taggers/TaggerResult.cs       | 2 +-
 Codist/source.extension.vsixmanifest | 2 +-
 4 files changed, 6 insertions(+), 5 deletions(-)

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 @@
 <?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.11.0.6411" Language="en-US" Publisher="WMJ" />
+    <Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="5.12.0.6604" Language="en-US" Publisher="WMJ" />
     <DisplayName>Codist</DisplayName>
     <Description xml:space="preserve">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.</Description>
     <MoreInfo>https://github.com/wmjordan/Codist</MoreInfo>