| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2025-11-03 | Support ptrdiff_t if it has the same storage size as int, but does *not* ↵ | Robin Haberkorn | 1 | -0/+1 | |
| alias it * This is the case e.g. on NetBSD 10 for ARMv6 where Sci::Position == ptrdiff_t == long int, but obviously for other platforms as well, where it causes "invalid conversion" and "undefined symbol" errors. Scintilla was testing for aliasability by comparing the storage size with sizeof() or PTRDIFF_MAX == INT_MAX at the preprocessor level. This was fundamentally flawed. * In LineVector<T>::InsertLines() we are now using the C++17 construct std::is_convertible_v<From*,To*> instead. * We need RunStyles<ptrdiff_t> as well on the affected platforms. This is impossible to test for in a constant expression that can be used with the preprocessor. Also, it's not possible to conditionally instantiate templates. We tried to instantiate RunStyles for all scalar types that could be behind ptrdiff_t, but it was causing warnings on MSVC. Implicitly instantiating RunStyles would be possible, but is not desired. Therefore as a workaround, you can now define the PTRDIFF_DOESNT_ALIAS_INT macro when invoking the build system, to force instantiating RunStyles<ptrdiff_t>. When writing portable applications, you may have to use a compile-time check for checking aliasability of ptrdiff_t and int in order to define PTRDIFF_DOESNT_ALIAS_INT. | |||||
| 2025-05-13 | Remove directories no longer included in Scintilla and document Qt. | Neil | 1 | -2/+2 | |
| 2025-05-12 | Add SCI_AUTOC{G,S}ETIMAGESCALE and implement for Qt and GTK. | orbitalquark | 1 | -0/+1 | |
| 2025-03-20 | Move SurfaceGDI, SurfaceD2D, ListBox, and associated code out of PlatWin.cxx to | Neil | 1 | -0/+3 | |
| new files SurfaceGDI.cxx, SurfaceD2D.cxx, and ListBox.cxx + associated headers. | |||||
| 2025-02-17 | Switch to using ComPtr from WRL for render target code for simplicity and | Neil | 1 | -0/+1 | |
| familiarity. | |||||
| 2025-02-12 | Implement Direct2D/DirectWrite 1.1. Add SC_TECHNOLOGY_DIRECT_WRITE_1 to use an | Neil | 1 | -0/+1 | |
| explicit swap chain and ID2D1DeviceContext. Stop supporting DirectWrite on Windows Vista. | |||||
| 2025-02-09 | Update Direct2D headers to Direct2D 1.1. | Neil | 1 | -2/+2 | |
| Doesn't change functionality yet but ensures more recent APIs will be available. | |||||
| 2025-02-01 | Implement serialization of Selection to and from strings. | Neil | 1 | -0/+1 | |
| Requires std::from_chars to be available. | |||||
| 2024-08-17 | Add new header to order. | Neil | 1 | -0/+1 | |
| 2024-02-01 | Move UndoHistory into its own module that is accessible from CellBuffer and | Neil | 1 | -0/+1 | |
| tests but hidden from most of Scintilla. Access through std::unique_ptr. | |||||
| 2022-11-26 | Bug [#2344]. Avoid blurry display with DirectWrite in GDI scaling mode. | Markus Nißl | 1 | -0/+1 | |
| https://sourceforge.net/p/scintilla/code/merge-requests/28/ | |||||
| 2022-07-31 | Added change history which can display document changes (modified, saved, ...) | Neil | 1 | -0/+1 | |
| in the margin or in the text. | |||||
| 2022-02-02 | Feature [feature-requests:#1427] Add multithreaded layout which improves | Neil | 1 | -0/+3 | |
| performance significantly for very wide lines. | |||||
| 2022-01-31 | Implement more unique_ptr allocation wrappers and place in new Wrappers.h ↵ | Neil Hodgson | 1 | -0/+1 | |
| header. | |||||
| 2022-01-14 | Remove unnecessary inclusion of POSIX headers. | Neil Hodgson | 1 | -4/+0 | |
| 2021-11-22 | Move common Win32 functions for releasing IUnknown* and DLL function access into | Neil | 1 | -0/+1 | |
| new WinType.h header. | |||||
| 2021-09-14 | Avoid some allocations when checking whether font monospaced. | Zufu Liu | 1 | -0/+1 | |
| 2021-07-12 | Add support for benchmarks and Russian text in the unit tests. | Neil | 1 | -0/+2 | |
| 2021-05-24 | Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h | Neil | 1 | -4/+9 | |
| 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-04-27 | Rename CharacterSet and CharacterCategory modules in Scintilla to CharacterType | Neil | 1 | -4/+2 | |
| and CharacterCategoryMap to avoid clashes with Lexilla when building an executable that includes both. | |||||
| 2021-03-29 | Add SCI_SETELEMENTCOLOUR and related APIs to change colours of visible elements. | Neil | 1 | -0/+1 | |
| Implement SC_ELEMENT_LIST* to change colours of autocompletion lists. | |||||
| 2021-03-22 | Remove IntegerRectangle.h as not widely useful | Neil | 1 | -1/+0 | |
| Add IntegerRectangle struct for local use in PlatGTK.cxx. | |||||
| 2021-03-18 | std::optional is a basic vocabulary type that may be used widely so include | Neil | 1 | -0/+1 | |
| almost everywhere. | |||||
| 2021-03-18 | Move assert and debug trace functions into their own header Debugging.h. | Neil | 1 | -0/+1 | |
| PLATFORM_ASSERT is used in data structure headers which led to including graphics and windowing APIs in data structure modules. | |||||
| 2021-03-17 | Extract geometry and colour definitions from Platform.h into src/Geometry.h. | Neil | 1 | -1/+2 | |
| 2021-02-01 | Move the patterns to check and exclude to HeaderOrder.txt so one script can be | Neil | 1 | -36/+17 | |
| used for Scintilla, Lexilla, and SciTE. Update HeaderOrder.txt to match files moved out to Lexilla. | |||||
| 2020-06-06 | Defer most initialisation until Scintilla window is created. | Neil | 1 | -0/+1 | |
| 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-03-16 | List headers in HeaderOrder.txt that are not used. | Neil | 1 | -5/+0 | |
| Remove unused headers from HeaderOrder.txt. | |||||
| 2019-12-22 | Lexilla testing framework. | Neil | 1 | -0/+6 | |
| 2019-12-31 | Move collection of modules from Catalogue.cxx to CatalogueModules.h so it can | Neil | 1 | -0/+1 | |
| be reused. | |||||
| 2019-12-13 | Implement DynamicLibrary on Cocoa. | Neil | 1 | -0/+1 | |
| 2019-11-02 | GTK+ was renamed to GTK in February 2019 so update documentation to new name. | Zufu Liu | 1 | -1/+1 | |
| 2018-06-02 | Implement IScreenLineLayout for Cocoa Core Text as ScreenLineLayout. | Neil | 1 | -0/+1 | |
| 2018-05-01 | Add IntegerRectangle to simplify drawing lines without casting. | Neil | 1 | -0/+1 | |
| 2018-04-26 | Use <chrono> for platform-independent timing and remove ElapsedTime. | Neil | 1 | -0/+2 | |
| Also use #if for painting measurement as there are 7 sections of code to enable. | |||||
| 2018-04-04 | Move DLL entry points DllMain and Scintilla_DirectFunction into ScintillaDLL.cxx | Neil | 1 | -0/+1 | |
| to simplify build process by eliminating the compilation of ScintillaWin.cxx into ScintillaWinS.o|obj. | |||||
| 2018-03-24 | Feature [feature-requests:#1212]. Move Unicode conversions into UniConversion. | Zufu Liu | 1 | -1/+0 | |
| Move Unicode conversion functions UnicodeFromUTF8 and UTF8FromUTF32Character into UniConversion. | |||||
| 2018-02-27 | Added <utility> and <tuple> to header order and moved POSIX header <sys/time.h> | Neil | 1 | -1/+5 | |
| after standard C++ language headers. | |||||
| 2018-02-26 | Added string_view to order. | Neil | 1 | -0/+1 | |
| 2018-01-28 | Use std::end when filling arrays as reduces chance of mistake. | Neil | 1 | -0/+1 | |
| 2017-08-28 | New header ILoader.h defines ILoader interface as it does not belong in ↵ | Neil | 1 | -0/+1 | |
| ILexer.h. | |||||
| 2017-06-22 | Add DefaultLexer.h to header order. | Neil | 1 | -0/+1 | |
| 2017-06-12 | Removed unused functions and methods from Platform.h. | Neil | 1 | -0/+1 | |
| Replaced Platform::Clamp with Sci::clamp but will later change this to std::clamp once on full C++17 compilers. Drop MouseButtonBounce workaround for very early GTK+/Linux. | |||||
| 2017-05-21 | Use unique_ptr and forward_list to regularize PerLine data structures. | Neil | 1 | -0/+1 | |
| 2017-05-21 | Make SparseVector work with move-only types. | Neil | 1 | -0/+1 | |
| Define UniqueString as a move-only string and use in a SparseVector for ContractionState. Remove SparseVector method specializations that are no longer needed. | |||||
| 2017-04-01 | Standardize on C++ headers, remove headers that aren't needed and add <cstddef> | Neil | 1 | -0/+4 | |
| where it may be needed in the future. | |||||
| 2017-02-11 | Add <iostream> to header order. | Neil | 1 | -0/+1 | |
| 2017-02-01 | Bug [#1901]. Make trackpad scrolling work on Wayland. | John Flatness | 1 | -0/+1 | |
| 2016-11-16 | Extend header checking to include directory and add Sci_Position.h. | Neil | 1 | -0/+1 | |
| 2016-10-27 | Add stdint.h to header ordering in case used in future. | Neil | 1 | -0/+1 | |
