diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ScintillaDoc.html | 16 | ||||
| -rw-r--r-- | doc/ScintillaDownload.html | 10 | ||||
| -rw-r--r-- | doc/ScintillaHistory.html | 62 | ||||
| -rw-r--r-- | doc/index.html | 11 |
4 files changed, 88 insertions, 11 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 0dfe986f4..3189a001a 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -482,6 +482,8 @@ *text)</a><br /> <a class="message" href="#SCI_SETREADONLY">SCI_SETREADONLY(bool readOnly)</a><br /> <a class="message" href="#SCI_GETREADONLY">SCI_GETREADONLY → bool</a><br /> + <a class="message" href="#SCI_GETDRAGDROPENABLED">SCI_GETDRAGDROPENABLED → bool</a><br /> + <a class="message" href="#SCI_SETDRAGDROPENABLED">SCI_SETDRAGDROPENABLED(bool dragDropEnabled)</a><br /> <a class="message" href="#SCI_GETTEXTRANGE">SCI_GETTEXTRANGE(<unused>, Sci_TextRange *tr) → position</a><br /> <a class="message" href="#SCI_GETTEXTRANGEFULL">SCI_GETTEXTRANGEFULL(<unused>, Sci_TextRangeFull *tr) → position</a><br /> <a class="message" href="#SCI_ALLOCATE">SCI_ALLOCATE(position bytes)</a><br /> @@ -568,6 +570,10 @@ only, attempts to modify the text cause the <a class="message" href="#SCN_MODIFYATTEMPTRO"><code>SCN_MODIFYATTEMPTRO</code></a> notification.</p> + <p><b id="SCI_GETDRAGDROPENABLED">SCI_GETDRAGDROPENABLED → bool</b><br /> + <b id="SCI_SETDRAGDROPENABLED">SCI_SETDRAGDROPENABLED(bool dragDropEnabled)</b><br /> + These messages get and set the flag controlling whether drag-and-drop is enabled or not.</p> + <p> <b id="SCI_GETTEXTRANGE">SCI_GETTEXTRANGE(<unused>, <a class="jump" href="#Sci_TextRange">Sci_TextRange</a> *tr) → position</b><br /> <b id="SCI_GETTEXTRANGEFULL">SCI_GETTEXTRANGEFULL(<unused>, <a class="jump" href="#Sci_TextRangeFull">Sci_TextRangeFull</a> *tr) → position</b><br /> @@ -2884,6 +2890,16 @@ struct Sci_TextToFindFull { <td>A horizontal line stretching until the tabstop.</td> </tr> + + <tr> + <th align="left"><code>SCTD_CONTROLCHAR</code></th> + + <td>2</td> + + <td>Will be drawn as a control code according to the configured + <a href="#CharacterRepresentations">character representation</a> + without any indentation.</td> + </tr> </tbody> </table> diff --git a/doc/ScintillaDownload.html b/doc/ScintillaDownload.html index 8d142b0ff..59ef4b721 100644 --- a/doc/ScintillaDownload.html +++ b/doc/ScintillaDownload.html @@ -26,9 +26,9 @@ <table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0"> <tr> <td> - <font size="4"> <a href="https://www.scintilla.org/scintilla557.zip"> + <font size="4"> <a href="https://www.scintilla.org/scintilla560.zip"> Windows</a> - <a href="https://www.scintilla.org/scintilla557.tgz"> + <a href="https://www.scintilla.org/scintilla560.tgz"> GTK/Linux</a> </font> </td> @@ -42,7 +42,7 @@ containing very few restrictions. </p> <h3> - Release 5.5.7 + Release 5.6.0 </h3> <h4> Source Code @@ -50,8 +50,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="https://www.scintilla.org/scintilla557.zip">zip format</a> (1.8M) commonly used on Windows</li> - <li><a href="https://www.scintilla.org/scintilla557.tgz">tgz format</a> (1.7M) commonly used on Linux and compatible operating systems</li> + <li><a href="https://www.scintilla.org/scintilla560.zip">zip format</a> (1.8M) commonly used on Windows</li> + <li><a href="https://www.scintilla.org/scintilla560.tgz">tgz format</a> (1.7M) 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/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index b63c9851d..26333e1be 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -591,15 +591,75 @@ </tr><tr> <td>Ahmet Sait</td> <td>Sven Ritter</td> + <td>Stefan Löffler</td> + <td>Nathaniel Braun</td> </tr> </table> <h2 id="Releases">Releases</h2> <h3> + <a href="https://www.scintilla.org/scintilla561.zip">Release 5.6.1</a> + </h3> + <ul> + <li> + Released 25 February 2026. + </li> + <li> + Add mode to draw tabs as [HT] blobs with SCI_SETTABDRAWMODE(SCTD_CONTROLCHAR). + </li> + </ul> + <h3> + <a href="https://www.scintilla.org/scintilla560.zip">Release 5.6.0</a> + </h3> + <ul> + <li> + Released 25 February 2026. + </li> + <li> + Fix crash when window is too narrow to show any text. + </li> + </ul> + <h3> + <a href="https://www.scintilla.org/scintilla559.zip">Release 5.5.9</a> + </h3> + <ul> + <li> + Released 25 February 2026. + </li> + <li> + Add option to disable drag/drop editing. + <a href="https://sourceforge.net/p/scintilla/feature-requests/184/">Feature #184</a>. + </li> + <li> + Allow Euro '€' in code page 936 for 0x80. + <a href="https://sourceforge.net/p/scintilla/feature-requests/1575/">Feature #1575</a>. + </li> + <li> + Fix SCI_SETSELECTIONNSTART and SCI_SETSELECTIONNEND to behave more sensibly. + <a href="https://sourceforge.net/p/scintilla/bugs/2488/">Bug #2488</a>. + </li> + <li> + Fix lexing after undo at end of document. + <a href="https://sourceforge.net/p/scintilla/bugs/2491/">Bug #2491</a>. + </li> + <li> + When a line end is not selected, change the colour of the rectangle that indicates the line end is selected + to white space background instead of previous character's background except for EOL filled style. + </li> + <li> + On Qt, add const to ScintillaDocument and ScintillaEdit methods. + <a href="https://sourceforge.net/p/scintilla/bugs/2494/">Bug #2494</a>. + </li> + <li> + On Qt, prevent crash when using ScintillaDocument object. + <a href="https://sourceforge.net/p/scintilla/bugs/2495/">Bug #2495</a>. + </li> + </ul> + <h3> <a href="https://www.scintilla.org/scintilla558.zip">Release 5.5.8</a> </h3> <ul> <li> - Released 8 June 2025. + Released 10 November 2025. </li> <li> Change format for SCI_GETSELECTIONSERIALIZED. diff --git a/doc/index.html b/doc/index.html index aed89ac40..69fe4a270 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="20250608" /> + <meta name="Date.Modified" content="20260225" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style type="text/css"> .logo { @@ -61,8 +61,8 @@ GTK, and macOS</font> </td> <td width="40%" align="right"> - <font color="#FFCC99" size="3"> Release version 5.5.7<br /> - Site last modified June 8 2025</font> + <font color="#FFCC99" size="3"> Release version 5.6.0<br /> + Site last modified February 25 2026</font> </td> <td width="20%"> @@ -77,11 +77,12 @@ </tr> </table> <ul id="versionlist"> + <li>Version 5.6.0 fixes crash when window is too narrow to show any text.</li> + <li>Version 5.5.9 adds an option to disable drag & drop. Fixes colour after line end.</li> + <li>Version 5.5.8 changes format of SCI_GETSELECTIONSERIALIZED and fixes redraw after undo.</li> <li>Version 5.5.7 can prevent storing scroll position in undo selection history and adds a wrap-aware SCI_SCROLLVERTICAL API.</li> <li>Version 5.5.6 improves DBCS and autocompletion drawing on Win32 and improves dwell, encoding and text clipping on Qt.</li> <li>Version 5.5.5 can remember selection with undo and redo. Update to use DirectWrite 1.1.</li> - <li>Version 5.5.4 fixes wrapping of removed lines and edge cases for moving lines. On GTK, middle click can be repeated with one value.</li> - <li>Version 5.5.3 fixes horizontal scrolling with a touchpad on Win32.</li> </ul> <ul id="menu"> <li id="remote1"><a href="https://www.scintilla.org/SciTEImage.html">Screenshot</a></li> |
