| Age | Commit message (Expand) | Author | Files | Lines |
| 2019-06-16 | Fix Xcode static analysis warning by renmaing GetImage to CreateImage. | Neil Hodgson | 1 | -6/+6 |
| 2019-05-11 | Feature [feature-requests:#1283]. Standardise spelling - "color" -> "colour". | Neil | 1 | -1/+1 |
| 2019-03-25 | Use generic std::abs instead of abs and fabs. | Neil | 1 | -1/+1 |
| 2019-03-25 | Use generic versions of ceil, floor, round, lround, trunc from <cmath>. | Neil | 1 | -6/+7 |
| 2018-10-04 | Fix crash when particular patterns of invalid UTF-8 led to failure to create a | Neil Hodgson | 1 | -1/+4 |
| 2018-06-07 | Update Cocoa enumerations to current names instead of deprecated names. | Neil Hodgson | 1 | -2/+2 |
| 2018-06-02 | Implement IScreenLineLayout for Cocoa Core Text as ScreenLineLayout. | Neil | 1 | -4/+211 |
| 2018-06-02 | Define IScreenLineLayout as the main interface for implementing bidirectional | Neil | 1 | -10/+2 |
| 2018-05-23 | Add definitions for bidirectional support to Platform.h and provide empty | Neil | 1 | -0/+19 |
| 2018-05-22 | Add GradientRectangle method to Surface to draw rectangles with vertical or | Neil | 1 | -0/+44 |
| 2018-05-21 | If decoding DBCS text fails, use the MacRoman encoding to ensure something is | Neil Hodgson | 1 | -2/+12 |
| 2018-05-21 | Remove CGContextRef field in QuartzTextLayout as it is only used in draw method | Neil Hodgson | 1 | -5/+2 |
| 2018-05-14 | Modernize Platform.h (4) - update Surface to use string_view for text arguments. | Neil | 1 | -21/+20 |
| 2018-05-14 | Modernize Platform.h (3) - update Surface to delete WidthChar, use size_t for | Neil | 1 | -13/+2 |
| 2018-05-14 | Modernize Platform.h (2) - noexcept, const, constexpr. | Neil | 1 | -3/+3 |
| 2018-05-14 | Modernize Platform.h (1) - noexcept, const, standard methods. | Neil | 1 | -7/+7 |
| 2018-05-14 | Include <string_view> to allow future use in Platform interface and Unicode. | Neil | 1 | -0/+1 |
| 2018-05-01 | Remove dead function and unnecessary casts. Convert C casts to C++ casts. | Neil Hodgson | 1 | -26/+12 |
| 2018-04-26 | Use <chrono> for platform-independent timing and remove ElapsedTime. | Neil | 1 | -28/+0 |
| 2018-04-25 | Remove variables and casts that are not needed. | Neil | 1 | -2/+2 |
| 2018-04-22 | Reduce casts by moving casting from char* to UInt8* into QuartzTextLayout::Se... | Neil Hodgson | 1 | -9/+17 |
| 2018-04-15 | Feature [feature-requests:#1215]. Stop warning about virtual call in destructor. | Neil | 1 | -2/+8 |
| 2018-03-22 | Feature [feature-requests:#1211]. Use pre-computed table for UTF8BytesOfLead. | Zufu Liu | 1 | -15/+4 |
| 2018-02-27 | Added <utility> and <tuple> to header order and moved POSIX header <sys/time.h> | Neil | 1 | -2/+2 |
| 2017-11-09 | Close autocompletion list for escape and delete on macOS 10.13 as the window | chinhster | 1 | -1/+1 |
| 2017-06-12 | Removed unused functions and methods from Platform.h. | Neil | 1 | -131/+1 |
| 2017-06-11 | Implement SCN_AUTOCSELECTIONCHANGE notification. | Neil | 1 | -17/+58 |
| 2017-06-08 | Indented consistently by using astyle. | Neil | 1 | -1447/+1241 |
| 2017-06-07 | Use property dot syntax. | Neil Hodgson | 1 | -35/+35 |
| 2017-06-07 | Using modern Objective C literals and indexing. | Neil Hodgson | 1 | -4/+4 |
| 2017-06-05 | Converted to Automatic Reference Counting. | Neil Hodgson | 1 | -30/+19 |
| 2017-05-07 | Use unique_ptr on Cocoa. | Neil Hodgson | 1 | -16/+13 |
| 2017-05-02 | For Cocoa, use unique_ptr for drawing surfaces and don't check for allocation | Neil | 1 | -12/+8 |
| 2017-04-22 | Restrict cursor changing to visible bounds so the text area cursor doesn't show | Neil | 1 | -1/+1 |
| 2017-04-22 | Replace C++ std::map with Cocoa NSMutableDictionary as easier to switch to ARC | Neil | 1 | -54/+19 |
| 2017-04-22 | Simplify NSImage creation by using its initWithCGImage directly instead of | Neil | 1 | -23/+16 |
| 2017-04-22 | Include <memory> for std::unique_ptr. | Neil | 1 | -0/+1 |
| 2017-04-01 | Standardize on C++ headers, remove headers that aren't needed and add <cstddef> | Neil | 1 | -1/+2 |
| 2017-03-30 | Make autocompletion slightly wider to avoid text truncation. | Neil Hodgson | 1 | -1/+2 |
| 2017-03-04 | Use "override" for Cocoa platform code and add to Editor where possible. | Neil Hodgson | 1 | -24/+24 |
| 2017-01-24 | Use safer static_cast instead of reinterpret_cast. Remove cast to void*. | Neil | 1 | -1/+1 |
| 2017-01-24 | Remove casts from id to Objective C object as they are not needed. Use safer | Neil | 1 | -28/+28 |
| 2017-01-24 | Use correct signatures for pattern draw and release functions and avoid | Neil | 1 | -6/+5 |
| 2017-01-23 | Use safer static_cast instead of reinterpret_cast when converting FontID to | Neil | 1 | -11/+11 |
| 2016-09-21 | Bug [#1863]. Allow subclass of SCIContentView to set cursor. | Tse Kit Yam | 1 | -1/+1 |
| 2016-04-08 | Update header ordering to cover all headers used in Scintilla and reorder | Neil Hodgson | 1 | -3/+4 |
| 2015-12-10 | Bug [#1788]. Fix crash when autocompletion list closed during scroll bounce-back | Chinh Nguyen | 1 | -0/+1 |
| 2015-09-29 | ScreenMax no longer depends on window so do not pass as argument. | Neil Hodgson | 1 | -3/+3 |
| 2015-09-29 | Mark local functions as static. | Neil Hodgson | 1 | -2/+2 |
| 2015-06-25 | Bug [#1740]. Improve autocompletion positioning to avoid being off-screen. | Neil Hodgson | 1 | -2/+14 |