| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2022-12-02 | Updates for version 5.3.2.rel-5-3-2 | Neil | 1 | -1/+1 | |
| 2022-12-01 | Change release compilation optimization option to favour speed over space. | Mitchell Foral | 1 | -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-01 | On Qt, allow string form XPM images for SCI_REGISTERIMAGE. | Mitchell Foral | 1 | -0/+3 | |
| 2022-11-28 | Bug [#2363]. Change 'paragraph up' commands SCI_PARAUP and SCI_PARAUPEXTEND to | Michael Heath | 1 | -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-26 | Bug [#2344]. Avoid blurry display with DirectWrite in GDI scaling mode. | Markus Nißl | 1 | -0/+4 | |
| https://sourceforge.net/p/scintilla/code/merge-requests/28/ | |||||
| 2022-11-22 | Add SCI_REPLACETARGETMINIMAL to change text without causing unchanged prefix and | Neil | 1 | -0/+4 | |
| suffix to be marked as modified in change history. | |||||
| 2022-10-29 | On Qt, implement SCI_SETRECTANGULARSELECTIONMODIFIER for all platforms. | dail8859 | 1 | -0/+3 | |
| 2022-10-29 | Bug [#2344]. Use the top-level window to find the monitor for DirectWrite | Markus Nißl | 1 | -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-28 | Standardize and fix issue links. | Neil | 1 | -6/+6 | |
| 2022-10-20 | Feature [feature-requests:#1459] Send SCN_AUTOCCOMPLETED for SCI_AUTOCSHOW | Neil | 1 | -0/+5 | |
| triggering insertion because of SCI_AUTOCSETCHOOSESINGLE mode. | |||||
| 2022-10-19 | Feature [feature-requests:#1455] Implement GetStyledTextFull as a 64-bit safe | Neil | 1 | -0/+5 | |
| version of GetStyledText. | |||||
| 2022-10-19 | Draw background colour for EOL annotations with standard and boxed visuals. | Neil | 1 | -0/+11 | |
| 2022-10-09 | Updates for 5.3.1 release.rel-5-3-1 | Neil | 1 | -1/+1 | |
| 2022-10-09 | Bug [#2358]. Suppress change history background line shading when printing. | Neil | 1 | -0/+4 | |
| 2022-10-04 | Bug [#2349]. Fix bug where there were too many or too few lines when wrapping. | Neil Hodgson | 1 | -0/+4 | |
| 2022-10-04 | Feature [feature-requests:#1453] Added SCI_STYLESETINVISIBLEREPRESENTATION to | Ferdinand Oeinck | 1 | -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-01 | Draw SC_MARK_BAR markers underneath other markers as they often cover multiple | Neil | 1 | -0/+4 | |
| lines for change history and other markers mark individual lines. | |||||
| 2022-09-30 | Bug [#2357]. Make SCI_LINESCROLL more accurate when width of space not integer. | Zufu Liu | 1 | -0/+4 | |
| 2022-09-29 | Feature [feature-requests:#749] Implement horizontal scrolling with Shift + | Zufu Liu | 1 | -0/+5 | |
| mouse wheel. Also feature [feature-requests:#1451]. | |||||
| 2022-09-29 | Ensure page and step clicks on horizontal scroll bar do not overshoot ↵ | Neil | 1 | -0/+3 | |
| document width. | |||||
| 2022-09-25 | Enlarge point and point top indicators and scale to be larger with larger text. | Neil | 1 | -0/+3 | |
| 2022-09-25 | Draw lines more consistently in SC_PHASES_TWO and SC_PHASES_ONE modes by | Neil | 1 | -0/+6 | |
| clipping drawing to just the line rectangle. | |||||
| 2022-09-21 | Feature [feature-requests:#1450] Implement horizontal scrolling mouse wheel | Markus Nißl | 1 | -0/+4 | |
| through WM_MOUSEHWHEEL. | |||||
| 2022-09-12 | Remove NotifyLexerChanged notification from DocWatcher. | Neil | 1 | -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-02 | Add PixelAlignCeil and call PixelAlign* to avoid repeated code. | Markus Nißl | 1 | -0/+2 | |
| 2022-08-24 | Fix typo. | Neil | 1 | -1/+1 | |
| 2022-08-24 | Updates for 5.3.0 release. | Neil | 1 | -1/+1 | |
| 2022-07-30 | Bug [#2340] Add option to contract every level for SCI_FOLDALL called | Zufu Liu | 1 | -0/+5 | |
| SC_FOLDACTION_CONTRACT_EVERY_LEVEL. Avoid processing lines multiple times. | |||||
| 2022-08-01 | Change log for previous two changes. | Neil | 1 | -0/+4 | |
| 2022-08-01 | Improve drawing of rounded rectangles with Direct2D. | Neil | 1 | -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-31 | Add SC_MARK_BAR marker and INDIC_POINT_TOP indicator which are useful for change | Neil | 1 | -0/+10 | |
| history. Tweak size of INDIC_POINT and INDIC_POINTCHARACTER. Let translucency of INDIC_COMPOSITIONTHICK be adjusted. | |||||
| 2022-07-31 | Added change history which can display document changes (modified, saved, ...) | Neil | 1 | -1/+5 | |
| in the margin or in the text. | |||||
| 2022-07-22 | Bug [#2341] Stop including STYLE_CALLTIP when calculating line height. | Markus Nißl | 1 | -0/+5 | |
| 2022-07-22 | Bug [#2335] Fix incorrect display of selection when printing in some modes. | Neil | 1 | -0/+4 | |
| 2022-07-18 | Bug [#2338] Enable multiline regex for gcc and clang when REGEX_MULTILINE ↵ | Jacky Yang | 1 | -0/+6 | |
| defined. This requires gcc 11.3 or clang 14. | |||||
| 2022-07-17 | Feature [feature-requests:#1441] Line state optimized to avoid excess ↵ | Zufu Liu | 1 | -0/+14 | |
| allocations by always allocating for every line. | |||||
| 2022-07-06 | Updates for 5.2.4 release.rel-5-2-4 | Neil | 1 | -1/+1 | |
| 2022-07-05 | Fix failures with non-UTF-8 text when multi-threading. The Converter object on | Neil Hodgson | 1 | -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-17 | Fix crash printing on Win32 in bidirectional mode with a non-empty selection. | Neil | 1 | -0/+3 | |
| 2022-06-17 | Bug [#2335] Fix bad background colour for additional, secondary, and inactive | Neil | 1 | -0/+4 | |
| selections when printing. | |||||
| 2022-06-10 | Bug [#2334] Fix hiding selection when selection layer is SC_LAYER_UNDER_TEXT. | John Ehresman | 1 | -0/+12 | |
| 2022-05-21 | Change release date.rel-5-2-3 | Neil | 1 | -1/+1 | |
| 2022-05-18 | Bug [#2329] Place autocompletion lists and calltips on a higher window level | Neil Hodgson | 1 | -0/+5 | |
| so they can be seen when invoked from a modal dialog. | |||||
| 2022-05-17 | Updates for 5.2.3 release. | Neil | 1 | -1/+1 | |
| 2022-05-17 | Fix pink selection background when printing by making it completely transparent. | Neil | 1 | -0/+3 | |
| 2022-05-17 | Duplicate APIs to support 64-bit document positions on Win32: | Neil | 1 | -0/+6 | |
| SCI_GETTEXTRANGEFULL, SCI_FINDTEXTFULL, and SCI_FORMATRANGEFULL. | |||||
| 2022-05-11 | Bug [#2328]. For Qt 6.x, ensure QByteArray created when text is null but | John Ehresman | 1 | -0/+4 | |
| length is non-0. | |||||
| 2022-05-10 | Improve performance of SCI_FOLDALL(SC_FOLDACTION_EXPAND). | Neil | 1 | -0/+4 | |
| 2022-04-29 | Add warning for GTK scroll bar change. | Neil | 1 | -0/+2 | |
| 2022-04-22 | Bug [#2324] Fix ARM64 builds with Visual C++ due to unsupported CETCOMPAT flag. | Mat Berchtold | 1 | -0/+4 | |
