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

Commit

Permalink
3.5.5 Release
Browse files Browse the repository at this point in the history
This release also updates the native SciLexer.dll to v3.6.2.
  • Loading branch information
jacobslusser committed Dec 26, 2015
1 parent 74c8040 commit 5954c49
Show file tree
Hide file tree
Showing 17 changed files with 16 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/ScintillaNET.Signed.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>jacobslusser.ScintillaNET.Signed</id>
<version>3.5.4</version>
<version>3.5.5</version>
<title>ScintillaNET Source Editing Component - Signed</title>
<authors>Jacob Slusser</authors>
<owners>Jacob Slusser</owners>
Expand All @@ -11,7 +11,7 @@
<description>A Windows Forms control, wrapper, and bindings for the Scintilla text editor.</description>
<releaseNotes>Please visit https://github.com/jacobslusser/ScintillaNET/releases to view the release notes.</releaseNotes>
<summary>Everything you need to use Scintilla in your Windows Forms project.</summary>
<copyright>Copyright (c) 2015, Jacob Slusser. All rights reserved.</copyright>
<copyright>Copyright (c) 2016, Jacob Slusser. All rights reserved.</copyright>
<language>en-US</language>
<tags>ScintillaNET Scintilla Editor</tags>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions src/ScintillaNET.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>jacobslusser.ScintillaNET</id>
<version>3.5.4</version>
<version>3.5.5</version>
<title>ScintillaNET Source Editing Component</title>
<authors>Jacob Slusser</authors>
<owners>Jacob Slusser</owners>
Expand All @@ -11,7 +11,7 @@
<description>A Windows Forms control, wrapper, and bindings for the Scintilla text editor.</description>
<releaseNotes>Please visit https://github.com/jacobslusser/ScintillaNET/releases to view the release notes.</releaseNotes>
<summary>Everything you need to use Scintilla in your Windows Forms project.</summary>
<copyright>Copyright (c) 2015, Jacob Slusser. All rights reserved.</copyright>
<copyright>Copyright (c) 2016, Jacob Slusser. All rights reserved.</copyright>
<language>en-US</language>
<tags>ScintillaNET Scintilla Editor</tags>
</metadata>
Expand Down
1 change: 1 addition & 0 deletions src/ScintillaNET/NativeMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1059,6 +1059,7 @@ internal static class NativeMethods
public const int SCWS_INVISIBLE = 0;
public const int SCWS_VISIBLEALWAYS = 1;
public const int SCWS_VISIBLEAFTERINDENT = 2;
public const int SCWS_VISIBLEONLYININDENT = 3;

// Window messages
public const int WM_CREATE = 0x0001;
Expand Down
8 changes: 4 additions & 4 deletions src/ScintillaNET/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Jacob Slusser")]
[assembly: AssemblyProduct("ScintillaNET")]
[assembly: AssemblyCopyright("Copyright (c) 2015, Jacob Slusser. All rights reserved.")]
[assembly: AssemblyCopyright("Copyright (c) 2016, Jacob Slusser. All rights reserved.")]
[assembly: AssemblyTrademark("The MIT License (MIT)")]
[assembly: AssemblyCulture("")]

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

#if (DEBUG)
Expand Down
5 changes: 5 additions & 0 deletions src/ScintillaNET/WhitespaceMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,10 @@ public enum WhitespaceMode
/// it is shown as dots and arrows.
/// </summary>
VisibleAfterIndent = NativeMethods.SCWS_VISIBLEAFTERINDENT,

/// <summary>
/// Whitespace used for indentation is displayed as dots and arrows.
/// </summary>
VisibleOnlyIndent = NativeMethods.SCWS_VISIBLEONLYININDENT
}
}
Binary file modified src/ScintillaNET/x64/SciLexer.dll
Binary file not shown.
Binary file modified src/ScintillaNET/x64/SciLexer.dll.gz
Binary file not shown.
Binary file modified src/ScintillaNET/x64/SciLexer.exp
Binary file not shown.
Binary file modified src/ScintillaNET/x64/SciLexer.lib
Binary file not shown.
Binary file modified src/ScintillaNET/x64/SciLexer.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/ScintillaNET/x64/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
361
362
Binary file modified src/ScintillaNET/x86/SciLexer.dll
Binary file not shown.
Binary file modified src/ScintillaNET/x86/SciLexer.dll.gz
Binary file not shown.
Binary file modified src/ScintillaNET/x86/SciLexer.exp
Binary file not shown.
Binary file modified src/ScintillaNET/x86/SciLexer.lib
Binary file not shown.
Binary file modified src/ScintillaNET/x86/SciLexer.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/ScintillaNET/x86/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
361
362

0 comments on commit 5954c49

Please sign in to comment.