| 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. | |||||
| 2023-12-20 | Add IDocumentEditable interface for efficient interaction with document objects. | Neil | 1 | -7/+11 | |
| 2023-11-20 | Move ReadFileAsList and FindSectionInList from Scintilla to Lexilla as Lexilla | Neil | 1 | -38/+0 | |
| is the only user of these functions. | |||||
| 2023-11-05 | Simplify script. | Neil | 1 | -3/+2 | |
| 2023-11-04 | Document 'credits' property.rel-5-3-8 | Neil | 1 | -0/+3 | |
| 2023-10-03 | Fix warning from Python 3.12. | Neil | 1 | -2/+2 | |
| 2023-05-14 | Replace CP-437 with ISO-8859-1 as neutral encoding as more common and standard. | Neil | 1 | -2/+2 | |
| 2023-03-15 | Fix some warnings from ruff. | Neil | 5 | -30/+31 | |
| 2023-03-13 | Support 4 digit version numbers so version 10.0.0 will work. | Neil | 2 | -3/+3 | |
| 2023-02-15 | Feature [feature-requests:#1477] More typesafe bindings of *Full APIs in | Zufu Liu | 1 | -3/+3 | |
| ScintillaCall. | |||||
| 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-10-26 | Add check for validity of 'seealso' links in documentation. Fix 'seelaso' links. | Neil | 1 | -2/+9 | |
| Fix some minor formatting issues. | |||||
| 2022-10-19 | Feature [feature-requests:#1455] Implement GetStyledTextFull as a 64-bit safe | Neil | 1 | -12/+15 | |
| version of GetStyledText. | |||||
| 2022-10-09 | File changed/new messages are printed in diagnostic format to make it easier to | Neil | 1 | -1/+1 | |
| open the file. | |||||
| 2022-08-01 | Update CheckMentioned.py script to handle ...Full structs. | Neil | 1 | -0/+6 | |
| Fix documentation to use correct ID attribute. | |||||
| 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-05-17 | Duplicate APIs to support 64-bit document positions on Win32: | Neil | 1 | -0/+3 | |
| SCI_GETTEXTRANGEFULL, SCI_FINDTEXTFULL, and SCI_FORMATRANGEFULL. | |||||
| 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-08-31 | Bug [#2279] Ensure file closed. Drop deprecated "U" as that is the default. | mpheath | 2 | -2/+2 | |
| 2021-08-24 | Remove line end white space. | Neil | 3 | -4/+4 | |
| 2021-07-12 | Add support for benchmarks and Russian text in the unit tests. | Neil | 1 | -0/+2 | |
| 2021-07-03 | Update all version numbers in Xcode project. Was missed because of change to | Neil | 1 | -1/+2 | |
| ReplaceREInFile. | |||||
| 2021-06-17 | Move ScintillaCall from SciTE project. | Neil | 1 | -7/+178 | |
| 2021-06-11 | Display warning if can't find line to update. | Neil | 1 | -0/+2 | |
| 2021-06-10 | Call HFacer to ensure Scintilla.h also updated. | Neil | 1 | -4/+9 | |
| 2021-06-07 | Provide more data for unused values in commented-out code to make it easier to | Neil | 1 | -1/+9 | |
| choose a better feature value. | |||||
| 2021-05-25 | Check that constants are documented. | Neil | 1 | -0/+4 | |
| 2021-05-24 | Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h | Neil | 3 | -4/+133 | |
| 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-06 | Remove dead code and imports as found by Vulture. | Neil | 8 | -221/+11 | |
| https://github.com/jendrikseipp/vulture | |||||
| 2021-04-27 | Rename CharacterSet and CharacterCategory modules in Scintilla to CharacterType | Neil | 2 | -7/+6 | |
| and CharacterCategoryMap to avoid clashes with Lexilla when building an executable that includes both. | |||||
| 2021-04-27 | Update Unicode code generation scripts. Update Lexilla, use pathlib, simplify. | Neil | 2 | -6/+11 | |
| 2021-04-26 | Remove some tracing from HeaderCheck as it produces much uninteresting output. | Neil | 1 | -2/+1 | |
| 2021-04-09 | Add count argument to ReplaceREInFile so can modify mutiple occurrences. | Neil | 2 | -3/+4 | |
| Fixed downloads page. | |||||
| 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-27 | Add APIs for setting translucency and stroke width of markers. | Neil | 1 | -0/+6 | |
| 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. | |||||
