| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2022-02-10 | Replace "OS X' with "macOS". | Neil | 1 | -11/+11 | |
| 2022-02-02 | Feature [feature-requests:#1427] Add multithreaded layout which improves | Neil | 1 | -0/+17 | |
| performance significantly for very wide lines. | |||||
| 2022-02-02 | Add Supports::ThreadSafeMeasureWidths for platforms to indicate if they support | Neil | 1 | -3/+14 | |
| concurrent calls to MeasureWidths. | |||||
| 2021-11-12 | Change SCI_GETTEXT, SCI_GETSELTEXT, and SCI_GETCURLINE to be more consistent | Neil | 1 | -12/+12 | |
| with other APIs with respect to buffer lengths. | |||||
| 2021-10-22 | Add CARETSTYLE_CURSES to draw more than 1 caret on curses terminal. | Mitchell Foral | 1 | -2/+9 | |
| 2021-10-21 | Mention problem with SCI_CLEARREPRESENTATION for single bytes >= 128. | Zufu Liu | 1 | -1/+3 | |
| 2021-09-12 | Make negative settings for extra ascent and descent safer by ensuring calculated | Neil | 1 | -1/+5 | |
| ascent and thus line height is at least 1 pixel. Allow 1 point font minimum instead of 2 as this may help with document maps. Document negative extra ascent and descent. Use XYPOSITION for ascent and descent for more coherent types and fewer casts but floor the values when retrieving from Surface so behaviour is unchanged. | |||||
| 2021-08-25 | Allow SCI_HIDELINES to hide the first line or all lines. | Neil | 1 | -3/+2 | |
| 2021-08-24 | Remove line end white space. | Neil | 1 | -7/+7 | |
| 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/+25 | |
| 2021-07-30 | Remove mentions of "keyword replacement" for SCI_GETPROPERTYEXPANDED, | Neil | 1 | -20/+15 | |
| SCI_GETPROPERTYINT, and SCI_SETPROPERTY as this is no longer supported. | |||||
| 2021-07-29 | Add SC_ELEMENT_HIDDEN_LINE to show where lines are hidden. | Neil | 1 | -0/+13 | |
| 2021-07-29 | Add SC_ELEMENT_FOLD_LINE to set the colour of fold lines. | Neil | 1 | -5/+19 | |
| 2021-07-17 | Add SCI_AUTOCSETOPTIONS to allow choosing a non-resizeable autocompletion list | Neil | 1 | -1/+39 | |
| on Win32. This also avoids a header rectangle above the list. | |||||
| 2021-07-15 | Feature [feature-requests:#1370] Implement SCI_ALLOCATELINES to allocate indices | Zufu Liu | 1 | -0/+7 | |
| to hold some number of lines. This is an optimization that can decrease reallocation overhead. | |||||
| 2021-06-25 | Feature [feature-requests:#1400] Set buffering when technology set. | Zufu Liu | 1 | -3/+9 | |
| 2021-06-17 | Move ScintillaCall from SciTE project. | Neil | 1 | -3/+6 | |
| 2021-06-17 | Add SciFnDirectStatus, a direct access function which also returns status so can | Neil | 1 | -5/+13 | |
| improve performance for client code that called SCI_GETSTATUS after every API to check for failure. | |||||
| 2021-06-10 | Surround parameters with code tags styling as class 'parameter'. | Neil | 1 | -8/+8 | |
| 2021-06-10 | Use string_view for PositionCache methods. | Neil | 1 | -3/+5 | |
| Replace custom hash code with standard library hash. Drop standard methods that are not needed. Restrict representations to 200 bytes. Improve documentation. | |||||
| 2021-06-10 | Rename SCI_PASTERECTANGULAR to SCI_REPLACERECTANGULAR as it is inserting text | Neil | 1 | -4/+6 | |
| 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/+4 | |
| 2021-06-03 | Add APIs for setting appearance (traditional blob or plain text) and colour of | Neil | 1 | -1/+53 | |
| representations and support setting a representation for the "\r\n" line end sequence. | |||||
| 2021-06-02 | Remove extraneous periods. | Neil | 1 | -3/+3 | |
| 2021-05-28 | Rename 'NO_FOCUS' to 'INACTIVE' to better match platform terms. | Neil | 1 | -6/+6 | |
| 2021-05-28 | Moved SCI_SETFONTLOCALE to correct position. | Neil | 1 | -10/+10 | |
| 2021-05-24 | Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h | Neil | 1 | -23/+48 | |
| 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-19 | Bug [#2253]. Remove SC_ELEMENT_CARET_SECONDARY as it caused unexpected change to | Neil | 1 | -11/+1 | |
| caret appearance for empty selection as empty selections can not be primary. | |||||
| 2021-05-15 | Protect against out-of-bounds layout cache level and remove unnecessary code. | Neil | 1 | -1/+1 | |
| Make documentation more accurate. | |||||
| 2021-05-14 | Implement SC_LAYER_UNDER_TEXT so that selections, caret lines, and content area | Neil | 1 | -6/+58 | |
| markers can be drawn translucently under text. | |||||
| 2021-05-14 | Add elements for hot spots SC_ELEMENT_HOT_SPOT_ACTIVE and | Neil | 1 | -5/+26 | |
| SC_ELEMENT_HOT_SPOT_ACTIVE_BACK. | |||||
| 2021-05-14 | Add SC_ELEMENT_WHITE_SPACE_BACK to set the background colour of visible | Neil | 1 | -12/+43 | |
| whitespace. | |||||
| 2021-05-14 | Feature [feature-requests:#1402] Add SC_ELEMENT_WHITE_SPACE to set the colour of | YX Hao | 1 | -3/+15 | |
| visible whitespace including translucency. | |||||
| 2021-05-14 | Add SCI_MARKERSETLAYER to define layer on which to draw content area markers. | Neil | 1 | -10/+17 | |
| 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 | -10/+58 | |
| add SetCaretLineLayer. Older caret line APIs SCI_SETCARETLINEVISIBLE, SCI_SETCARETLINEBACK, SCI_SETCARETLINEBACKALPHA now discouraged. | |||||
| 2021-05-11 | Implement SCI_GETELEMENTBASECOLOUR to return the default values for element | Neil | 1 | -1/+14 | |
| colours. | |||||
| 2021-05-10 | Change the way that selections and carets are drawn to use the element APIs. | Neil | 1 | -44/+226 | |
| 2021-05-10 | Spelling fixes. | Neil | 1 | -6/+6 | |
| 2021-05-06 | Fix parameter name. | Neil | 1 | -3/+2 | |
| 2021-04-28 | Character indices are no longer provisional so move out of Provisional category. | Neil | 1 | -8/+5 | |
| 2021-04-28 | Spelling. | Neil | 1 | -2/+2 | |
| 2021-04-28 | Document preprocessor values that affect building. | Zufu Liu | 1 | -1/+44 | |
| 2021-04-27 | Use correct parameter name in description. | Neil | 1 | -3/+3 | |
| 2021-04-24 | Moved link to follow document. | Neil | 1 | -1/+1 | |
| 2021-04-20 | Bug [#2027]. Implement font locale SCI_SETFONTLOCALE on Win32 using DirectWrite. | Neil | 1 | -2/+18 | |
| 2021-04-09 | Document element colours. | Neil | 1 | -25/+129 | |
| 2021-04-03 | Update information on lexing removing content superceded by Lexilla. | Neil | 1 | -41/+17 | |
| 2021-03-29 | Add illustration of annotation shapes. Remove erroneous explanation of | Neil | 1 | -5/+6 | |
| SCI_EOLANNOTATIONSETSTYLES as it was never implemented. | |||||
| 2021-03-29 | Clarify encoding of EOL annotation text. | Neil | 1 | -1/+2 | |
