Release 5.5.6 (https://www.scintilla.org/scintilla556.zip)
Released 2 April 2025.
* Disallow changing case of protected text. Bug #2463.
* Return enumeration type from MarkerSymbolDefined to match MarkerDefine. Bug #2469.
* On Win32, use DirectWrite for autocompletion lists when DirectWrite chosen for document text.
* On Win32, optimize case-insensitive DBCS search to be around 5 times faster by using 64K memory to cache folding data for each DBCS code page used.
* On Win32, fix a crash with bidirectional text.
* When using Visual C++ through nmake, fix building for ARM64. Feature #1546.
* On Qt, draw clipped UTF-8 text correctly. Bug #2464.
* On Qt, avoid a dwell start when the mouse is moved outside the Scintilla widget. Bug #2466.
* On Qt, autoCompleteSelection converts from local encoding when not in Unicode mode. Bug #2465.
Release 5.4.4 (https://www.scintilla.org/lexilla544.zip)
Released 2 April 2025.
* Fix building for ARM64. Pull request #308.
Close#16373
Before, a missing npcNoInputC0 config.xml entry caused the feature to incorrectly reset to false/no (the default for any missing config.xml boolean setting) during the first launch of the Notepad++.
Fix#16326, fix#15839, fix#15729, close#16338
Make right-click message handler x-margin calculation right.
Previously, the incorrectly used unsigned variable (size_t) overflowed with negative numbers due to incorrect calculation of margin size.x (where possible horizontal scrolling was not taken into account...).
Fix#16325, close#16332
Fix plugin button hidings settings being ignored bug in toolbar button config,
if the value of "hideAll" attribute of "Standard" node in "toolbarButtonsConf.xml" is set to "yes".
Fix#16280, close#16285
Release 5.5.5 (https://www.scintilla.org/scintilla555.zip)
Released 25 February 2025.
Remember selection with undo and redo. Controlled with SCI_SETUNDOSELECTIONHISTORY. Feature #1273, Bug #1479, Bug #1224.
Serialize selection type and ranges with SCI_GETSELECTIONSERIALIZED and SCI_SETSELECTIONSERIALIZED.
For Win32, update Direct2D and DirectWrite interfaces used to 1.1 and add a lower-level approach to calling DirectWrite 1.1 by specifying SC_TECHNOLOGY_DIRECT_WRITE_1. Since Windows Vista does not support these API versions, Scintilla o longer supports DirectWrite on Windows Vista and will fall back to using GDI.
Fix segmentation of long lexemes to avoid breaking before modifiers like accents that must be drawn with their base letters. For wrapping, try to break lines without separating letters from modifiers.
For GTK on Windows, replace reverse arrow cursor with hand as reverse arrow was small in scaled modes. Bug #2460.
Fix bug on Qt where double-click stopped working when Scintilla instance had been running for weeks.
Release 5.4.3 (https://www.scintilla.org/lexilla543.zip)
Released 25 February 2025.
C++: Fix evaluation of != in preprocessor condition. Issue #299.
Modula-3: Allow digits in uppercase identifiers. Issue #297.
Pascal: Fix asm style extending past end. Issue #295.
Python: Fix detection of attributes and decorators. Issue #294, Pull request #302.
Ruby: Implement substyles for identifiers SCE_RB_IDENTIFIER.
Ruby: Recognize name as SCE_RB_DEFNAME in def when `::` used as well as `.`. Issue #300.
Close#16235