summaryrefslogtreecommitdiffstats
path: root/scintilla/doc
diff options
context:
space:
mode:
Diffstat (limited to 'scintilla/doc')
-rw-r--r--scintilla/doc/ScintillaDoc.html4
-rw-r--r--scintilla/doc/ScintillaDownload.html10
-rw-r--r--scintilla/doc/ScintillaHistory.html70
-rw-r--r--scintilla/doc/index.html7
4 files changed, 81 insertions, 10 deletions
diff --git a/scintilla/doc/ScintillaDoc.html b/scintilla/doc/ScintillaDoc.html
index da63297..3a51cfb 100644
--- a/scintilla/doc/ScintillaDoc.html
+++ b/scintilla/doc/ScintillaDoc.html
@@ -587,14 +587,14 @@ struct Sci_TextRange {
};
</pre>
- <h3 id="EncodedAccess">Specific to GTK+ and Cocoa only: Access to encoded text</h3>
+ <h3 id="EncodedAccess">Specific to GTK+, Cocoa and Windows only: Access to encoded text</h3>
<p><b id="SCI_TARGETASUTF8">SCI_TARGETASUTF8(&lt;unused&gt;, char *s)</b><br />
This method retrieves the value of the target encoded as UTF-8 which is the default
encoding of GTK+ so is useful for retrieving text for use in other parts of the user interface,
such as find and replace dialogs. The length of the encoded text in bytes is returned.
Cocoa uses UTF-16 which is easily converted from UTF-8 so this method can be used to perform the
- more complex work of transcoding from the various of encodings supported.
+ more complex work of transcoding from the various encodings supported.
</p>
<p><b id="SCI_ENCODEDFROMUTF8">SCI_ENCODEDFROMUTF8(const char *utf8, char *encoded)</b><br />
diff --git a/scintilla/doc/ScintillaDownload.html b/scintilla/doc/ScintillaDownload.html
index cca92c8..48b88dc 100644
--- a/scintilla/doc/ScintillaDownload.html
+++ b/scintilla/doc/ScintillaDownload.html
@@ -25,9 +25,9 @@
<table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0">
<tr>
<td>
- <font size="4"> <a href="http://prdownloads.sourceforge.net/scintilla/scintilla355.zip?download">
+ <font size="4"> <a href="http://prdownloads.sourceforge.net/scintilla/scintilla356.zip?download">
Windows</a>&nbsp;&nbsp;
- <a href="http://prdownloads.sourceforge.net/scintilla/scintilla355.tgz?download">
+ <a href="http://prdownloads.sourceforge.net/scintilla/scintilla356.tgz?download">
GTK+/Linux</a>&nbsp;&nbsp;
</font>
</td>
@@ -41,7 +41,7 @@
containing very few restrictions.
</p>
<h3>
- Release 3.5.5
+ Release 3.5.6
</h3>
<h4>
Source Code
@@ -49,8 +49,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="http://prdownloads.sourceforge.net/scintilla/scintilla355.zip?download">zip format</a> (1450K) commonly used on Windows</li>
- <li><a href="http://prdownloads.sourceforge.net/scintilla/scintilla355.tgz?download">tgz format</a> (1300K) commonly used on Linux and compatible operating systems</li>
+ <li><a href="http://prdownloads.sourceforge.net/scintilla/scintilla356.zip?download">zip format</a> (1450K) commonly used on Windows</li>
+ <li><a href="http://prdownloads.sourceforge.net/scintilla/scintilla356.tgz?download">tgz format</a> (1300K) commonly used on Linux and compatible operating systems</li>
</ul>
Instructions for building on both Windows and Linux are included in the readme file.
<h4>
diff --git a/scintilla/doc/ScintillaHistory.html b/scintilla/doc/ScintillaHistory.html
index 413a23a..87bf61d 100644
--- a/scintilla/doc/ScintillaHistory.html
+++ b/scintilla/doc/ScintillaHistory.html
@@ -469,6 +469,9 @@
<td>Mika Attila</td>
<td>JoMazM</td>
<td>Markus Moser</td>
+ <td>Stefan Küng</td>
+ </tr><tr>
+ <td>Jiří Techet</td>
</tr>
</table>
<p>
@@ -481,6 +484,73 @@
</li>
</ul>
<h3>
+ <a href="http://prdownloads.sourceforge.net/scintilla/scite356.zip?download">Release 3.5.6</a>
+ </h3>
+ <ul>
+ <li>
+ Released 26 May 2015.
+ </li>
+ <li>
+ On Qt, use fractional positioning calls and avoid rounding to ensure consistency.
+ </li>
+ <li>
+ SCI_TARGETASUTF8 and SCI_ENCODEDFROMUTF8 implemented on
+ Win32 as well as GTK+ and Cocoa.
+ </li>
+ <li>
+ C++ lexer fixes empty backquoted string.
+ <a href="http://sourceforge.net/p/scintilla/bugs/1711/">Bug #1711</a>.
+ </li>
+ <li>
+ C++ lexer fixes #undef directive.
+ <a href="http://sourceforge.net/p/scintilla/bugs/1719/">Bug #1719</a>.
+ </li>
+ <li>
+ Fortran folder fixes handling of "selecttype" and "selectcase".
+ <a href="http://sourceforge.net/p/scintilla/bugs/1724/">Bug #1724</a>.
+ </li>
+ <li>
+ Verilog folder folds interface definitions.
+ </li>
+ <li>
+ VHDL folder folds units declarations and fixes a case insensitivity bug with not treating "IS" the same as "is".
+ </li>
+ <li>
+ Fix bug when drawing text margins in buffered mode which would use default
+ encoding instead of chosen encoding.
+ <a href="http://sourceforge.net/p/scintilla/bugs/1703/">Bug #1703</a>.
+ </li>
+ <li>
+ Fix bug with Korean Hanja conversions in DBCS encoding on Windows.
+ </li>
+ <li>
+ Fix for reading a UTF-16 file in SciTE where a non-BMP character is split over a read buffer boundary.
+ <a href="http://sourceforge.net/p/scintilla/bugs/1710/">Bug #1710</a>.
+ </li>
+ <li>
+ Fix bug on GTK+ 2.x for Windows where there was an ABI difference between
+ compiler version.
+ <a href="http://sourceforge.net/p/scintilla/bugs/1726/">Bug #1726</a>.
+ </li>
+ <li>
+ Fix undo bug on Cocoa that could lose data..
+ </li>
+ <li>
+ Fix link error on Windows when SCI_NAMESPACE used.
+ </li>
+ <li>
+ Fix exporting from SciTE when using Scintillua for lexing.
+ </li>
+ <li>
+ SciTE does not report twice that a search string can not be found when "Replace" pressed.
+ <a href="http://sourceforge.net/p/scintilla/bugs/1716/">Bug #1716</a>.
+ </li>
+ <li>
+ SciTE on GTK+ 3.x disables arrow in search combo when no entries.
+ <a href="http://sourceforge.net/p/scintilla/bugs/1717/">Bug #1717</a>.
+ </li>
+ </ul>
+ <h3>
<a href="http://prdownloads.sourceforge.net/scintilla/scite355.zip?download">Release 3.5.5</a>
</h3>
<ul>
diff --git a/scintilla/doc/index.html b/scintilla/doc/index.html
index 23b652b..45a1e3c 100644
--- a/scintilla/doc/index.html
+++ b/scintilla/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="20150417" />
+ <meta name="Date.Modified" content="20150526" />
<style type="text/css">
#versionlist {
margin: 0;
@@ -55,8 +55,8 @@
GTK+, and OS X</font>
</td>
<td width="40%" align="right">
- <font color="#FFCC99" size="3"> Release version 3.5.5<br />
- Site last modified April 17 2015</font>
+ <font color="#FFCC99" size="3"> Release version 3.5.6<br />
+ Site last modified May 26 2015</font>
</td>
<td width="20%">
&nbsp;
@@ -71,6 +71,7 @@
</tr>
</table>
<ul id="versionlist">
+ <li>Version 3.5.6 fixes a bug with undo on Cocoa that could lose data.</li>
<li>Version 3.5.5 improves IME on Qt and fixes minor bugs.</li>
<li>Version 3.5.4 improves indicators to be able to change appearance on mouse-over and to use a wide variety of colours together.</li>
<li>Version 3.5.3 removes support for Windows 95, 98, and ME.</li>