aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2021-04-20Add header to make recent change compile with Xcode.Neil Hodgson1-0/+1
2021-04-20Avoid some warnings and make similar code more consistent.Neil1-15/+8
2021-04-20If text format creation fails, could be because of bad locale so try "en-us".Neil1-0/+7
2021-04-20Bug [#2027]. Implement font locale SCI_SETFONTLOCALE on Win32 using DirectWrite.Neil11-9/+71
2021-04-20Feature [feature-requests:#1402]. Unify colour type with ColourAlpha.Neil3-35/+28
Change ColourDesired to ColourAlpha in XPM and RGBAImage.
2021-04-20Bug [#2246]. Fix encoding used for DirectWrite text display.Neil2-5/+18
2021-04-15Bug [#2228]. Ensure sysCaretBitmap does not leak.Mat Berchtold1-1/+6
2021-04-15Bug [#2234]. Remove method that is no longer called.Neil2-5/+0
2021-04-15Add default case to IME checking of underline type to prevent warnings.Neil Hodgson1-0/+1
2021-04-15Add casts to prevent warnings from MSVC.Neil1-21/+23
2021-04-15Avoid warning from MSVC.Neil1-1/+3
2021-04-15Widen some position and length values to match core APIs.Neil2-6/+6
2021-04-15Avoid crash on Win32 as it doesn't support font options.Mitchell Foral1-4/+6
2021-04-11Turn off assert for release builds.Neil Hodgson1-3/+4
Remove old SCI_EMPTYCATALOGUE define which is no longer used.
2021-04-09Moved tag rel-5-0-1 to changeset 52d56f79dc0f (from changeset 91a02e430905)Neil1-0/+2
2021-04-09Bug [#2243]. Fix crash when technology=2 (SC_TECHNOLOGY_DIRECTWRITERETAIN).rel-5-0-1Neil2-1/+5
2021-04-09Add count argument to ReplaceREInFile so can modify mutiple occurrences.Neil3-6/+7
Fixed downloads page.
2021-04-09Added tag rel-5-0-1 for changeset 91a02e430905Neil1-0/+1
2021-04-09Changed release date.Neil2-3/+3
2021-04-09Document element colours.Neil1-25/+129
2021-04-07Ignore Release build directory which may be created by Visual C++.Neil1-0/+1
2021-04-07Feature [feature-requests:#1364]. Correct argument to TextWide forNeil1-2/+2
autocompletion lists.
2021-04-06Minor fixes - noexcept, unnamed namespace, initialisation, casting.Neil1-61/+81
Leaves GTK object definition as is since this is essentially C code with documentation and examples in C.
2021-04-06Explicit wide call to prevent fail if built in different Unicode mode on Win32.Neil1-1/+1
2021-04-06Log font settings change detection.Neil1-0/+5
2021-04-05More noexcept on Cocoa, GTK, and Qt.Neil3-12/+10
2021-04-05Mark more destructors as noexcept. Delete unwanted LisboxX standard methods.Neil2-19/+22
2021-04-05Extract unnamed caching enum as LineLayoutCache::Cache and change to enum class.Neil4-21/+23
2021-04-05Extract CharClassify::cc as CharacterClass and change to enum class.Neil6-63/+64
2021-04-05Change IndentView, WhiteSpaceVisibility, and TabDrawMode to enum class.Neil4-26/+26
2021-04-05Change actionType to an enum class.Neil3-46/+46
2021-04-05Change CaseConversion to an enum class.Neil7-34/+34
2021-04-05Detect (some) changes to font options and clear position caches when changed.Neil2-0/+44
To experiment, use the Fonts panel of the Tweaks application.
2021-04-04Respond to changes in font antialiasing and hinting options on GTK 2.Neil1-4/+8
2021-04-03Updates for 5.0.1.Neil9-14/+16
2021-04-03Feature [feature-requests:#1392]. Minor optimizations of RESearch.Zufu Liu1-11/+12
2021-04-03Update compatibility information.Neil2-3/+3
2021-04-03Update information on lexing removing content superceded by Lexilla.Neil1-41/+17
2021-04-02Bug [#2238]. Fix drawing in revealed area after enlarging window.Petko Georgiev2-0/+7
2021-04-01Fix drawing of calltip on curses.Mitchell Foral1-1/+3
2021-04-01Changed parameters for DrawTabArrow and DrawTabArrowFn to allow additionalNeil2-9/+9
traits in the future.
2021-03-31Feature [feature-requests:1393]. Optimization in SurfaceD2D::AverageCharWidth.Zufu Liu1-1/+1
2021-03-29Add illustration of annotation shapes. Remove erroneous explanation ofNeil2-5/+6
SCI_EOLANNOTATIONSETSTYLES as it was never implemented.
2021-03-29Clarify encoding of EOL annotation text.Neil2-1/+5
2021-03-30Treat SC_MARK_CHARACTER as Unicode for a wider variety of symbols.Neil6-11/+19
2021-03-29Align polygons so they are crisp.Neil2-10/+21
2021-03-29Modify ListBox::GetValue to return a std::string to avoid fixed size buffersNeil6-39/+31
and the possibility of truncation.
2021-03-29Add SCI_SETELEMENTCOLOUR and related APIs to change colours of visible elements.Neil20-12/+129
Implement SC_ELEMENT_LIST* to change colours of autocompletion lists.
2021-03-28Use PenColourAlpha instead of PenColour ensuring translucent text works.Neil1-36/+26
Use enum class for encoding type. Avoid warnings.
2021-03-28Add shapes with curved and rounded ends to EOL annotations as EOLANNOTATION_*.Neil5-25/+175