| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2021-10-19 | Extract ChangeScrollRange from common scroll range setting code. | Neil | 1 | -32/+18 | |
| 2021-10-18 | Normalize indentation whitespace. | Neil | 1 | -3/+3 | |
| 2021-10-16 | Bug [#2288] When window wider than scroll width, compute horizEndPreferred | Derek | 1 | -2/+2 | |
| correctly so that SetScrollInfo is not called nor dwell end notified unnecessarily. | |||||
| 2021-10-12 | Feature [feature-requests:#1416] Drop static in unnamed namespace. | Neil | 1 | -1/+1 | |
| 2021-10-06 | Update dependencies. | Neil | 2 | -0/+2 | |
| 2021-09-30 | Bug [#2283] Make resource rule more generic. | Ivan Ustûžanin | 1 | -2/+2 | |
| 2021-09-30 | Bug [#2283] Remove ScintillaDLL.o and ScintRes.o from static library as only | Ivan Ustûžanin | 2 | -4/+8 | |
| needed by DLL. | |||||
| 2021-09-29 | Feature [feature-requests:#1416] Shorten code. | Zufu Liu | 1 | -3/+2 | |
| 2021-09-29 | Feature [feature-requests:#1416] Shorten code and avoid cppcheck warning. | Zufu Liu | 1 | -7/+1 | |
| 2021-09-29 | Updates for 5.1.3.rel-5-1-3 | Neil | 1 | -2/+2 | |
| 2021-09-28 | Widen styleNumber in PositionCacheEntry from 8 to 16 bits to allow styles | Neil | 1 | -0/+1 | |
| larger than 255 to be represented. Before this, it may have been possible but extremely rare for a cache entry to wrongly match a styled lexeme and produce incorrect layout. Using uint16_t from cstdint instead of a bit field as tools perform more checking on that. | |||||
| 2021-09-20 | Updates for 5.1.2. | Neil | 1 | -2/+2 | |
| 2021-09-15 | Move colour mixing implementations into implementation file. | Neil | 1 | -13/+1 | |
| Avoids some warnings but drops constexpr. Use MixedWith in PlatWin for GDI instead of local implementation. Add unit tests for Geometry. | |||||
| 2021-08-28 | Delete standard operations on classes that can not be copied. | Neil | 1 | -0/+6 | |
| 2021-08-24 | Remove line end white space. | Neil | 1 | -1/+1 | |
| 2021-08-14 | Cache the client rectangle to avoid system calls during intensive operations. | Neil | 1 | -0/+7 | |
| 2021-07-23 | Feature [feature-requests:#1411] Implement WM_SETREDRAW to turn off scroll bar | Neil | 1 | -0/+22 | |
| updates. | |||||
| 2021-07-20 | Updates for 5.1.1 release. | Neil | 1 | -2/+2 | |
| 2021-07-17 | Add SCI_AUTOCSETOPTIONS to allow choosing a non-resizeable autocompletion list | Neil | 1 | -5/+7 | |
| on Win32. This also avoids a header rectangle above the list. | |||||
| 2021-07-17 | Updated dependencies. | Neil | 2 | -0/+2 | |
| 2021-07-06 | Feature [feature-requests:#1408] For DBCS on Win32, change WM_GETTEXTLENGTH and | Neil | 1 | -15/+45 | |
| WM_GETTEXT to not use CountUTF16 or GetRelativePositionUTF16, instead using the Win32 API MultiByteToWideChar for consistency between reported length and text as UTF-16. | |||||
| 2021-07-03 | Remove remnants of support for including lexers in Scintilla. | Neil | 6 | -142/+7 | |
| 2021-06-25 | Feature [feature-requests:#1400] Set buffering when technology set. | Zufu Liu | 1 | -0/+1 | |
| 2021-06-18 | Updated for stable version 5.1.0. | Neil | 1 | -2/+2 | |
| 2021-06-17 | Add SciFnDirectStatus, a direct access function which also returns status so can | Neil | 1 | -2/+18 | |
| improve performance for client code that called SCI_GETSTATUS after every API to check for failure. | |||||
| 2021-06-09 | Reduce casts by defining methods for common conversions. | Neil | 2 | -4/+4 | |
| 2021-06-05 | Bug [#2259]. Fix gcc link-time-optimization compilation. | Neil | 3 | -0/+4 | |
| 2021-05-29 | Updates for 5.0.3. | Neil | 1 | -2/+2 | |
| 2021-05-28 | Better exception handling for noexcept methods. More accurate noexcept marking. | Neil | 1 | -1/+6 | |
| 2021-05-28 | Merge init into ScintillaWin constructor as not called from anywhere else. | Neil | 2 | -30/+15 | |
| Ensure variables initialised. Remove dead code. | |||||
| 2021-05-25 | Update dependencies. | Neil | 2 | -128/+126 | |
| 2021-05-24 | Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h | Neil | 8 | -306/+323 | |
| and ScintillaStructures.h using scoped enumerations. Use these headers instead of Scintilla.h internally. External definitions go in the Scintilla namespace and internal definitio0ns in Scintilla::Internal. | |||||
| 2021-05-22 | Rename ColourAlpha to ColourRGBA to avoid clashes when a ColourAlpha typedef | Neil | 2 | -48/+48 | |
| will be published in externally visible header. | |||||
| 2021-05-17 | Fix issues reported by Coverity and Visual C++ Analysis. | Neil | 2 | -21/+31 | |
| Throw when (impossible) dynamic_cast failures occur as it isn't reasonable to recover. That removes 'noexcept' from some methods. Cast to avoid 'sub-expression overflow' warnings. Add default initializations and noexcept where safe. Move DropRenderTarget out of #if to avoid some preprocessor use. | |||||
| 2021-05-16 | Remove untenable noexcept as RGBAImageSet constructor can throw. | Neil | 1 | -1/+1 | |
| 2021-05-11 | Implement UpdateBaseElements on Win32 to update colours to match current system | Neil | 1 | -0/+21 | |
| settings. Trigger UpdateBaseElements when system settings change. | |||||
| 2021-05-09 | Feature [feature-requests:1405]. Enable hardware-enforced stack protection in | Neil | 1 | -0/+1 | |
| Visual C++ project file. | |||||
| 2021-05-08 | Feature [feature-requests:1405]. Enable hardware-enforced stack protection. | Neil | 1 | -2/+5 | |
| 2021-05-03 | Rename Opaque to WithoutAlpha as it returns a colour with 0 alpha. New Opaque | Neil | 1 | -2/+2 | |
| method returns a colour with maximum (0xff) alpha. | |||||
| 2021-04-27 | Rename CharacterSet and CharacterCategory modules in Scintilla to CharacterType | Neil | 5 | -45/+45 | |
| and CharacterCategoryMap to avoid clashes with Lexilla when building an executable that includes both. | |||||
| 2021-04-26 | Extract related groups of fields out of ViewStyle into new structs. | Neil | 1 | -2/+2 | |
| Size of ViewStyle makes it more difficult to understand and this helps a bit. | |||||
| 2021-04-25 | Feature [feature-requests:#1402]. Unify colour type with ColourAlpha. | Neil | 2 | -24/+24 | |
| Change ColourDesired to ColourAlpha in styles. Remove ColourDesired. | |||||
| 2021-04-21 | Updates for 5.0.2.rel-5-0-2 | Neil | 1 | -2/+2 | |
| 2021-04-20 | Avoid some warnings and make similar code more consistent. | Neil | 1 | -15/+8 | |
| 2021-04-20 | If text format creation fails, could be because of bad locale so try "en-us". | Neil | 1 | -0/+7 | |
| 2021-04-20 | Bug [#2246]. Fix encoding used for DirectWrite text display. | Neil | 1 | -5/+6 | |
| 2021-04-15 | Bug [#2228]. Ensure sysCaretBitmap does not leak. | Mat Berchtold | 1 | -1/+6 | |
| 2021-04-09 | Bug [#2243]. Fix crash when technology=2 (SC_TECHNOLOGY_DIRECTWRITERETAIN).rel-5-0-1 | Neil | 1 | -1/+1 | |
| 2021-04-07 | Feature [feature-requests:#1364]. Correct argument to TextWide for | Neil | 1 | -2/+2 | |
| autocompletion lists. | |||||
| 2021-04-05 | Mark more destructors as noexcept. Delete unwanted LisboxX standard methods. | Neil | 1 | -13/+16 | |
