-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0eed6b
commit 1d9eb93
Showing
7 changed files
with
62 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<topic id="d671e91a-9945-4d1f-9d5c-6035037990d8" revisionNumber="1"> | ||
<developerConceptualDocument xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
<introduction> | ||
<para>Changes in this release</para> | ||
</introduction> | ||
|
||
<section> | ||
<content> | ||
|
||
<list class="bullet"> | ||
<listItem> | ||
<para>Added support for naming the solution configuration file ".vsspell".</para> | ||
</listItem> | ||
|
||
<listItem> | ||
<para>Updated the solution/project spell checker to ignore virtual documents related to the solution | ||
or project such as filter files in C++ projects when spell checking only open documents.</para> | ||
</listItem> | ||
|
||
<listItem> | ||
<para>Added "WebForms" as a recognized content type to the HTML text tagger.</para> | ||
</listItem> | ||
|
||
<listItem> | ||
<para>Ignored words are now checked for ahead of doubled word detection. This allows certain doubled | ||
words to be ignored if they are legitimate. The ability to add the doubled word to the ignored words file is | ||
also given as a fix in the smart tag options for doubled words.</para> | ||
</listItem> | ||
|
||
<listItem> | ||
<para>Added a check for a hyphen after a misspelled word to check the spelling with the hyphen | ||
included to see if it is okay and should not be flagged as misspelled.</para> | ||
</listItem> | ||
</list> | ||
|
||
</content> | ||
</section> | ||
|
||
<relatedTopics> | ||
<link xlink:href="548dc6d7-6d08-4006-82b3-d5830be96f04" /> | ||
</relatedTopics> | ||
|
||
</developerConceptualDocument> | ||
</topic> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Source/VSSpellChecker2022AndLater/source.extension.vsixmanifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
// System : Visual Studio Spell Checker | ||
// File : AssemblyInfoShared.cs | ||
// Author : Eric Woodruff ([email protected]) | ||
// Updated : 01/03/2022 | ||
// Updated : 09/06/2022 | ||
// Note : Copyright 2013-2022, Eric Woodruff, All rights reserved | ||
// | ||
// Visual Studio spell checker common assembly attributes | ||
|
@@ -82,13 +82,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 = "22.1.3.0"; | ||
public const string FileVersion = "22.9.6.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 = "2022.1.3.0"; | ||
public const string ProductVersion = "2022.9.6.0"; | ||
|
||
// Assembly copyright information | ||
public const string Copyright = "Copyright \xA9 2013-2022, Eric Woodruff, All Rights Reserved.\r\n" + | ||
|