Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-07-04 | Feature [feature-requests:#1442] Faster build with multiprocessing option. | Zufu Liu | 1 | -1/+1 | |
2022-05-17 | Duplicate APIs to support 64-bit document positions on Win32: | Neil | 2 | -0/+53 | |
SCI_GETTEXTRANGEFULL, SCI_FINDTEXTFULL, and SCI_FORMATRANGEFULL. | |||||
2022-04-08 | Feature [feature-requests:#1389] Initialize CaseFolderTable to ASCII so | Neil | 1 | -2/+0 | |
subclasses do not need to call StandardASCII. Avoid some lint warnings. | |||||
2022-03-15 | Feature [feature-requests:#1431] Add SCI_GETSTYLEINDEXAT API to return styles | Neil | 1 | -3/+6 | |
over 127 as positive integers. | |||||
2022-02-10 | Replace "OS X' with "macOS". | Neil | 2 | -5/+5 | |
2021-11-13 | Bug [#2294] Fix assertion failure with autocompletion list when order is | Neil | 1 | -0/+40 | |
SC_ORDER_CUSTOM or SC_ORDER_PERFORMSORT and the list is empty. | |||||
2021-11-12 | Remove XiteQt.py as ScintillaEditPy is no longer included in Scintilla | Neil | 4 | -118/+4 | |
and the required PySide library no longer supported. | |||||
2021-11-12 | Change SCI_GETTEXT, SCI_GETSELTEXT, and SCI_GETCURLINE to be more consistent | Neil | 1 | -1/+1 | |
with other APIs with respect to buffer lengths. | |||||
2021-10-21 | Feature [feature-requests:#1417] Use backward iteration to find space / control | Zufu Liu | 1 | -0/+117 | |
character and text / punctuation boundaries in SafeSegment as will be simpler and faster in almost all cases. Simplify BreakFinder::Next calling SafeSegment. | |||||
2021-10-17 | Update Catch2 to 2.13.7 so that it works on Ubuntu 21.10. | Neil | 1 | -175/+253 | |
2021-10-03 | Feature [feature-requests:#1417] Add DEL (0x7F) to set of space characters. | Neil | 2 | -7/+4 | |
2021-09-23 | Fix comment.rel-5-1-2 | Neil | 1 | -1/+1 | |
2021-09-15 | Move colour mixing implementations into implementation file. | Neil | 4 | -0/+236 | |
Avoids some warnings but drops constexpr. Use MixedWith in PlatWin for GDI instead of local implementation. Add unit tests for Geometry. | |||||
2021-09-02 | Bug [#2281] Fix crash with too many subexpressions in regular expression search | Neil | 1 | -0/+22 | |
with SCFIND_CXX11REGEX. | |||||
2021-08-25 | Allow SCI_HIDELINES to hide the first line or all lines. | Neil | 1 | -0/+15 | |
2021-08-24 | Remove line end white space. | Neil | 4 | -14/+14 | |
2021-08-24 | Feature [feature-requests:#841] SCI_SETCARETLINEHIGHLIGHTSUBLINE enables | Zufu Liu | 1 | -0/+8 | |
highlighting just the subline with the caret when wrapping is on. | |||||
2021-07-31 | Implement StyleSetCheckMonospaced. | Neil | 1 | -0/+5 | |
2021-07-20 | Add OPTIMIZATION variable so caller can choose optimization level. | Neil | 2 | -3/+7 | |
Drop lexlib from include path as no longer part of Scintilla. For clang on Windows, turn off deprecated function warning and disable sanitizers as they are slow. | |||||
2021-07-17 | Fix minor inconsistency with word searching results at start and end of document | Neil | 1 | -0/+8 | |
which were considered word start / end positions even when first or last character did not fit requirements. | |||||
2021-07-17 | Extract word edge detection to prepare for fixing bug. | Neil | 1 | -0/+23 | |
This change does not affect behaviour. | |||||
2021-07-16 | Feature [feature-requests:#1381] Fix position returned when in 2nd segment. | Neil | 1 | -0/+19 | |
2021-07-14 | Feature [feature-requests:#1408] More accurate handling of invalid DBCS byte | Neil | 1 | -6/+51 | |
pairs in backwards NextPosition. | |||||
2021-07-05 | Feature [feature-requests:#1408] Check both bytes of potential DBCS character | Zufu Liu | 1 | -7/+60 | |
before treating as a character. | |||||
2021-07-12 | Add support for benchmarks and Russian text in the unit tests. | Neil | 1 | -0/+31 | |
2021-07-11 | Add search tests with different encodings, case-matching options, and ↵ | Neil | 1 | -4/+189 | |
directions. | |||||
2021-07-11 | Avoid some incorrect compiler warnings for out-of-bounds access by providing | Neil | 1 | -3/+3 | |
extra bytes. | |||||
2021-07-03 | Feature [feature-requests:#1408] Simplify code, remove IsDBCSTrailByteInvalid. | Zufu Liu | 1 | -11/+0 | |
Drop temporary test for IsDBCSTrailByteNoExcept. | |||||
2021-07-03 | Feature [feature-requests:#1408] Use positive IsDBCSTrailByteNoExcept function | Zufu Liu | 1 | -0/+12 | |
instead of negated IsDBCSTrailByteInvalid. | |||||
2021-07-02 | Feature [feature-requests:#1408] Treat valid DBCS lead byte followed by invalid | Zufu Liu | 1 | -0/+20 | |
trail byte as single byte. | |||||
2021-07-01 | Add searching test cases for multi-byte encoding | Neil | 4 | -11/+61 | |
2021-06-25 | Feature [feature-requests:#1400] Set buffering when technology set. | Zufu Liu | 1 | -0/+26 | |
2021-06-21 | Fix some warnings in unit tests.rel-5-1-0 | Zufu Liu | 5 | -24/+22 | |
2021-06-21 | Add tests for CharacterCategoryMap, RESearch, and Document. | Zufu Liu | 6 | -0/+218 | |
2021-06-10 | Rename SCI_PASTERECTANGULAR to SCI_REPLACERECTANGULAR as it is inserting text | Neil | 1 | -2/+2 | |
provided as an argument instead of from the system clipboard. | |||||
2021-06-09 | Add SCI_PASTERECTANGULAR to insert text like a rectangular paste. | Mitchell Foral | 1 | -0/+6 | |
2021-06-03 | Add APIs for setting appearance (traditional blob or plain text) and colour of | Neil | 1 | -0/+25 | |
representations and support setting a representation for the "\r\n" line end sequence. | |||||
2021-05-30 | Fix GetFontQuality. Simplify code that calls FlagSet. | Neil | 1 | -0/+5 | |
2021-05-24 | Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h | Neil | 12 | -161/+166 | |
and ScintillaStructures.h using scoped enumerations. Use these headers instead of Scintilla.h internally. External definitions go in the Scintilla namespace and internal definitio0ns in Scintilla::Internal. | |||||
2021-05-15 | Updated test since setting the alpha of caret line when it hasn't had colour set | Neil | 1 | -0/+1 | |
no longer sets it to have a colour. | |||||
2021-05-14 | Implement SC_LAYER_UNDER_TEXT so that selections, caret lines, and content area | Neil | 1 | -4/+4 | |
markers can be drawn translucently under text. | |||||
2021-05-14 | Add elements for hot spots SC_ELEMENT_HOT_SPOT_ACTIVE and | Neil | 1 | -0/+32 | |
SC_ELEMENT_HOT_SPOT_ACTIVE_BACK. | |||||
2021-05-14 | Add SCI_MARKERSETLAYER to define layer on which to draw content area markers. | Neil | 1 | -0/+7 | |
This replaces the use of SC_ALPHA_NOALPHA for markers. | |||||
2021-05-12 | Switch caret line background colour to SC_ELEMENT_CARET_LINE_BACK element and | Neil | 1 | -16/+85 | |
add SetCaretLineLayer. Older caret line APIs SCI_SETCARETLINEVISIBLE, SCI_SETCARETLINEBACK, SCI_SETCARETLINEBACKALPHA now discouraged. | |||||
2021-05-12 | Allow property-style access to colour and colouralpha APIs. | Neil | 1 | -3/+7 | |
2021-05-11 | Add test for SelectionLayer. | Neil | 1 | -0/+6 | |
2021-05-11 | Implement SCI_GETELEMENTBASECOLOUR to return the default values for element | Neil | 1 | -6/+22 | |
colours. | |||||
2021-05-11 | Add tests for element APIs. Fix SCI_GETELEMENTCOLOUR to return value including | Neil | 1 | -0/+33 | |
alpha. Set selection and caret elements as allowing translucency. | |||||
2021-05-09 | Add @file <filename> comments to follow convention. | Neil | 12 | -13/+36 | |
Fix incorrect filename comments. Normalize Qt code to use #endif /* X */ insetad of #endif // X. | |||||
2021-05-06 | Fix building unit tests in Visual C++. | Neil | 1 | -6/+4 | |