aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
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
2020-07-16Rename validLevel to ValidLevel and make an enum class.Neil4-20/+20
2020-07-16Rename typeOfFold to FoldPart and make an enum class.Neil3-21/+21
2020-07-16Make AddNumber an enum class for more type safety.Neil2-4/+4
2020-07-16Use enum class for selectionUnit (previously selectionType) for more type ↵Neil2-32/+32
safety.
2020-07-16Make EncodingFamily an enum class for more type safety.Neil3-6/+6
2020-07-16Add some const, constexpr.Neil3-3/+3
2020-07-15Feature [feature-requests:1368]. Add BraceMatchNext API.Zufu Liu7-4/+20
2020-07-15Hoist common conversion code into RectangleFromPRectangle.Neil1-4/+12
2020-07-15Stronger argument validation in BlobInline methods.Neil1-1/+9
2020-07-15Add extra checking and assertions for NULLs.Neil1-30/+34
Use ReleaseUnknown which is noexcept making it easier to reason about exceptions. Add constexpr where possible.
2020-07-14Make simple methods on simple classes constexpr.Neil1-31/+31