Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-03-27 | Return a FillResult struct from RunStyles::FillRange instead of modifying | Neil | 7 | -58/+72 | |
arguments as that is clumsy when converting types. | |||||
2018-03-27 | Use an interface for ContractionState so that there can be different | Neil | 9 | -279/+331 | |
implementations of that interface. | |||||
2018-03-26 | Suppress new warnings because of Catch 2.0.1. | Neil | 1 | -4/+6 | |
Suppress unused private function warnings in ScintillaWin as they are used. | |||||
2018-03-26 | Update Catch from 1.0 build 47 to 2.0.1 and modify UnitTester.cpp to suit. | Neil | 2 | -6090/+9371 | |
Use #define for Catch to report memory leaks after main as the previous call to _CrtDumpMemoryLeaks was too early and listed a static allocation as a leak. | |||||
2018-03-26 | Avoid warnings about ignored diagnostic with Clang. | Neil | 1 | -0/+2 | |
2018-03-25 | Removed comment about script that is not included. | Neil | 1 | -1/+0 | |
2018-03-25 | Feature [feature-requests:#1213]. Clarify UTF8Classify. | Zufu Liu | 2 | -76/+90 | |
Use UTF8BytesOfLead to determine expected length early in function to quickly detect argument not long enough, invalid single bytes and invalid first trail then branching on length for more detailed checks. | |||||
2018-03-24 | Removed unreachable branches in UTF8Classify. | Neil | 1 | -8/+0 | |
2018-03-24 | Removed unwanted include. | Neil | 4 | -5/+3 | |
2018-03-24 | Feature [feature-requests:#1212]. Move Unicode conversions into UniConversion. | Zufu Liu | 16 | -237/+226 | |
Move Unicode conversion functions UnicodeFromUTF8 and UTF8FromUTF32Character into UniConversion. | |||||
2018-03-24 | Update unit test Visual C++ builds to Visual C++ 2017 with /std:c++latest | Neil | 2 | -12/+13 | |
but also allowing std::auto_ptr for Catch. | |||||
2018-03-22 | Feature [feature-requests:#1211]. Use pre-computed table for UTF8BytesOfLead. | Zufu Liu | 11 | -194/+235 | |
Friendlier treatment of invalid UTF-8. Add tests for UniConversion handling invalid UTF-8. Simplify UTF8Classify tests. | |||||
2018-03-21 | Fix some runtime warnings caused by previous change as wSelection created later | Neil Hodgson | 1 | -4/+4 | |
and clients (such as SciTE's about box) may use API to set up text before window is realized. | |||||
2018-03-21 | Fix warnings about NULL selection widget by moving creation and destruction of | Mitchell Foral | 1 | -4/+2 | |
wSelection into the realize and unrealize handlers. | |||||
2018-03-21 | Include header needed for ptrdiff_t. | Mitchell Foral | 7 | -0/+7 | |
2018-03-20 | Change standard flag on MacOS as Xcode clang doesn't yet like c++17. | Neil Hodgson | 1 | -1/+4 | |
2018-03-20 | Add unit tests for UniCoversion. | Neil | 5 | -3/+270 | |
2018-03-19 | Fix warning from MSVC 64-bit. | Neil | 1 | -2/+2 | |
2018-03-16 | Remove line-end white space. | Neil | 30 | -87/+87 | |
2018-03-15 | Use forward class definitions of XPM and RGBAImage so only code that uses them | Neil | 14 | -47/+46 | |
needs to #include "XPM.h". Move definition of standard methods on LineMarker from header to implementation to reduce included text and further isolate use of XPM and RGBAImage. | |||||
2018-03-14 | Bug [#2001]. Make masking and comparison code clearer. | Neil | 1 | -16/+25 | |
2018-03-09 | Use Position/Line/int more accurately in preparation for large documents. | Neil | 17 | -131/+136 | |
2018-03-08 | Fix relexing from inside multiline comments. | Gunter Königsmann | 1 | -9/+17 | |
Fix some warnings. | |||||
2018-03-08 | Change log. | Neil | 1 | -0/+4 | |
2018-03-08 | Create static library libscintilla.a or libscintilla.lib on Windows. | Neil | 4 | -42/+57 | |
Stop creating Lexers.a static library. Harmonize make files. | |||||
2018-03-08 | Updated requied compiler versions. | Neil | 1 | -2/+2 | |
2018-03-08 | Bug [#1952]. Match identifier chains with dots and colons. | Kein-Hong Man | 2 | -56/+98 | |
2018-03-06 | Feature [feature-requests:#1210]. Maxima lexer added. | Gunter Königsmann | 9 | -0/+258 | |
2018-03-05 | Bug [#1999]. Fix hang lexing a Lua label where the range ends before "::". | Neil | 2 | -0/+9 | |
2018-03-03 | Promote methods from int to ptrdiff_t to allow extension to 64-bits. | Neil | 2 | -8/+8 | |
2018-03-03 | Use Position and Line types in ScintillaCocoa to allow for later changes. | Neil | 1 | -7/+7 | |
2018-03-01 | Mark variables as const where simple. | Neil | 17 | -281/+281 | |
2018-03-01 | Use C++ cast in preference to C cast. | Neil | 1 | -1/+1 | |
2018-03-01 | Mark pointer argument as const as not written to. | Neil | 2 | -7/+7 | |
2018-03-01 | Avoid warning with explicit destructor. | Neil | 1 | -0/+1 | |
2018-03-01 | Use make_unique in preference to new. | Neil | 12 | -46/+46 | |
From Effective Modern C++ Item 21. | |||||
2018-03-01 | Update to c++17 so make_unique is available. | Neil | 1 | -1/+1 | |
2018-02-28 | SciTE change log. | Neil | 1 | -0/+5 | |
2018-02-27 | Use 'const'. | Neil | 1 | -1/+1 | |
2018-02-27 | Use virtual to ensure LexState overrides LineEndTypesSupported method. | Neil | 2 | -2/+2 | |
2018-02-27 | Added <utility> and <tuple> to header order and moved POSIX header <sys/time.h> | Neil | 3 | -5/+9 | |
after standard C++ language headers. | |||||
2018-02-26 | Added string_view to order. | Neil | 1 | -0/+1 | |
2018-02-26 | SciTE changelog. | Neil | 1 | -0/+4 | |
2018-02-24 | Fix move-extends-selection mode for rectangular and line selections. | Mitchell Foral | 4 | -17/+138 | |
2018-02-22 | Bug [#1993]. Fix building on Mingw/MSYS to perform file copies and deletions. | Tobias Kühne | 2 | -1/+5 | |
2018-02-17 | For rectangular selections, pressing Home or End now moves the caret to the Home | Vicente | 2 | -3/+18 | |
or End position instead of the limit of the rectangular selection. | |||||
2018-02-17 | SciTE changelog. | Neil | 1 | -0/+4 | |
2018-02-14 | SciTE change log. | Neil | 1 | -0/+13 | |
2018-02-12 | Added tag rel-4-0-3 for changeset 1bf8b7c50995 | Neil | 1 | -0/+1 | |
2018-02-10 | Update Cocoa test app to Xcode 9.2 settings.rel-4-0-3 | Neil Hodgson | 1 | -7/+15 | |