From a1835a554c8dc13c62abd132deff8cd38208ae04 Mon Sep 17 00:00:00 2001 From: EWSoftware Date: Mon, 15 May 2023 13:06:30 -0700 Subject: [PATCH] Doc updates for release --- .../Content/VersionHistory/VersionHistory.aml | 6 +++ Docs/Content/VersionHistory/v2023.5.15.0.aml | 37 +++++++++++++++++++ Docs/ContentLayout.content | 7 +++- Docs/VSSpellCheckerDocs.shfbproj | 3 +- .../source.extension.vsixmanifest | 2 +- .../source.extension.vsixmanifest | 2 +- .../Properties/AssemblyInfoShared.cs | 6 +-- 7 files changed, 56 insertions(+), 7 deletions(-) create mode 100644 Docs/Content/VersionHistory/v2023.5.15.0.aml diff --git a/Docs/Content/VersionHistory/VersionHistory.aml b/Docs/Content/VersionHistory/VersionHistory.aml index d164d4c..fac43dd 100644 --- a/Docs/Content/VersionHistory/VersionHistory.aml +++ b/Docs/Content/VersionHistory/VersionHistory.aml @@ -9,6 +9,12 @@ project. Select a version below to see a description of its changes.
+ + + + + + diff --git a/Docs/Content/VersionHistory/v2023.5.15.0.aml b/Docs/Content/VersionHistory/v2023.5.15.0.aml new file mode 100644 index 0000000..d22ae84 --- /dev/null +++ b/Docs/Content/VersionHistory/v2023.5.15.0.aml @@ -0,0 +1,37 @@ + + + + + Changes made in this release: + + +
+ + + + Fixed incorrect path resolution for additional dictionary folders and the global ignored words +file. + + + + Set the ignore private identifiers, internal identifiers, compiler generated code, and member +body identifiers code analyzer options to true to limit spell checking to public and protected identifiers by +default. + + + + Reordered the configuration editor categories to list the general and code analyzer categories +first. + + + + + +
+ + + + + +
+
diff --git a/Docs/ContentLayout.content b/Docs/ContentLayout.content index ba39626..d5acc80 100644 --- a/Docs/ContentLayout.content +++ b/Docs/ContentLayout.content @@ -71,7 +71,7 @@ - + @@ -164,6 +164,11 @@ + + + + + diff --git a/Docs/VSSpellCheckerDocs.shfbproj b/Docs/VSSpellCheckerDocs.shfbproj index c2a4d5d..89575c7 100644 --- a/Docs/VSSpellCheckerDocs.shfbproj +++ b/Docs/VSSpellCheckerDocs.shfbproj @@ -65,7 +65,7 @@ - 2023.3.4.0 + 2023.5.15.0 0 ..\Source\ True @@ -220,6 +220,7 @@ + diff --git a/Source/VSSpellChecker2017And2019/source.extension.vsixmanifest b/Source/VSSpellChecker2017And2019/source.extension.vsixmanifest index b2b6d5f..2841ba0 100644 --- a/Source/VSSpellChecker2017And2019/source.extension.vsixmanifest +++ b/Source/VSSpellChecker2017And2019/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + Visual Studio Spell Checker (VS2017 and VS2019) An editor extension that checks the spelling of comments, strings, and plain text as you type or interactively with a tool window. It can also spell check an entire solution, project, or selected items. Options are available to define multiple languages to spell check against, define ignored words, control how elements and attributes in XML and MAML files are spell checked, and much more. https://ewsoftware.github.io/VSSpellChecker diff --git a/Source/VSSpellChecker2022AndLater/source.extension.vsixmanifest b/Source/VSSpellChecker2022AndLater/source.extension.vsixmanifest index 4a4adf8..8f5cdc5 100644 --- a/Source/VSSpellChecker2022AndLater/source.extension.vsixmanifest +++ b/Source/VSSpellChecker2022AndLater/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + Visual Studio Spell Checker (VS2022 and Later) An editor extension that checks the spelling of comments, strings, and plain text as you type or interactively with a tool window. It can also spell check an entire solution, project, or selected items. Options are available to define multiple languages to spell check against, define ignored words, control how elements and attributes in XML and MAML files are spell checked, and much more. https://ewsoftware.github.io/VSSpellChecker diff --git a/Source/VSSpellCheckerDefinitionsShared/Properties/AssemblyInfoShared.cs b/Source/VSSpellCheckerDefinitionsShared/Properties/AssemblyInfoShared.cs index 587002c..14e9ddb 100644 --- a/Source/VSSpellCheckerDefinitionsShared/Properties/AssemblyInfoShared.cs +++ b/Source/VSSpellCheckerDefinitionsShared/Properties/AssemblyInfoShared.cs @@ -2,7 +2,7 @@ // System : Visual Studio Spell Checker // File : AssemblyInfoShared.cs // Author : Eric Woodruff (Eric@EWoodruff.us) -// Updated : 05/08/2023 +// Updated : 05/15/2023 // Note : Copyright 2013-2023, Eric Woodruff, All rights reserved // // Visual Studio spell checker common assembly attributes @@ -75,13 +75,13 @@ internal static partial class AssemblyInfo // // This is used to set the assembly file version. This will change with each new release. MSIs only // support a Major value between 0 and 255 so we drop the century from the year on this one. - public const string FileVersion = "23.5.8.0"; + public const string FileVersion = "23.5.15.0"; // Common product version // // This may contain additional text to indicate Alpha or Beta states. The version number will always match // the file version above but includes the century on the year. - public const string ProductVersion = "2023.5.8.0"; + public const string ProductVersion = "2023.5.15.0"; // Assembly copyright information public const string Copyright = "Copyright \xA9 2013-2023, Eric Woodruff, All Rights Reserved.\r\n" +