aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2019-07-03Mentioning second bug report for 2110.rel-4-2-0Neil1-1/+3
2019-07-02Updated version number.Neil1-1/+1
2019-07-02Readying 4.2.0 release.Neil8-19/+17
2019-07-02Bug [#2115]. Backed out changeset: d70ccc4f172a as not undefined behaviour.Neil1-3/+2
2019-07-02Bug [#2115]. Backed out changeset: 74b2c724a1df as not undefined behaviour.Neil1-2/+2
2019-07-01Use noexcept on Document where reasonable with no effect on external interface.Neil2-81/+82
Adds LengthNoExcept method that copies Length but only for internal use.
2019-07-01Use noexcept in HighlightDelimiter - its a simple struct.Neil1-5/+5
2019-07-01Bug [#2115]. Fix undefined behaviour of shifting signed 1 by 31.Zufu Liu1-2/+2
2019-06-30Bug [#2038]. Source of input reported in SCN_CHARADDED.Zufu Liu15-47/+95
This may be SC_CHARACTERSOURCE_DIRECT_INPUT, SC_CHARACTERSOURCE_TENTATIVE_INPUT, or SC_CHARACTERSOURCE_IME_RESULT.
2019-06-29Bug [#2115]. Fix undefined behaviour of shifting negative values.Zufu Liu1-2/+3
2019-06-29Bug [#2111]. Retracted change to IME on GTK.Neil2-11/+0
Backed out changeset: 512ec9ab2e7c
2019-06-28Bug [#2116]. Fix deletion of isolated invalid bytes.Zufu Liu2-11/+30
2019-06-22Bug [#1924]. Option to allow block carets to trail selection ranges.Neil6-4/+17
Bit flag value is CARETSTYLE_BLOCK_AFTER=256.
2019-06-21Bug [#2106]. Place line caret in correct location for line caret with block OVR.Neil4-1/+14
That is for CARETSTYLE_LINE | CARETSTYLE_BLOCK mode.
2019-06-25Avoid cppcheck warnings by using same names in declaration and definition.Neil1-2/+2
2019-06-25Bug [#2098]. Remove unused variable.Zufu Liu1-2/+1
2019-06-25Bug [#2098]. Fix single quoted strings where '" (quote, double quote) was seenZufu Liu2-1/+5
as continuing the string.
2019-06-25Bug [#2112]. Matlab lexer now treats keywords as case-sensitive.Zufu Liu2-1/+5
2019-06-25Updating file download sizes to be in megabytes.Neil1-2/+2
2019-06-24For encodings other than UTF-8, split input up into characters before callingNeil Hodgson1-16/+29
InsertCharacter.
2019-06-24On Cocoa, stop internal failures for missing fonts.Neil Hodgson1-3/+5
Avoid propagating terminating NULs from SCI_STYLEGETFONT and SCI_TARGETASUTF8.
2019-06-23Feature [feature-requests:#1297] Fixed one INDIC_IME forgotten in 7594.Neil Hodgson1-1/+1
2019-06-22Bug [#2111]. Reset IME when mouse is clicked on GTK.Hodong Kim2-0/+13
2019-06-22Suppress GCC 8 diagnostic Wcast-function-type as this occurs many times forNeil Hodgson1-0/+3
casts in code generated by Shiboken.
2019-06-22Remove CHECK_DEPRECATED option as deprecations always checked.Neil Hodgson1-4/+1
2019-06-22Feature [feature-requests:#1297] Updates to types of LineScroll,Zufu Liu2-7/+7
[Set]MarginTypeN, and [Set]MarginCursorN.
2019-06-22Feature [feature-requests:#1297] Fixed INDIC_MAX / INDICATOR_MAX.Neil1-1/+1
2019-06-22Feature [feature-requests:#1297] Update to use INDICATOR_ instead of INDIC_ asNeil8-42/+42
INDIC_ is also used for indicator styles.
2019-06-22Feature [feature-requests:#1297] Updated Scintilla.h from Scintilla.iface.Neil2-11/+41
Adds *_NONE and INDICATOR_* enumeration values. Moves old INDIC?_MASK to deprecated section.
2019-06-22Feature [feature-requests:#1297] Tweak aliases so that acronyms longer than 2Neil1-7/+5
characters are treated as words and are also good SNAKE_CASE. This is consistent with coding guidelines such as from Google and Microsoft. https://google.github.io/styleguide/cppguide.html#General_Naming_Rules
2019-06-22Feature [feature-requests:#1297] Explain in change log.Neil1-0/+6
2019-06-18Feature [feature-requests:#1297] 7: Add value aliases for PascalCase constants.Neil2-1/+170
For example, FolderEnd instead of Folderend. Could also be used for a snake_case option if desired.
2019-06-18Feature [feature-requests:#1297] 6: Support enumerated types in APIs.Neil4-5/+21
2019-06-18Feature [feature-requests:#1297] 6: Add enumeration types to APIs.Neil1-124/+125
2019-06-18Feature [feature-requests:#1297] 5: Separate IndicatorNumbers from ↵Neil1-5/+15
IndicatorStyle. Deprecate INDIC?_MASK as they depended on old style-byte indicators so are no longer valid.
2019-06-18Feature [feature-requests:#1297] 4: Add enu for IndicValue and UndoFlags toNeil1-0/+5
gather their values into a type. Add _NONE values for 3 enumerations to make using them simpler.
2019-06-18Feature [feature-requests:#1297] 4: Comment added for SC_MASK_FOLDERS.Neil1-0/+1
2019-06-18Feature [feature-requests:#1297] 3: Add pointer type to ScintillaCallable.py.Neil1-1/+1
2019-06-18Feature [feature-requests:#1297] 3: Add pointer type to WidgetGen.py.Neil1-1/+2
2019-06-18Feature [feature-requests:#1297] 3: Use pointer type in documentation.Neil1-27/+32
2019-06-18Feature [feature-requests:#1297] 3: Add pointer type.Neil1-11/+12
2019-06-18Feature [feature-requests:#1297] 2: Add line type to ScintillaCallable.py.Neil1-2/+2
2019-06-18Feature [feature-requests:#1297] 2: Add line type to WidgetGen.pyNeil1-1/+2
2019-06-18Feature [feature-requests:#1297] 2: Use position and line more in documentation.Neil2-329/+344
2019-06-18Feature [feature-requests:#1297] 2: Replace int with position or line where thatNeil1-118/+119
is more accurate. This helps define where 64-bit values may be passed for huge files.
2019-06-18Feature [feature-requests:#1297] 1: Moved CheckMentioned.py script from scite toNeil1-0/+218
scintilla as it does not access SciTE files.
2019-06-17Feature [feature-requests:#1293]. InsertCharacter replaces AddCharUTF.Zufu Liu9-36/+49
2019-06-17Fix trailing space.Neil1-1/+1
2019-06-16Fix Xcode static analysis warning by renmaing GetImage to CreateImage.Neil Hodgson3-8/+8
A naming convention is used by the analyzer where a "Create" prefix is used when the reference is owned by the caller and a "Get" prefix when the reference is not owned so should not be released.
2019-06-15Bug [#2110]. Limit text returned from WM_GETTEXT to length specified in wParam.Neil4-21/+185
Changed GetTextLength to use same logic as GetText to ensure they agree.