diff options
| -rw-r--r-- | doc/ScintillaHistory.html | 107 | ||||
| -rw-r--r-- | doc/index.html | 2 | 
2 files changed, 107 insertions, 2 deletions
| diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index c70f6f903..4a7e27554 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -430,7 +430,112 @@  	<li>  	Released 31 August 2012.  	</li> -    </h3> +	<li> +	Retina display support for Cocoa. Text size fixed. +	Scale factor for images implemented so they can be displayed in high definition. +	</li> +	<li> +	Implement INDIC_SQUIGGLEPIXMAP as a faster version of INDIC_SQUIGGLE. +	Avoid poor drawing at right of INDIC_SQUIGGLE. +	Align INDIC_DOTBOX to pixel grid for full intensity. +	</li> +	<li> +	Implement SCI_GETSELECTIONEMPTY API. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3543121&group_id=2439">Bug #3543121.</a> +	</li> +	<li> +	Added SCI_VCHOMEDISPLAY and SCI_VCHOMEDISPLAYEXTEND key commands. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3561433&group_id=2439">Feature #3561433.</a> +	</li> +	<li> +	Allow specifying SciTE Find in Files directory with find.in.directory property. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3558594&group_id=2439">Feature #3558594.</a> +	</li> +	<li> +	Override SciTE global strip.trailing.spaces with strip.trailing.spaces by pattern files. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3556320&group_id=2439">Feature #3556320.</a> +	</li> +	<li> +	Fix long XML script tag handling in XML lexer. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3534190&group_id=2439">Bug #3534190.</a> +	</li> +	<li> +	Fix rectangular selection range after backspace. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3543097&group_id=2439">Bug #3543097.</a> +	</li> +	<li> +	Send SCN_UPDATEUI with SC_UPDATE_SELECTION for backspace in virtual space. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3543121&group_id=2439">Bug #3543121.</a> +	</li> +	<li> +	Avoid problems when calltip highlight range is negative. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3545938&group_id=2439">Bug #3545938.</a> +	</li> +	<li> +	On Cocoa, fix image drawing code so that image is not accessed after being freed +	and is drawn in the correct location. +	</li> +	<li> +	On Cocoa, limit horizontal touch scrolling to existing established width. +	</li> +	<li> +	On Cocoa, decrease sensitivity of pinch-zoom. +	</li> +	<li> +	Fix Cocoa drawing where style changes were not immediately visible. +	</li> +	<li> +	Fix Cocoa memory leak due to reference cycle. +	</li> +	<li> +	Fix Cocoa bug where notifications were sent after Scintilla was freed. +	</li> +	<li> +	SciTE on OS X user shortcuts treats "Ctrl+D" as equivalent to "Ctrl+d". +	</li> +	<li> +	On Windows, saving SciTE's Lua startup script causes it to run. +	</li> +	<li> +	Limit time allowed to highlight current word in SciTE to 0.25 seconds to remain responsive. +	</li> +	<li> +	Fixed SciTE read-only mode to stick with buffer. +	</li> +	<li> +	For SciTE on Windows, enable Ctrl+Z, Ctrl+X, and Ctrl+C (Undo, Cut, and Copy) in the +	editable fields of find and replace strips +	</li> +	<li> +	Remove limit on logical line length in SciTE .properties files. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3544312&group_id=2439">Bug #3544312.</a> +	</li> +	<li> +	Improve performance of SciTE Save As command. +	</li> +	<li> +	Fix SciTE crash with empty .properties files. Bug #3545938. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3555308&group_id=2439">Bug #3555308.</a> +	</li> +	<li> +	Fix repeated letter in SciTE calltips. +	<a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3545938&group_id=2439">Bug #3545938.</a> +	</li> +	<li> +	Refine build time checking for Direct2D and DirectWrite. +	</li> +	<li> +	Avoid potential build problems on Windows with MultiMon.h by explicitly checking for multi-monitor APIs. +	</li> +	<li> +	Automatically disable themed drawing in SciTE when building on Windows 2000. +	Reenable building for Windows NT 4 on NT 4 . +	</li> +	<li> +	Added ncurses platform definitions. Implementation is maintained separately as +	<a href="http://foicica.com/scinterm/">Scinterm</a>. +	</li> +    </ul>      <h3>         <a href="http://prdownloads.sourceforge.net/scintilla/scite321.zip?download">Release 3.2.1</a>      </h3> diff --git a/doc/index.html b/doc/index.html index 7d39636d3..4a77a33df 100644 --- a/doc/index.html +++ b/doc/index.html @@ -71,7 +71,7 @@        </tr>      </table>      <ul id="versionlist"> -      <li>Version 3.2.2.</li> +      <li>Version 3.2.2 supports retina displays on Cocoa.</li>        <li>Version 3.2.1 adds some minor features and fixes bugs.</li>        <li>Version 3.2.0 adds support for the Qt platform and PySide Python bindings.</li>        <li>Version 3.1.0 adds an animated find indicator on Cocoa.</li> | 
