Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-07-11 | Removed GetNearestColor as paletted displays are no longer supported. | Neil | 1 | -3/+1 | |
2020-07-11 | Treat DEL as a control character for determining block caret size. | Zufu Liu | 1 | -5/+6 | |
Moved IsControlCharacter to anonymous namespace. | |||||
2020-07-11 | Feature [feature-requests:1369]. Represent DEL control character 0x7f with DEL. | Zufu Liu | 2 | -0/+5 | |
2020-07-08 | Fix translucent rectangle drawing on Qt. | Neil | 2 | -12/+34 | |
2020-07-08 | Use correct signature to override QListWidget::selectionChanged and use this to | Neil | 1 | -14/+21 | |
call ListNotify on delegate. This avoids need to override mouseReleaseEvent. As currentRow() is not updated for selectionChanged, use selectedRows to find selection. Fixes a compiler warning. | |||||
2020-07-08 | Fix deprecated QDesktopWidget::availableGeometry call to use currently supported | Neil | 1 | -8/+21 | |
QScreen::availableGeometry call when available. | |||||
2020-07-08 | Fix deprecated Qt call to use currently supported call. | Neil | 2 | -1/+5 | |
2020-07-07 | Add .p6 extension for Raku to list of native line ends. | Neil | 1 | -0/+1 | |
This avoids non-matching line ends when running lexer tests. | |||||
2020-06-28 | SciTE change log. | Neil | 1 | -0/+11 | |
2020-06-21 | Remove *.ipdb (incremental link time code generation) files when cleaning as | Neil | 1 | -1/+1 | |
they can cause warnings when another compilation performed. | |||||
2020-06-17 | Change log for SciTE. | Neil | 1 | -0/+4 | |
2020-06-17 | Update suppressions for Cppcheck 2.1. | Neil | 1 | -10/+21 | |
2020-06-17 | Simplify calls when known to be leaving a save point. | Neil | 1 | -2/+2 | |
2020-06-17 | Feature [feature-requests:1361]. Allow caret width to be up to 20 pixels. | Neil | 3 | -4/+8 | |
2020-06-16 | Added some projects that use Scintilla. | Neil | 1 | -0/+8 | |
2020-06-12 | Bug [#2141]. Implement end of line annotations. | Prakash Sahni | 13 | -4/+343 | |
2020-06-15 | Use ReleaseUnknown to extend noexcept over finalisation. | Zufu Liu | 4 | -25/+12 | |
2020-06-13 | Fixed path mentioned in comment. | Neil | 1 | -1/+1 | |
2020-06-13 | Add include that defines back_inserter. | Greg Smith | 1 | -0/+1 | |
2020-06-11 | Fix bug on Win32 where calling WM_GETTEXT for more text than in document could | Neil | 3 | -1/+18 | |
return less text than in document. | |||||
2020-06-11 | Bug [#2185]. Fix printing to use correct text size. | Neil | 2 | -1/+7 | |
2020-06-11 | Use noexcept where safe and maintainable. | Neil | 25 | -122/+122 | |
2020-06-11 | Use const and noexcept for CatalogueModules. | Neil | 1 | -6/+6 | |
While CatalogueModules is in lexlib, it is newer with few users so does not have to remain as fixed as other files in lexlib. | |||||
2020-06-11 | Avoid warning for potential nullptr dereference that is not actually possible. | Neil | 1 | -2/+4 | |
2020-06-10 | Feature [feature-requests:1355]. Round instead of truncating for SCI_TEXTWIDTH. | Neil | 3 | -4/+9 | |
2020-06-10 | Convert enum to enum class. Add noexcept and const. | Neil | 3 | -13/+13 | |
2020-06-10 | Feature [feature-requests:1357]. Convert to switch. | Zufu Liu | 1 | -144/+195 | |
2020-06-10 | Removed extra end tag. | Neil | 1 | -1/+0 | |
2020-06-09 | Feature [feature-requests:1358]. Support lstlisting environment that is similar | Hugues Larrive | 4 | -0/+39 | |
to verbatim. | |||||
2020-06-09 | Add test for latex lexer. | Neil | 3 | -0/+95 | |
2020-06-06 | Implement gradients for GDI. GradientRectangle previously drew an average of the | Neil | 1 | -5/+60 | |
first two stops over the whole rectangle. | |||||
2020-06-06 | Add DIBSection class to simplify bitmap operations on GDI. | Neil | 1 | -66/+121 | |
2020-06-06 | Avoid type-pun union when converting from RGBA colour to DWORD as this may be | Neil | 1 | -13/+9 | |
undefined or implementation defined behaviour. Drop some casts by hoisting out part of dwordMultiplied. | |||||
2020-06-06 | Specify locally visible methods as noexcept. | Neil | 1 | -20/+20 | |
2020-06-06 | Prefer .data() over &[0] as more explicit. | Neil | 1 | -10/+7 | |
Use range for when reasonable. Prefer transform over explicit loop. | |||||
2020-06-06 | Add ReleaseUnknown to safely release IUnknown* and avoid warnings when done in | Neil | 3 | -18/+23 | |
noexcept context. | |||||
2020-06-06 | Bug [#2063]. On Windows 8.1 where GetDpiForWindow is not available, use | Zufu Liu | 1 | -0/+23 | |
GetDpiForMonitor to emulate it. | |||||
2020-06-06 | Use call_once for initialising Direct2D so only done once even with threads. | Neil | 1 | -59/+61 | |
2020-06-06 | Defer most initialisation until Scintilla window is created. | Neil | 4 | -21/+29 | |
Previously, more initialisation was performed inside DllMain but some actions such as loading libraries are unsafe inside DllMain. Avoid listbox UnregisterClass if no attempt to register which will occur if no Scintilla windows were created. std::call_once is used to ensure initialisation is performed at most once. | |||||
2020-06-04 | Use pathlib. | Neil | 1 | -28/+64 | |
Read files as cp437 so all bytes are valid and windows-1252 invalid characters do not fail. When new headers found, save reasonable order of headers to "NewOrder.txt" making it easier to update HeaderOrder.txt. When a file is out-of-order, save list of headers used in the same order as HeaderOrder.txt to "<path>.ordered". | |||||
2020-06-03 | Fix list in documentation. | Neil | 1 | -1/+1 | |
2020-06-03 | Added tag rel-4-4-3 for changeset e454eae1f1eb | Neil | 1 | -0/+1 | |
2020-06-03 | Added bug reference.rel-4-4-3 | Neil | 1 | -0/+1 | |
2020-06-03 | Updates for 4.4.3. | Neil | 14 | -26/+38 | |
2020-06-02 | Added tag rel-4-4-2 for changeset 41a534b0add8 | Neil | 1 | -0/+1 | |
2020-06-02 | Updates for 4.4.2.rel-4-4-2 | Neil | 14 | -26/+49 | |
2020-06-02 | Specify the calling convention so that both dynamic and static linking work on | Neil | 1 | -1/+7 | |
32-bit and 64-bit Win32. | |||||
2020-06-02 | Make Lexilla run on old macOS by setting deployment target to 10.8. | Neil Hodgson | 1 | -2/+2 | |
2020-06-02 | Use @rpath as dylib install path as otherwise expects /usr/lib. | Neil Hodgson | 1 | -0/+2 | |
2020-06-01 | Added tag rel-4-4-0 for changeset 12e2a7acacec | Neil | 1 | -0/+1 | |