-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Prevented setting of the NHunspell native DLL folder if another package already has it loaded. Fixes #189. - Updated documentation for publication.
- Loading branch information
1 parent
f705417
commit c59ffa0
Showing
10 changed files
with
80 additions
and
28 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,29 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<topic id="94c633b4-5924-4a67-8e82-a0e731d6daaa" 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> | ||
|
||
<!-- Ignore Spelling: Resharper --> | ||
<section> | ||
<content> | ||
|
||
<list class="bullet"> | ||
<listItem> | ||
<para>Prevented the package from setting the Hunspell native DLL path if it has already been set by | ||
another package such as Resharper which also uses NHunspell. This prevents odd behavior when using the Visual | ||
Studio tool window spell checking option in this package.</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
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,8 +2,8 @@ | |
// System : Visual Studio Spell Checker | ||
// File : AssemblyInfoShared.cs | ||
// Author : Eric Woodruff ([email protected]) | ||
// Updated : 12/29/2022 | ||
// Note : Copyright 2013-2022, Eric Woodruff, All rights reserved | ||
// Updated : 03/04/2023 | ||
// Note : Copyright 2013-2023, Eric Woodruff, All rights reserved | ||
// | ||
// Visual Studio spell checker common assembly attributes | ||
// | ||
|
@@ -82,15 +82,15 @@ 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.12.29.0"; | ||
public const string FileVersion = "23.3.4.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.12.29.0"; | ||
public const string ProductVersion = "2023.3.4.0"; | ||
|
||
// Assembly copyright information | ||
public const string Copyright = "Copyright \xA9 2013-2022, Eric Woodruff, All Rights Reserved.\r\n" + | ||
"Portions Copyright \xA9 2010-2022, Microsoft Corporation, All Rights Reserved."; | ||
public const string Copyright = "Copyright \xA9 2013-2023, Eric Woodruff, All Rights Reserved.\r\n" + | ||
"Portions Copyright \xA9 2010-2023, Microsoft Corporation, All Rights Reserved."; | ||
} |
Oops, something went wrong.