aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-02-01 21:55:58 +1100
committernyamatongwe <devnull@localhost>2011-02-01 21:55:58 +1100
commit08d4b480e016ad91c286bb81d21feb888bb67cd2 (patch)
tree1db9429d6b90002dffa13fe8dd79be6bc9b3629a
parent7830c5286b26d18cbf063fdd7708cd2a784fc5c1 (diff)
downloadscintilla-mirror-08d4b480e016ad91c286bb81d21feb888bb67cd2.tar.gz
Change log for 2.24.
-rw-r--r--doc/ScintillaHistory.html97
1 files changed, 97 insertions, 0 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index bdb248cba..04a362680 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -384,6 +384,103 @@
Released 2 February 2011.
</li>
<li>
+ Fixed memory leak in GTK+ Cairo code.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3157655&group_id=2439">Feature #3157655.</a>
+ </li>
+ <li>
+ Insert Abbreviation dialog added to SciTE on GTK+.
+ </li>
+ <li>
+ SCN_UPDATEUI notifications received when window scrolled. An 'updated' bit mask indicates which
+ types of update have occurred from SC_UPDATE_SELECTION, SC_UPDATE_CONTENT, SC_UPDATE_H_SCROLL
+ or SC_UPDATE_V_SCROLL.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3125977&group_id=2439">Feature #3125977.</a>
+ </li>
+ <li>
+ On Windows, to ensure reverse arrow cursor matches platform default, it is now generated by
+ reflecting the platform arrow cursor.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3143968&group_id=2439">Feature #3143968.</a>
+ </li>
+ <li>
+ Can choose mouse cursor used in margins.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3161326&group_id=2439">Feature #3161326.</a>
+ </li>
+ <li>
+ On GTK+, SciTE sets a mime type of text/plain in its .desktop file so that it will appear in the shell context menu.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3137126&group_id=2439">Feature #3137126.</a>
+ </li>
+ <li>
+ Bash folder handles here docs.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3118223&group_id=2439">Feature #3118223.</a>
+ </li>
+ <li>
+ C++ folder adds fold.cpp.syntax.based, fold.cpp.comment.multiline, fold.cpp.explicit.start, fold.cpp.explicit.end,
+ and fold.cpp.explicit.anywhere properties to allow more control over folding and choice of explicit fold markers.
+ </li>
+ <li>
+ C++ lexer fixed to always handle single quote strings continued past a line end.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3150522&group_id=2439">Bug #3150522.</a>
+ </li>
+ <li>
+ Ruby folder handles here docs.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3118224&group_id=2439">Feature #3118224.</a>
+ </li>
+ <li>
+ SQL lexer allows '.' to be part of words.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3103129&group_id=2439">Feature #3103129.</a>
+ </li>
+ <li>
+ SQL folder handles case statements in more situations.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3135027&group_id=2439">Feature #3135027.</a>
+ </li>
+ <li>
+ SQL folder adds fold points inside expressions based on bracket structure.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3165488&group_id=2439">Feature #3165488.</a>
+ </li>
+ <li>
+ SQL folder drops fold.sql.exists property as 'exists' is handled automatically.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3164194&group_id=2439">Bug #3164194.</a>
+ </li>
+ <li>
+ SciTE only forwards properties to lexers when they have been explicitly set so the defaults set by lexers are used
+ rather than 0.
+ </li>
+ <li>
+ Mouse double click word selection chooses the word around the character under the mouse rather than
+ the inter-character position under the mouse. This makes double clicking select what the user is pointing
+ at and avoids selecting adjacent non-word characters.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3111174&group_id=2439">Bug #3111174.</a>
+ </li>
+ <li>
+ Fixed mouse double click to always perform word select, not line select.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3143635&group_id=2439">Bug #3143635.</a>
+ </li>
+ <li>
+ Right click cancels autocompletion.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3144531&group_id=2439">Bug #3144531.</a>
+ </li>
+ <li>
+ Fixed multiPaste to work when additionalSelectionTyping off.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3126221&group_id=2439">Bug #3126221.</a>
+ </li>
+ <li>
+ Fixed virtual space problems when text modified at caret.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3154986&group_id=2439">Bug #3154986.</a>
+ </li>
+ <li>
+ Fixed memory leak in lexer object code.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3133672&group_id=2439">Bug #3133672.</a>
+ </li>
+ <li>
+ Fixed SciTE on GTK+ search failure when using regular expression.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3156217&group_id=2439">Bug #3156217.</a>
+ </li>
+ <li>
+ Avoid unnecessary full window redraw for SCI_GOTOPOS.
+ <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3146650&group_id=2439">Feature #3146650.</a>
+ </li>
+ <li>
+ Avoid unnecessary redraw when indicator fill range makes no real change.
</li>
</ul>
<h3>