diff options
author | Neil <nyamatongwe@gmail.com> | 2017-08-11 10:05:07 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-08-11 10:05:07 +1000 |
commit | 8fd93df6b3985d1513be64cd859fbdee123651ce (patch) | |
tree | 0dc83a61525610e995593d05342de83f151bd2e2 | |
parent | e2ae51a181ce6894f56866fea1d115339b2dc4f6 (diff) | |
download | scintilla-mirror-8fd93df6b3985d1513be64cd859fbdee123651ce.tar.gz |
Include more of the 4.0.0 changes.
-rw-r--r-- | doc/ScintillaHistory.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index b006b9b00..6a16898b3 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -530,12 +530,34 @@ Released 15 August 2017. </li> <li> + This is an unstable release with changes to interfaces used for lexers and platform access. + Some more changes may occur to internal and external interfaces before stability is regained with 4.1.0. + </li> + <li> Uses C++14 features. Requires Microsoft Visual C++ 2017, GCC 7, and Clang 4.0 or newer. </li> <li> Support dropped for GTK+ versions before 2.24. </li> <li> + The lexer interfaces ILexer and ILexerWithSubStyles, along with additional style metadata methods, were merged into ILexer4. + Most lexers will need to be updated to match the new interfaces. + </li> + <li> + The IDocumentWithLineEnd interface was merged into IDocument. + </li> + <li> + The platform layer interface has changed with unused methods removed, a new mechanism for + reporting events, removal of methods that take individual keyboard modifiers, and removal of old timer methods. + </li> + <li> + <a href="StyleMetadata.html">Style metadata</a> may be retrieved from lexers that support this through the SCI_GETNAMEDSTYLES, SCI_NAMEOFSTYLE, + SCI_TAGSOFSTYLE, and SCI_DESCRIPTIONOFSTYLE APIs. + </li> + <li> + The Cocoa platform layer uses Automatic Reference Counting (ARC). + </li> + <li> The default encoding in Scintilla is UTF-8. </li> <li> |