aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2021-04-27Update Unicode code generation scripts. Update Lexilla, use pathlib, simplify.Neil2-6/+11
2021-04-26Avoid some warnings.Neil7-28/+31
2021-04-26Change std::optional value() to * as value() is not implemented in older macOSNeil Hodgson2-20/+20
releases. Using value() produces error: error: call to unavailable member function 'value': introduced in macOS 10.14
2021-04-26Extract related groups of fields out of ViewStyle into new structs.Neil6-191/+217
Size of ViewStyle makes it more difficult to understand and this helps a bit.
2021-04-26Move hotspotSingleLine from ViewStyle to EditModel as it defines behaviour, notNeil5-7/+6
appearance.
2021-04-25Feature [feature-requests:#1402]. Unify colour type with ColourAlpha.Neil24-319/+298
Change ColourDesired to ColourAlpha in styles. Remove ColourDesired.
2021-04-26Remove some tracing from HeaderCheck as it produces much uninteresting output.Neil1-2/+1
2021-04-26Ignore VS Code settings.Neil1-0/+1
2021-04-24Moved link to follow document.Neil1-1/+1
2021-04-23Remove volatile qualifiers as they cause an error with Clang 12.Neil Hodgson1-2/+2
The glib documentation shows use without volatile and mentions that - While location has a volatile qualifier, this is a historical artifact and the pointer passed to it should not be volatile. https://developer.gnome.org/glib/stable/glib-Threads.html#g-once-init-enter
2021-04-23Work around some Qt 5.14 and 5.15 deprecations with #if so will contrinue toNeil Hodgson1-3/+36
work on Qt 4.x.
2021-04-23Qt 5.15 requires #include <QPainterPath>. Previous versions found it indirectly.Neil Hodgson1-0/+1
2021-04-23Added tag rel-5-0-2 for changeset 5b51130729eaNeil1-0/+1
2021-04-21Updates for 5.0.2.rel-5-0-2Neil9-19/+18
2021-04-21Bug [#2027]. Fix GetFontLocale signature.Zufu Liu1-2/+2
2021-04-20Bug [#2248]. Make autocompletion look the same on macOS 11 as macOS 10Petko Georgiev2-9/+17
by using NSTableViewStylePlain. This prevents truncation of the text of items as well as avoiding problems with size and padding.
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