aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2025-06-08Updated release date.rel-5-5-7Neil2-3/+3
2025-06-03Updates for version 5.5.7.Neil3-10/+10
2025-06-01Add SCI_SCROLLVERTICAL API.Neil2-0/+24
2025-05-29Minor validity fixes.Neil1-3/+3
2025-05-28Bug [#2481]. Refresh pixmaps later inside Paint so non-null when dereferenced inNeil1-0/+4
for validity check.
2025-05-16Feature [feature-requests:#1488]. Update IME cursor position inside retrievejohnsonj1-0/+4
surrounding to better position candidate window.
2025-05-16Fix wrapping bug for UTF-8 where \r\n could wrap between the characters.Neil1-0/+4
https://github.com/notepad-plus-plus/notepad-plus-plus/pull/16373
2025-05-12Add SCI_AUTOC{G,S}ETIMAGESCALE and implement for Qt and GTK.orbitalquark2-0/+16
2025-05-11Feature [feature-requests:#1476]. Fix IME delete surrounding when tentativejohnsonj1-0/+4
composition active.
2025-05-05Bug [#2416]. Reset vertical scroll bar synchronously in SCI_SETDOCPOINTER to fixNeil Hodgson1-0/+5
bug where scroll position not restored in non-wrap mode.
2025-04-27Added a table for virtual space options.Neil1-1/+30
2025-04-23Fix inaccuracy in description of margin 2 which hasn't defaulted to showingNeil1-3/+3
folding symbols for many years.
2025-04-23Added link to video on writing a lexer and using wxStyledTextCtrl.Neil1-0/+2
2025-04-18Control restoring vertical scroll position for undo withNeil2-0/+12
SC_UNDO_SELECTION_HISTORY_SCROLL flag to SCI_SETUNDOSELECTIONHISTORY.
2025-04-17Tweak SC_MARK_BAR to be slightly wider.Neil1-0/+11
2025-03-30Bug [#2468]. Update documentation of which notifications use each field.rel-5-5-6Neil1-6/+9
2025-03-29Updates for version 5.5.6.Neil3-10/+10
2025-03-29Add note for change set 9715.Neil1-0/+3
2025-03-29Bug [#2469]. Return enumeration type from MarkerSymbolDefined to matchNeil1-0/+4
MarkerDefine.
2025-03-29Feature [feature-requests:#1550]. Document shape limitation for EOL annotations.Neil1-1/+3
2025-03-27Optimize case-insensitive DBCS search to be around 5 times faster by using 64KNeil1-0/+4
memory to cache folding data for each DBCS code page used.
2025-03-25Feature [feature-requests:#1546]. Fix building for ARM64 on Win32.Ahmet Sait1-0/+6
2025-03-24Add canonical self links to help Google crawler.Neil1-0/+1
2025-03-20Bug [#2465]. Signal autoCompleteSelection converts from local encoding when not8day1-0/+5
in Unicode mode.
2025-03-18Use DirectWrite for autocompletion lists when DirectWrite chosen for documentNeil1-0/+3
text.
2025-03-13Add values to character set table and style name (column 1) like other tables.Neil1-24/+47
2025-03-08Bug [#2466]. Avoid dwell start when mouse moved outside the Scintilla widget.Gianluca Vaccari1-0/+5
2025-02-25Bug [#2463]. Disallow case changes if the range contains protected textJoachim Mairboeck1-0/+5
2025-02-27Bug [#2464]. On Qt, draw clipped UTF-8 text correctly.Neil1-0/+12
2025-02-22Updates for version 5.5.5.Neil3-10/+10
2025-02-14For wrapping, try to break lines without separating letters from modifiers.Neil1-0/+1
There are still problems for languages like Javanese but it will improve most cases. Unicode proposal to improve line breaking: https://www.unicode.org/L2/L2022/22080r2-line-break-ortho-bnd.pdf
2025-02-12Document SC_TECHNOLOGY_DIRECT_WRITE_1 and reformat technology choice as a table.Neil1-10/+49
2025-02-12Implement Direct2D/DirectWrite 1.1. Add SC_TECHNOLOGY_DIRECT_WRITE_1 to use anNeil1-0/+6
explicit swap chain and ID2D1DeviceContext. Stop supporting DirectWrite on Windows Vista.
2025-02-06Bug [#2460]. Workaround incorrect scaling of "reverse arrow" cursor under ↵Jiří Techet1-0/+4
Windows and HiDPI screens The GDK_RIGHT_PTR cursor is provided only by GTK - there's no native Windows cursor of this shape so GTK renders the cursor by itself from the cursor theme bitmap. The code doing this is apparently buggy and does not take into account HiDPI screens so on a screen with 300% scaling, the cursor is 3x smaller. Workaround this by using GDK_HAND2 which maps to a native Windows cursor that doesn't suffer from this problem. See https://sourceforge.net/p/scintilla/bugs/2460/
2025-02-05Feature [feature-requests:#1543] Add "Releases" anchor to navigate to Releases.Neil1-1/+2
2025-02-04Fix segmentation of long lexemes to avoid breaking before modifiers like accentsNeil1-0/+3
that must be drawn with their base letters. This is only a subset of implementing grapheme cluster boundaries but it improves behaviour with some Asian scripts like Thai and Javanese. Javanese is mostly written with (ASCII) Roman characters so issues will be rare but Thai uses Thai script. Also slightly improves placement of combining accents in European texts. https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14822 https://github.com/notepad-plus-plus/notepad-plus-plus/issues/16115
2025-02-01Serialize selection type and ranges with SCI_GETSELECTIONSERIALIZED andNeil2-1/+14
SCI_SETSELECTIONSERIALIZED.
2025-01-26Bug [#1539]. Fix some incorrect tags.Zufu Liu1-2/+2
2025-01-25Bug [#1224]. Use enum for undo selection history and make API names moreNeil2-7/+28
consistent as 'undo selection' instead of 'selection undo' as more closely associated with undo than selection.
2025-01-22Bug [#1224]. Remember selection in undo history. SCI_SETSELECTIONUNDOHISTORY.Neil2-0/+16
2025-01-05Feature [feature-requests:#1539]. Fix documentation structure.Zufu Liu1-1/+1
2025-01-04Fix bug where double-click stopped working after running for weeks.Neil1-0/+11
2024-12-15Updates for version 5.5.4.rel-5-5-4Neil3-10/+10
2024-11-24Bug [#2457]. Fix moving line down to empty final line and moving empty finalpawelzwronek1-0/+4
line up. Handle edge cases when moving selected lines. Allow moving the selection when the end line of the document is empty or when moving up the last empty line.
2024-12-01Feature [feature-requests:#1535]. Improve performance of DBCS text by avoidingZufu Liu1-0/+4
calling LineStartPosition.
2024-11-25Bug [#2456]. Fix wrapping removed lines.Pawel Z Wronek1-0/+6
2024-11-20Bug [#2454]. Add "NUL-terminated" qualifiers to APIs that NUL-terminate result.Neil1-4/+4
2024-11-17Feature [feature-requests:#1533]. Improve performance of SCI_BRACEMATCH by onlyZufu Liu1-0/+4
retrieving style for braces. Approximately 25% improvement on tested system.
2024-10-26Documented SC_MOD_CHANGEEOLANNOTATION and updated SC_MODEVENTMASKALL.Neil1-2/+12
2024-10-26On GTK, allow middle click to insert multiple times within a document.Colomban Wendling1-0/+4
https://github.com/geany/geany/issues/2629