Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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. | |||||
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-03-11 | Only substitute one instance of RE for ReplaceREInFile. | Neil | 1 | -1/+1 | |
2021-03-09 | Add argument to allow retrieving credits with or without links. | Neil | 1 | -2/+2 | |
2021-02-06 | Remove Lexilla definitions from Scintilla.iface as they are now in | Neil | 1 | -2/+1 | |
lexilla/include/LexicalStyles.iface. Remove filtering of lexical constants from HFacer.py. | |||||
2021-02-04 | Remove lexer data extraction and regeneration since lexers are now in Lexilla. | Neil | 3 | -78/+0 | |
2021-02-01 | Move the patterns to check and exclude to HeaderOrder.txt so one script can be | Neil | 2 | -69/+48 | |
used for Scintilla, Lexilla, and SciTE. Update HeaderOrder.txt to match files moved out to Lexilla. | |||||
2020-08-12 | Updating version number. | Neil Hodgson | 1 | -1/+1 | |
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-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-05-23 | Regenerate version numbers in cocoa/Scintilla project. | Neil | 1 | -2/+12 | |
2020-05-19 | Use pathlib in generator scripts. | Neil | 3 | -45/+42 | |
2020-05-19 | Remove call to ScintillaData as result not used. | Neil | 1 | -2/+0 | |
2020-04-17 | Update Python versions. Modules that are only used as top level scripts or from | Neil | 5 | -16/+8 | |
scripts that require Python 3.6 have Python 2.x support removed. Modules that may be called from Python 2 for PySide require Python 2.7. Documented how to run scripts. | |||||
2020-03-16 | List headers in HeaderOrder.txt that are not used. | Neil | 2 | -5/+6 | |
Remove unused headers from HeaderOrder.txt. | |||||
2020-03-11 | Modernize and simplify script. Now requires Python 3. | Neil | 1 | -46/+28 | |
2020-03-11 | Add or update #! lines of Python scripts to use python3. | Neil | 7 | -4/+9 | |
2020-02-05 | Feature [feature-requests:#1335] Archive just the repository files to ↵ | Neil | 1 | -0/+5 | |
scintilla.tgz. | |||||
2020-01-26 | Small simplification and spelling fix. | Neil | 1 | -3/+2 | |
2019-12-22 | Lexilla testing framework. | Neil | 2 | -0/+8 | |
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 | Extend script to cover last Unicode character. | Zufu Liu | 1 | -1/+1 | |
Does not affect output. | |||||
2019-11-02 | GTK+ was renamed to GTK in February 2019 so update documentation to new name. | Zufu Liu | 1 | -1/+1 | |
2019-06-18 | Feature [feature-requests:#1297] 7: Add value aliases for PascalCase constants. | Neil | 1 | -0/+6 | |
For example, FolderEnd instead of Folderend. Could also be used for a snake_case option if desired. | |||||
2019-06-18 | Feature [feature-requests:#1297] 6: Support enumerated types in APIs. | Neil | 2 | -0/+7 | |
2019-06-18 | Feature [feature-requests:#1297] 2: Use position and line more in documentation. | Neil | 1 | -9/+10 | |
2019-06-18 | Feature [feature-requests:#1297] 1: Moved CheckMentioned.py script from scite to | Neil | 1 | -0/+218 | |
scintilla as it does not access SciTE files. | |||||
2019-04-11 | Updated required Python version due to differences in how imports work in 2.7. | Neil | 1 | -2/+2 | |
2019-04-08 | Use native line ends for make dependencies files. | Neil | 1 | -3/+4 | |
2019-04-08 | Make dependencies scripts work when called from ↵ | Neil | 2 | -2/+13 | |
scite/scripts/RegenerateSource.py. | |||||
2019-04-01 | Switch generation of make dependencies to Python scripts DepGen.py. | Neil | 3 | -0/+158 | |
Dependencies files deps.mak and nmdeps.mak are formatted with one file per line as that makes it easier to examine differences between versions. | |||||
2019-03-29 | Feature [feature-requests:#1259]. Add SCI_SETCHARACTERCATEGORYOPTIMIZATION API | Neil | 1 | -5/+15 | |
to optimize speed of character category features. | |||||
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-09-14 | Normalize whitespace. | Zufu Liu | 5 | -7/+6 | |
2017-09-14 | Remove automatically generated line end whitespace. | Zufu Liu | 1 | -2/+2 | |
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 | |