Skip to content

Commit 440debd

Browse files
committed
Release v2.0.1.0
- Improved Npp compatibility checking (Issue #64) Described: #64 (comment)
1 parent a081d18 commit 440debd

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

src/CSScriptIntellisense/Interop/NppExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ static bool IsNewNppApiVersion()
462462

463463
static string get_text_range(this IScintillaGateway document, int startPos, int endPos, int bufCapacity)
464464
{
465-
int[] version = IsNewNppApiVersion();
465+
bool newNppVersion = IsNewNppApiVersion();
466466

467467
if (Environment.GetEnvironmentVariable("CSSCRIPT_NPP_NEW_NPP_API") != null)
468468
newNppVersion = Environment.GetEnvironmentVariable("CSSCRIPT_NPP_NEW_NPP_API").ToLower() == "true";

src/CSScriptIntellisense/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// Build Number
3232
// Revision
3333
//
34-
[assembly: AssemblyVersion("2.0.0.0")]
35-
[assembly: AssemblyFileVersion("2.0.0.0")]
34+
[assembly: AssemblyVersion("2.0.1.0")]
35+
[assembly: AssemblyFileVersion("2.0.1.0")]

src/CSScriptNpp/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// Build Number
3333
// Revision
3434
//
35-
[assembly: AssemblyVersion("2.0.0.0")]
36-
[assembly: AssemblyFileVersion("2.0.0.0")]
35+
[assembly: AssemblyVersion("2.0.1.0")]
36+
[assembly: AssemblyFileVersion("2.0.1.0")]

src/CSScriptNpp/Resources/WhatsNew.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
Release v2.0.0.0
1+
Release v2.0.1.0
22
----
3+
v2.0.1.0
4+
- Improved Npp compatibility checking (Issue #64)
5+
Described: https://github.com/oleg-shilo/cs-script.npp/issues/64#issuecomment-1108448994
6+
7+
v2.0.0.0
38
This is the first release of the plugin purely targeting .NET 6 and higher.
49

510
New features and changes:

0 commit comments

Comments
 (0)