aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
2019-11-21Make reference argument const as safe to do so.Neil1-4/+4
2019-11-15Feature [feature-requests:#1316] Allow target to have virtual space.Neil1-3/+3
2019-11-16Protect against use of null input context.Zufu Liu1-1/+3
2019-11-16Bug [#2137]. Clear IME state when switching language.Zufu Liu1-0/+3
2019-11-12Feature [feature-requests:#1324] Add Hollywood lexer.Andreas Falkenhahn3-0/+27
2019-11-02Fix typo in comment.Zufu Liu1-1/+1
2019-10-31Feature [feature-requests:#1319] Include ARM64 in project.Zufu Liu1-2/+38
2019-10-31Feature [feature-requests:#1319] SUBSYSTEM is more explanatory than ADD_LINK.Neil1-3/+3
2019-10-30Feature [feature-requests:#1319] Allow building for ARM64.Zufu Liu1-4/+7
2019-10-30Feature [feature-requests:#1304] Avoid unnecessary IME caret movement.Zufu Liu1-7/+24
2019-10-20Readying 4.2.1 release.rel-4-2-1Neil1-2/+2
2019-07-17Feature [feature-requests:#1300] part 5. Stop Google IME on Windows 7 movingjohnsonj1-0/+5
while typing.
2019-07-17Feature [feature-requests:#1300] part 4. Align candidate window to target partjohnsonj1-0/+5
of composition text.
2019-07-17Feature [feature-requests:#1300] part 3. Stop candidate window moving whilejohnsonj1-2/+5
typing.
2019-07-17Feature [feature-requests:#1300] part 2. Position candidate window closer toZufu Liu1-1/+5
composition text.
2019-07-17Bug [#2120]. Avoid candidate window obscuring text when near bottom of screen.Neil1-2/+8
Feature [feature-requests:#1300] part 1.
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