aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2020-11-28Update build dependencies.Neil1-3/+0
2020-11-02Use std::size instead of ELEMENTS so StringCopy.h is only used by Lexilla andNeil4-6/+2
can be removed from Scintilla.
2020-10-30Make *.tex use native line ends for Lexilla tests.Neil1-0/+1
2020-09-18Updated Xcode projects for Xcode 12.Neil Hodgson2-2/+6
2020-09-18Fix building with Xcode 12 by defining move constructors for FontAlias, Style,Neil4-4/+21
and PositionCacheEntry.
2020-09-11Added tag rel-4-4-5 for changeset 71b428eed36aNeil1-0/+1
2020-09-11Updates to Lexilla interface mentioned.rel-4-4-5Neil1-0/+6
2020-09-09Change release date.Neil2-3/+3
2020-09-09Added information on lexer library functions SetLibraryProperty andNeil1-1/+11
GetLibraryPropertyNames.
2020-09-05Add blurb for new version.Neil2-5/+5
2020-09-05Update version number to 4.4.5.Neil14-28/+28
2020-08-27Bug [#2197]. Avoid rewrap when checkTextAndStyle finds unchanged from cache.Zufu Liu1-5/+4
2020-08-26Bug [#2199]. Fixed bug where a hovered INDIC_TEXTFORE indicator was not applyinguhf72-3/+11
the hover colour to the whole range.
2020-08-25Move SCI_MULTIEDGEADDLINE impleemntation into ViewStyle as it is too complex forNeil3-12/+17
switch case in Editor.
2020-08-25Feature [feature-requests:1350]. Add SCI_GETMULTIEDGECOLUMN.Derek Brown6-5/+76
2020-08-24SciTE change log.Neil1-0/+5
2020-08-21Reduce code and variable lifetime.Zufu Liu1-6/+3
2020-08-21Bug [#2197]. Fixed bug where layout caching was ineffective.Neil2-1/+6
2020-08-21Bounds checks for setting annotation style.Mitchell Foral1-8/+12
2020-08-12Updating version number.Neil Hodgson3-4/+4
2020-08-12Use groups without folders as groups with folders caused trouble for new clones.Neil Hodgson4-1020/+1024
2020-08-11Fixed bug where gradient indicators were not showing hovered appearance.Neil2-2/+5
2020-08-11Bug [#2193]. Fixed bug where hovered indicator was not returning to non-hoveruhf71-0/+1
when mouse over selection.
2020-08-09SciTE change log.Neil1-0/+8
2020-08-09Use [[fallthrough]] to reduce warnings from Visual Studio static analysis.Neil1-1/+1
2020-08-04Bounds checking for SetSelectionN* APIs.Mitchell Foral1-0/+3
2020-08-03Use const. Use separate lines for variable declarations.Neil1-3/+5
2020-08-03Bug [#2193]. Fixed bug where hovered indicator was not returning to non-hoveruhf72-0/+7
appearance when mouse moved out of window or into margin.
2020-08-03Bug [#2170]. Fixed cursor flicker when click past end of file and there is anuhf71-1/+4
indicator at file end.
2020-07-31More consistent rectangle arguments.Neil1-11/+10
Change radius argument on PathRoundRectangle to double as this causes fewer warnings.
2020-07-31Simplify code by using CAIRO_EXTEND_REPEAT to tile a pattern instead of loopingNeil1-21/+6
over all the tiles.
2020-07-31Refactored ContextCursor to avoid multiple Point conversions.Neil1-15/+15
Reversed order of selection checks as SelectionEmpty is lighter than PointInSelection.
2020-07-31Bug [#2170]. Fixed cursor flicker over an indicator with hover style.uhf72-0/+8
2020-07-30Bug [#2191]. Allow setting CPPFLAGS to support hardening.Andreas Rönnquist2-2/+6
2020-07-29SciTE change log.Neil1-0/+5
2020-07-29Use dynamic_cast for SurfaceGDI::Copy as it will fail better if a mistake made.Neil1-1/+1
2020-07-28Bug [#2189]. Allow cross-building for GTK by choosing pkg-config.Andreas Rönnquist2-2/+7
2020-07-28Fix position of marker symbols for SC_MARGIN_RTEXT which were being moved basedNeil2-5/+20
on width of text.
2020-07-28Fix factory leak by using global factory instead of getting from render target.Neil1-4/+1
2020-07-27Add private SurfaceD2D::GetBitmap to better encapsulate the bitmap render targetNeil1-8/+11
and simplify callers.
2020-07-21Added tag rel-4-4-4 for changeset f422793aa52fNeil1-0/+1
2020-07-18Update download size.rel-4-4-4Neil1-1/+1
2020-07-18Remove some constexpr as they made shiboken fail.Neil1-2/+2
2020-07-18Updates for 4.4.4.Neil11-30/+27
2020-07-17Tidied up code using wstring, which will often avoid allocating, and fixingNeil1-9/+9
variable names.
2020-07-17Fix truncation of locale due to not counting NUL. Add return code check.Neil1-2/+4
2020-07-16Add constexpr, const, noexcept and make other small improvements to lexlib.Neil13-96/+90
2020-07-16Add move constructor to complete set of standard methods.Neil1-14/+21
2020-07-16Make EncodingType an enum class.Neil2-6/+6
2020-07-16Make WrapMode an enum class for more type safety.Neil4-14/+14