aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaHistory.html
AgeCommit message (Collapse)AuthorFilesLines
2023-02-04Updates for version 5.3.3.Neil1-1/+1
2023-01-27Feature [feature-requests:#1476] Add support for surrounding text in GTK ↵Colomban Wendling1-0/+4
input methods Add support for retrieving and deleting surrounding text from input methods on GTK.
2023-01-28Change log.Neil1-1/+2
2023-01-25When an autocompletion list is shown in response to SCN_CHARADDED, do notMitchell Foral1-0/+4
process character as fill-up or stop. This avoids closing immediately when a character may both trigger and finish autocompletion.
2023-01-17Bug [#2375]. On Win32, fix scrolling speed to not be too fast.Enrico Tröger1-0/+5
2023-01-17Fix SCI_VERTICALCENTRECARET to update the vertical scroll position.Mitchell Foral1-0/+3
2023-01-17Allow scrolling with mouse wheel when scroll bar hidden.Mitchell Foral1-0/+3
2023-01-14Bug [#2373]. Fix indicator drawing past left of text pane over margin.John Ehresman1-0/+4
2023-01-14Bug [#2374]. Fix character input bug where dotless 'i' and some other extendedNeil Hodgson1-0/+7
Latin characters could not be entered. The change also stops SCI_ASSIGNCMDKEY from working with these characters.
2023-01-10Bug [#2372]. Fix SCI_LINESJOIN bug where carriage returns were incorrectlyZufu Liu1-0/+4
retained.
2023-01-10Add 5.3.3.Neil1-0/+8
2022-12-02Updates for version 5.3.2.rel-5-3-2Neil1-1/+1
2022-12-01Change release compilation optimization option to favour speed over space.Mitchell Foral1-0/+4
-O2 for MSVC and -O3 for gcc and clang. Change code in Editor.cxx to avoid a warning that occurs with gcc -O3.
2022-12-01On Qt, allow string form XPM images for SCI_REGISTERIMAGE.Mitchell Foral1-0/+3
2022-11-28Bug [#2363]. Change 'paragraph up' commands SCI_PARAUP and SCI_PARAUPEXTEND toMichael Heath1-0/+8
go to the start position of the paragraph containing the caret. Only if the caret is already at the start of the paragraph will it go to the start of the previous paragraph.
2022-11-26Bug [#2344]. Avoid blurry display with DirectWrite in GDI scaling mode.Markus Nißl1-0/+4
https://sourceforge.net/p/scintilla/code/merge-requests/28/
2022-11-22Add SCI_REPLACETARGETMINIMAL to change text without causing unchanged prefix andNeil1-0/+4
suffix to be marked as modified in change history.
2022-10-29On Qt, implement SCI_SETRECTANGULARSELECTIONMODIFIER for all platforms.dail88591-0/+3
2022-10-29Bug [#2344]. Use the top-level window to find the monitor for DirectWriteMarkus Nißl1-0/+5
rendering parameters. Temporarily switch DPI awareness to find correct monitor in GDI scaling mode. https://sourceforge.net/p/scintilla/code/merge-requests/34/
2022-10-28Standardize and fix issue links.Neil1-6/+6
2022-10-20Feature [feature-requests:#1459] Send SCN_AUTOCCOMPLETED for SCI_AUTOCSHOWNeil1-0/+5
triggering insertion because of SCI_AUTOCSETCHOOSESINGLE mode.
2022-10-19Feature [feature-requests:#1455] Implement GetStyledTextFull as a 64-bit safeNeil1-0/+5
version of GetStyledText.
2022-10-19Draw background colour for EOL annotations with standard and boxed visuals.Neil1-0/+11
2022-10-09Updates for 5.3.1 release.rel-5-3-1Neil1-1/+1
2022-10-09Bug [#2358]. Suppress change history background line shading when printing.Neil1-0/+4
2022-10-04Bug [#2349]. Fix bug where there were too many or too few lines when wrapping.Neil Hodgson1-0/+4
2022-10-04Feature [feature-requests:#1453] Added SCI_STYLESETINVISIBLEREPRESENTATION toFerdinand Oeinck1-0/+6
make it easier to edit around invisible text. This also allows representing long lexemes with a single character to provide a summarized view.
2022-10-01Draw SC_MARK_BAR markers underneath other markers as they often cover multipleNeil1-0/+4
lines for change history and other markers mark individual lines.
2022-09-30Bug [#2357]. Make SCI_LINESCROLL more accurate when width of space not integer.Zufu Liu1-0/+4
2022-09-29Feature [feature-requests:#749] Implement horizontal scrolling with Shift +Zufu Liu1-0/+5
mouse wheel. Also feature [feature-requests:#1451].
2022-09-29Ensure page and step clicks on horizontal scroll bar do not overshoot ↵Neil1-0/+3
document width.
2022-09-25Enlarge point and point top indicators and scale to be larger with larger text.Neil1-0/+3
2022-09-25Draw lines more consistently in SC_PHASES_TWO and SC_PHASES_ONE modes byNeil1-0/+6
clipping drawing to just the line rectangle.
2022-09-21Feature [feature-requests:#1450] Implement horizontal scrolling mouse wheelMarkus Nißl1-0/+4
through WM_MOUSEHWHEEL.
2022-09-12Remove NotifyLexerChanged notification from DocWatcher.Neil1-0/+13
This is a private interface but could be used by independent platform layers and was exposed by ScintillaDocument in the Qt implementation of ScintillaEdit.
2022-09-02Add PixelAlignCeil and call PixelAlign* to avoid repeated code.Markus Nißl1-0/+2
2022-08-24Fix typo.Neil1-1/+1
2022-08-24Updates for 5.3.0 release.Neil1-1/+1
2022-07-30Bug [#2340] Add option to contract every level for SCI_FOLDALL calledZufu Liu1-0/+5
SC_FOLDACTION_CONTRACT_EVERY_LEVEL. Avoid processing lines multiple times.
2022-08-01Change log for previous two changes.Neil1-0/+4
2022-08-01Improve drawing of rounded rectangles with Direct2D.Neil1-0/+3
Treat case where outline and fill are same colour as single fill call for more uniform appearance. In thin rectangles, shift to semi-circular ends when no room for full rounded corners. Use different radius for fill and stroke for more uniform appearance.
2022-07-31Add SC_MARK_BAR marker and INDIC_POINT_TOP indicator which are useful for changeNeil1-0/+10
history. Tweak size of INDIC_POINT and INDIC_POINTCHARACTER. Let translucency of INDIC_COMPOSITIONTHICK be adjusted.
2022-07-31Added change history which can display document changes (modified, saved, ...)Neil1-1/+5
in the margin or in the text.
2022-07-22Bug [#2341] Stop including STYLE_CALLTIP when calculating line height.Markus Nißl1-0/+5
2022-07-22Bug [#2335] Fix incorrect display of selection when printing in some modes.Neil1-0/+4
2022-07-18Bug [#2338] Enable multiline regex for gcc and clang when REGEX_MULTILINE ↵Jacky Yang1-0/+6
defined. This requires gcc 11.3 or clang 14.
2022-07-17Feature [feature-requests:#1441] Line state optimized to avoid excess ↵Zufu Liu1-0/+14
allocations by always allocating for every line.
2022-07-06Updates for 5.2.4 release.rel-5-2-4Neil1-1/+1
2022-07-05Fix failures with non-UTF-8 text when multi-threading. The Converter object onNeil Hodgson1-0/+4
SurfaceImpl uses g_iconv and could be called from multiple threads without synchronization leading to occasional errors and potentially out-of-bounds writes.
2022-06-17Fix crash printing on Win32 in bidirectional mode with a non-empty selection.Neil1-0/+3