aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
2019-07-02Readying 4.2.0 release.Neil1-2/+2
2019-06-30Bug [#2038]. Source of input reported in SCN_CHARADDED.Zufu Liu1-11/+8
This may be SC_CHARACTERSOURCE_DIRECT_INPUT, SC_CHARACTERSOURCE_TENTATIVE_INPUT, or SC_CHARACTERSOURCE_IME_RESULT.
2019-06-22Feature [feature-requests:#1297] Update to use INDICATOR_ instead of INDIC_ asNeil1-5/+5
INDIC_ is also used for indicator styles.
2019-06-17Feature [feature-requests:#1293]. InsertCharacter replaces AddCharUTF.Zufu Liu1-3/+3
2019-06-17Fix trailing space.Neil1-1/+1
2019-06-15Bug [#2110]. Limit text returned from WM_GETTEXT to length specified in wParam.Neil1-21/+18
Changed GetTextLength to use same logic as GetText to ensure they agree.
2019-06-15Feature [feature-requests:#1295]. Lexer added for DataFlex.Wil van Antwerpen3-0/+25
2019-06-13Make a new release due to a regression in SciTE with 4.1.6.rel-4-1-7Neil1-2/+2
2019-06-05Preparing for 4.1.6 release.Neil1-2/+2
2019-05-29Bug [#2104]. Use 'l' long format length sub-specifier for HRESULT as it is long.Neil2-4/+4
2019-05-11Feature [feature-requests:#1283]. Standardise spelling - "color" -> "colour".Neil1-7/+7
2019-05-08Use value-initialization and nullptr (for true pointers) to avoid 'using NULL'Neil3-41/+25
warnings.
2019-04-29Feature [feature-requests:#1280]. Lexer added for X12.Iain Clarke3-0/+17
2019-04-28Use const and noexcept for private methods.Neil1-6/+6
2019-04-28Fix analysis warnings for GlobalMemory class.Neil1-5/+5
2019-04-28Switch from /std:c++latest to /std:c++17 as Visual C++ 2019 now includes someNeil2-5/+5
C++20 features.
2019-04-27Feature [feature-requests:#1279]. Removed invalid check when avoiding SelectFontNeil1-12/+7
if font not changed. Didn't correct the check as its not justified by minimal performance benefit so removed the supporting variable.
2019-04-13Preparing for 4.1.5 release.Neil1-2/+2
2019-04-12Bug [#2093]. Improve efficiency with single byte character sets.Zufu Liu1-2/+2
2019-04-12Bug [#2093]. Remove restrictions on IME input length.Zufu Liu1-1/+1
2019-04-11Feature [feature-requests:#1277]. Support coloured text on Windows 8.1+.Zufu Liu1-3/+15
2019-04-11Bug [#2093]. Use wstring_view to unify adding text and eliminate AddCharUTF16.Zufu Liu1-35/+12
2019-04-11Use views for input string parameters as that allows calling with more variedZufu Liu1-9/+9
values and can avoid allocations. Switched &[0] to data() to avoid some warnings.
2019-04-08Make dependencies scripts work when called from ↵Neil1-2/+2
scite/scripts/RegenerateSource.py.
2019-04-06Updated dependencies for change set 7401 adding UniqueString.cxx.Neil2-0/+6
2019-04-05Move UniqueStringCopy into its own source file UniqueString.cxx to hide theNeil2-0/+2
implementation.
2019-04-03Help static analyzers with assert.Neil1-0/+2
2019-04-01Switch generation of make dependencies to Python scripts DepGen.py.Neil5-1583/+3995
Dependencies files deps.mak and nmdeps.mak are formatted with one file per line as that makes it easier to examine differences between versions.
2019-03-29Include "CharacterCategory.h" in all files that include "Document.h" as it willNeil1-0/+1
be needed for adding a CharacterCategory feature.
2019-03-27Updated dependencies for Win32.Neil2-70/+81
2019-03-25Use generic std::abs instead of abs and fabs.Neil2-7/+7
2019-03-25Use generic versions of ceil, floor, round, lround, trunc from <cmath>.Neil1-15/+15
2019-03-20Implement WStringFromUTF8 to simplify code that creates wstring objects forNeil1-4/+2
regular expressions and calling the Win32 API.
2019-03-19Make destructors public to avoid warnings.Neil1-1/+3
2019-03-18Add some operators to Point to simplify client code.Neil2-6/+5
2019-03-18Minor warnings fixed - uninitialized, nullptr, type agreement, avoid casts.Neil1-6/+5
2019-03-18Use noexcept where allowed, not inherited from base class, and not a COM method.Neil1-57/+57
2019-03-05Implement QueueIdleWork on Win32.Neil1-1/+32
2019-03-05Validate window after FullPaint caused by abandoning paint.Neil1-0/+1
2019-03-05Remove feature where WM_PAINT treated wParam as a PAINTSTRUCT*.Neil1-23/+10
2019-03-04Updated version number for release.Neil1-2/+2
2019-02-28Feature [feature-requests:#1265]. Common Intermediate Language (CIL) lexer.Jed Altahan1-0/+3
2019-02-24Use noexcept and constexpr where possible and reasonable.Neil2-38/+36
2019-02-24Remove font caching on Win32.Neil1-107/+7
2019-01-13Replace the only use of a function from <cctype> with a Scintilla function.Neil2-2/+0
Remove inclusion of <cctype> except in lexers as cctype functions often behave poorly and may crash for out of bounds arguments.
2019-01-07Updates for version 4.1.3.rel-4-1-3Neil1-2/+2
2019-01-06Bug [#2068]. Fix some clang-tidy warnings.Zufu Liu1-4/+4
2018-12-07Feature [feature-requests:#1246]. Replace MAKELONG with MAKELRESULT andZufu Liu1-3/+3
MAKEWPARAM which are more specific.
2018-11-21Feature [feature-requests:#1242]. Add lexer for NimJad Altahan1-0/+3
2018-10-17Use nullptr, default brace and member initialisation for some simple cases.Neil2-52/+42