Skip to content
This repository was archived by the owner on Dec 22, 2023. It is now read-only.

Commit 5954c49

Browse files
committed
3.5.5 Release
This release also updates the native SciLexer.dll to v3.6.2.
1 parent 74c8040 commit 5954c49

17 files changed

+16
-10
lines changed

src/ScintillaNET.Signed.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>jacobslusser.ScintillaNET.Signed</id>
5-
<version>3.5.4</version>
5+
<version>3.5.5</version>
66
<title>ScintillaNET Source Editing Component - Signed</title>
77
<authors>Jacob Slusser</authors>
88
<owners>Jacob Slusser</owners>
@@ -11,7 +11,7 @@
1111
<description>A Windows Forms control, wrapper, and bindings for the Scintilla text editor.</description>
1212
<releaseNotes>Please visit https://github.com/jacobslusser/ScintillaNET/releases to view the release notes.</releaseNotes>
1313
<summary>Everything you need to use Scintilla in your Windows Forms project.</summary>
14-
<copyright>Copyright (c) 2015, Jacob Slusser. All rights reserved.</copyright>
14+
<copyright>Copyright (c) 2016, Jacob Slusser. All rights reserved.</copyright>
1515
<language>en-US</language>
1616
<tags>ScintillaNET Scintilla Editor</tags>
1717
</metadata>

src/ScintillaNET.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>jacobslusser.ScintillaNET</id>
5-
<version>3.5.4</version>
5+
<version>3.5.5</version>
66
<title>ScintillaNET Source Editing Component</title>
77
<authors>Jacob Slusser</authors>
88
<owners>Jacob Slusser</owners>
@@ -11,7 +11,7 @@
1111
<description>A Windows Forms control, wrapper, and bindings for the Scintilla text editor.</description>
1212
<releaseNotes>Please visit https://github.com/jacobslusser/ScintillaNET/releases to view the release notes.</releaseNotes>
1313
<summary>Everything you need to use Scintilla in your Windows Forms project.</summary>
14-
<copyright>Copyright (c) 2015, Jacob Slusser. All rights reserved.</copyright>
14+
<copyright>Copyright (c) 2016, Jacob Slusser. All rights reserved.</copyright>
1515
<language>en-US</language>
1616
<tags>ScintillaNET Scintilla Editor</tags>
1717
</metadata>

src/ScintillaNET/NativeMethods.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,6 +1059,7 @@ internal static class NativeMethods
10591059
public const int SCWS_INVISIBLE = 0;
10601060
public const int SCWS_VISIBLEALWAYS = 1;
10611061
public const int SCWS_VISIBLEAFTERINDENT = 2;
1062+
public const int SCWS_VISIBLEONLYININDENT = 3;
10621063

10631064
// Window messages
10641065
public const int WM_CREATE = 0x0001;

src/ScintillaNET/Properties/AssemblyInfo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[assembly: AssemblyConfiguration("")]
1313
[assembly: AssemblyCompany("Jacob Slusser")]
1414
[assembly: AssemblyProduct("ScintillaNET")]
15-
[assembly: AssemblyCopyright("Copyright (c) 2015, Jacob Slusser. All rights reserved.")]
15+
[assembly: AssemblyCopyright("Copyright (c) 2016, Jacob Slusser. All rights reserved.")]
1616
[assembly: AssemblyTrademark("The MIT License (MIT)")]
1717
[assembly: AssemblyCulture("")]
1818

@@ -35,9 +35,9 @@
3535
// You can specify all the values or you can default the Build and Revision Numbers
3636
// by using the '*' as shown below:
3737
// [assembly: AssemblyVersion("1.0.*")]
38-
[assembly: AssemblyVersion("3.5.4.0")]
39-
[assembly: AssemblyFileVersion("3.5.4.0")]
40-
[assembly: AssemblyInformationalVersion("3.5.4")]
38+
[assembly: AssemblyVersion("3.5.5.0")]
39+
[assembly: AssemblyFileVersion("3.5.5.0")]
40+
[assembly: AssemblyInformationalVersion("3.5.5")]
4141
[assembly: NeutralResourcesLanguageAttribute("en-US")]
4242

4343
#if (DEBUG)

src/ScintillaNET/WhitespaceMode.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,10 @@ public enum WhitespaceMode
2525
/// it is shown as dots and arrows.
2626
/// </summary>
2727
VisibleAfterIndent = NativeMethods.SCWS_VISIBLEAFTERINDENT,
28+
29+
/// <summary>
30+
/// Whitespace used for indentation is displayed as dots and arrows.
31+
/// </summary>
32+
VisibleOnlyIndent = NativeMethods.SCWS_VISIBLEONLYININDENT
2833
}
2934
}

src/ScintillaNET/x64/SciLexer.dll

0 Bytes
Binary file not shown.

src/ScintillaNET/x64/SciLexer.dll.gz

105 Bytes
Binary file not shown.

src/ScintillaNET/x64/SciLexer.exp

0 Bytes
Binary file not shown.

src/ScintillaNET/x64/SciLexer.lib

0 Bytes
Binary file not shown.

src/ScintillaNET/x64/SciLexer.pdb

8 KB
Binary file not shown.

0 commit comments

Comments
 (0)