aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-06-23 14:49:46 +0000
committernyamatongwe <devnull@localhost>2000-06-23 14:49:46 +0000
commit8f37c08b14bfa193d07951227a8b04ef43c87f7b (patch)
treedf7f9d14397fedd3e253b949a742f714d7a1a1e8
parentd1e498b7db17dbe69c8982b7eddb37cb846cfa31 (diff)
downloadscintilla-mirror-8f37c08b14bfa193d07951227a8b04ef43c87f7b.tar.gz
Updated version number to 1.27.
-rw-r--r--doc/ScintillaDoc.html24
-rw-r--r--doc/ScintillaDownload.html6
-rw-r--r--doc/ScintillaHistory.html10
-rw-r--r--doc/index.html11
-rw-r--r--win32/ScintRes.rc8
5 files changed, 47 insertions, 12 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 4e4e94eef..39bdb2003 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -310,8 +310,9 @@ SCI_STYLESETCHARACTERSET(int stylenumber, int charset)
</p>
<p>
As well as the 32 fundamental lexer styles, there are also some predefined numbered styles
- starting at 32, STYLE_DEFAULT, STYLE_LINENUMBER, STYLE_BRACELIGHT, STYLE_BRACEBAD, and
- STYLE_CONTROLCHAR. These can be defined with the SCI_STYLESET* messages.
+ starting at 32, STYLE_DEFAULT, STYLE_LINENUMBER, STYLE_BRACELIGHT, STYLE_BRACEBAD,
+ STYLE_CONTROLCHAR, and STYLE_INDENTGUIDE.
+ These can be defined with the SCI_STYLESET* messages.
</p>
<pre>
SCI_SETFORE(int colour)
@@ -505,6 +506,25 @@ SCI_BRACEMATCH(int position, int maxReStyle)
maxReStyle parameter must currently be 0.
</p>
<h3>
+ Indentation Guides
+ </h3>
+<pre>
+SCI_SETINDENTATIONGUIDES(bool view)
+SCI_GETINDENTATIONGUIDES
+SCI_SETHIGHLIGHTGUIDE(int column)
+SCI_GETHIGHLIGHTGUIDE
+</pre>
+ <p>
+ Indentation guides are dotted vertical lines that appear within indentation whitespace
+ every indent size columns. They make it easy to see which constructs line up especially
+ when they extend over multiple pages. Style 37 is used to specify the foreground and
+ background colour of the indentation guides.
+ </p>
+ <p>
+ When brace highlighting occurs, the indentation guide corresponding to the braces may be
+ highlighted with the brace highlighting style, 34.
+ </p>
+ <h3>
Markers
</h3>
<pre>
diff --git a/doc/ScintillaDownload.html b/doc/ScintillaDownload.html
index 0a1158049..c5dc344e2 100644
--- a/doc/ScintillaDownload.html
+++ b/doc/ScintillaDownload.html
@@ -25,7 +25,7 @@
<table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0">
<tr>
<td>
- <font size="4"> <a href="scintilla126.zip">Windows</a>&nbsp;&nbsp; <a href="scintilla126.tgz">
+ <font size="4"> <a href="scintilla127.zip">Windows</a>&nbsp;&nbsp; <a href="scintilla127.tgz">
GTK+/Linux</a>&nbsp;&nbsp;</font>
</td>
</tr>
@@ -46,8 +46,8 @@
The source code package contains all of the source code for Scintilla but no binary
executable code and is available in
<ul>
- <li><a href="scintilla126.zip">zip format</a> (250K) commonly used on Windows</li>
- <li><a href="scintilla126.tgz">tgz format</a> (220K) commonly used on Linux and compatible operating systems</li>
+ <li><a href="scintilla127.zip">zip format</a> (250K) commonly used on Windows</li>
+ <li><a href="scintilla127.tgz">tgz format</a> (220K) commonly used on Linux and compatible operating systems</li>
</ul>
Instructions for building on both Windows and Linux are included in the readme file.
<p>
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index c8a067623..f1367943e 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -141,6 +141,16 @@
CodePage, UsePalette, ReadOnly, CaretFore, and ModEventMask.
</li>
<li>
+ Caret is continuously on rather than blinking while typing or holding down
+ delete or backspace. And is now always shown if non blinking when focused on GTK+.
+ </li>
+ <li>
+ Bug fixed in SciTE with file extension comparison now done in case insensitive way.
+ </li>
+ <li>
+ Bugs fixed in SciTE's file path handling on Windows.
+ </li>
+ <li>
Bug fixed with preprocessor '#' last visible character causing hang.
</li>
</ul>
diff --git a/doc/index.html b/doc/index.html
index 7a1b9fef9..86f896bc6 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -9,7 +9,7 @@
<meta name="keywords" content="Scintilla, SciTE, Editing Component, Text Editor" />
<meta name="Description"
content="www.scintilla.org is the home of the Scintilla editing component and SciTE text editor application." />
- <meta name="Date.Modified" content="20000613" />
+ <meta name="Date.Modified" content="20000623" />
<script>
function IsRemote() {
var loc = '' + window.location;
@@ -31,8 +31,8 @@
GTK+</font>
</td>
<td width="40%" align="right">
- <font color="#FFCC99" size="3"> Release version 1.26<br />
- Site last modified June 13 2000</font>
+ <font color="#FFCC99" size="3"> Release version 1.27<br />
+ Site last modified June 23 2000</font>
</td>
<td width="20%">
&nbsp;
@@ -86,6 +86,11 @@
handling multiple documents.</font>
</td>
</tr>
+ <tr>
+ <td width="100%">
+ <font color="#FFCC99" size="3"> Version 1.27 features indentation guides.</font>
+ </td>
+ </tr>
</table>
<table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0">
<tr>
diff --git a/win32/ScintRes.rc b/win32/ScintRes.rc
index fda7344a6..dec13cec9 100644
--- a/win32/ScintRes.rc
+++ b/win32/ScintRes.rc
@@ -9,8 +9,8 @@
#include "PlatformRes.h"
VS_VERSION_INFO VERSIONINFO
-FILEVERSION 1, 2, 6, 0
-PRODUCTVERSION 1, 2, 6, 0
+FILEVERSION 1, 2, 7, 0
+PRODUCTVERSION 1, 2, 7, 0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
@@ -27,12 +27,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Neil Hodgson neilh@scintilla.org\0"
VALUE "FileDescription", "Scintilla.DLL - a Source Editing Component\0"
- VALUE "FileVersion", "1.26\0"
+ VALUE "FileVersion", "1.27\0"
VALUE "InternalName", "Scintilla\0"
VALUE "LegalCopyright", "Copyright 1998-2000 by Neil Hodgson\0"
VALUE "OriginalFilename", "Scintilla.DLL\0"
VALUE "ProductName", "Scintilla\0"
- VALUE "ProductVersion", "1.26\0"
+ VALUE "ProductVersion", "1.27\0"
END
END
END