diff options
author | Neil <nyamatongwe@gmail.com> | 2014-06-30 10:45:30 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-06-30 10:45:30 +1000 |
commit | 8150b2de47ed866988c8c4d381198d313fcccbbf (patch) | |
tree | baaadb93bcb731154ee374bd4cf0267f0dd81666 | |
parent | 6964d2a7f004e755b1e32f334597ca7408d2ce28 (diff) | |
download | scintilla-mirror-8150b2de47ed866988c8c4d381198d313fcccbbf.tar.gz |
Update change log.
-rw-r--r-- | doc/ScintillaHistory.html | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 5bc67f40c..ab42ecf1b 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -481,6 +481,16 @@ C++ lexer fixes raw string recognition so that R"xxx(blah)xxx" is styled as SCE_C_STRINGRAW. </li> <li> + The Postscript lexer no longer marks token edges with indicators as this used style byte indicators. + </li> + <li> + The Scriptol lexer no longer displays indicators for poor indentation as this used style byte indicators. + </li> + <li> + TCL lexer fixes names of keyword sets. + <a href="http://sourceforge.net/p/scintilla/bugs/1615/">Bug #1615</a>. + </li> + <li> Shell lexer fixes fold matching problem caused by "<<<". <a href="http://sourceforge.net/p/scintilla/bugs/1605/">Bug #1605</a>. </li> @@ -495,6 +505,26 @@ Fix crash on GTK+ with Ubuntu 12.04 and overlay scroll bars. </li> <li> + Avoid creating a Cairo context when measuring text on GTK+ as future versions of GTK+ + may prohibit calling gdk_cairo_create except inside drawing handlers. This prohibition may + be required on Wayland. + </li> + <li> + On Cocoa, the registerNotifyCallback method is now marked as deprecated so client code that + uses it will display an error message. + Client code should use the delegate mechanism or subclassing instead. + The method will be removed in the next version. + </li> + <li> + On Cocoa, package Scintilla more in compliance with platform conventions. + Only publish public headers in the framework headers directory. + Only define the Scintilla namespace in Scintilla.h when compiling as C++. + Use the Cocoa NS_ENUM and NS_OPTIONS macros for exposed enumerations. + Hide internal methods from public headers. + These changes are aimed towards publishing Scintilla as a module which will allow it to + be used from the Swift programming language, although more changes will be needed here. + </li> + <li> Fix crash in SciTE when stream comment performed at line end. <a href="http://sourceforge.net/p/scintilla/bugs/1610/">Bug #1610</a>. </li> @@ -503,7 +533,7 @@ <a href="http://sourceforge.net/p/scintilla/bugs/156/">Bug #156</a>. </li> <li> - For SciTE on GTK+ fix bug wih initialisation of toggle buttons in find and replace strips. + For SciTE on GTK+ fix bug with initialisation of toggle buttons in find and replace strips. <a href="http://sourceforge.net/p/scintilla/bugs/1612/">Bug #1612</a>. </li> </ul> |