aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa
AgeCommit message (Collapse)AuthorFilesLines
2019-12-31Move collection of modules from Catalogue.cxx to CatalogueModules.h so it canNeil1-1/+0
be reused.
2019-12-13Implement DynamicLibrary on Cocoa.Neil1-7/+45
2019-12-13Move SCI_LOADLEXERLIBRARY from platform layers to ScintillaBase.cxx.Neil1-5/+0
This allows removal of related #include statements.
2019-12-13Add or fix file name comments.Neil7-4/+7
2019-12-11Readying 4.2.3 release.rel-4-2-3Neil1-2/+2
2019-12-03Readying 4.2.2 release.rel-4-2-2Neil1-2/+2
2019-11-15Feature [feature-requests:#1316] Allow target to have virtual space.Neil1-3/+3
2019-11-12Feature [feature-requests:#1324] Add Hollywood lexer.Andreas Falkenhahn1-0/+4
2019-11-02Release build turns off assert by defining NDEBUG.Neil Hodgson1-1/+4
2019-10-20Readying 4.2.1 release.rel-4-2-1Neil1-2/+2
2019-09-30Update project to Xcode 11.Neil Hodgson1-5/+1
2019-07-02Readying 4.2.0 release.Neil1-2/+2
2019-06-30Bug [#2038]. Source of input reported in SCN_CHARADDED.Zufu Liu3-8/+8
This may be SC_CHARACTERSOURCE_DIRECT_INPUT, SC_CHARACTERSOURCE_TENTATIVE_INPUT, or SC_CHARACTERSOURCE_IME_RESULT.
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-22Feature [feature-requests:#1297] Update to use INDICATOR_ instead of INDIC_ asNeil2-5/+5
INDIC_ is also used for indicator styles.
2019-06-17Feature [feature-requests:#1293]. InsertCharacter replaces AddCharUTF.Zufu Liu1-2/+2
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-15Feature [feature-requests:#1295]. Lexer added for DataFlex.Wil van Antwerpen1-0/+4
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-11Feature [feature-requests:#1283]. Standardise spelling - "color" -> "colour".Neil2-3/+3
2019-04-29Feature [feature-requests:#1280]. Lexer added for X12.Iain Clarke1-0/+4
2019-04-13Preparing for 4.1.5 release.Neil1-2/+2
2019-04-05Move UniqueStringCopy into its own source file UniqueString.cxx to hide theNeil1-0/+4
implementation.
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-28Updated ScintillaTest internationalization to fix warnings from Xcode 10.2.Neil Hodgson3-9/+6
2019-03-28Updated ScintillaFramework internationalization to fix warnings from Xcode 10.2.Neil Hodgson2-14/+11
2019-03-25Use generic std::abs instead of abs and fabs.Neil3-3/+3
2019-03-25Use generic versions of ceil, floor, round, lround, trunc from <cmath>.Neil4-13/+20
2019-03-11Make idle processing more efficient on Cocoa by only notifying the relevantNeil Hodgson1-1/+1
Scintilla instance.
2019-03-11Enable Base internationalization to avoid warning from Xcode.Neil Hodgson2-0/+2
2019-03-04Updated version number for release.Neil1-2/+2
2019-02-28Feature [feature-requests:#1265]. Common Intermediate Language (CIL) lexer.Jed Altahan1-0/+4
2019-01-13Replace the only use of a function from <cctype> with a Scintilla function.Neil1-1/+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 [#2022]. Fix incorrect horizontal offset on macOS 10.14 Mojave.Chinh Nguyen2-1/+31
2018-11-21Feature [feature-requests:#1242]. Add lexer for NimJad Altahan1-0/+4
2018-11-20Bug [#2061]. Fix a crash that occurred when entering a dead key diacritic then aNeil Hodgson1-1/+12
character that can not take that diacritic, such as option+e (acute accent) followed by g.
2018-10-21Bug [#2055]. Use dark info bar background when system is set to Dark Appearance.John Horigan3-1/+4
2018-10-11Add SCI_SETCOMMANDEVENTS API to allow turning off command events.Neil1-1/+1
This can reduce the time taken to fold a document by half.
2018-10-04Fix crash when particular patterns of invalid UTF-8 led to failure to create aNeil Hodgson1-1/+4
CFStringRef. Performs more stringent validation on input text.
2018-09-30Updates for 4.1.2 release.Neil1-2/+2
2018-09-05Updates for 4.1.1.Neil1-2/+2
2018-08-16For reverse arrow margin cursor, move hotspot to the tip of the arrow.Neil Hodgson1-1/+1
This fixes a bug where clicking seemed to affect the wrong margin.
2018-06-21Feature [feature-requests:#1185]. Add lexers for SAS and Stata.Luke Rasmussen1-0/+8
2018-06-15Updates for 4.1.0.Neil1-2/+2
2018-06-07Update Cocoa enumerations to current names instead of deprecated names.Neil Hodgson4-17/+17
2018-06-02Implement IScreenLineLayout for Cocoa Core Text as ScreenLineLayout.Neil2-4/+218