aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2015-10-26Make timers active in modal dialogs by adding them to NSModalPanelRunLoopMode.Neil Hodgson1-2/+4
From Mike Lischke.
2015-10-26Avoid possibility of ScintillaCocoa receiving idles after deallocation by ↵Neil Hodgson1-0/+13
severing the connection from TimerTarget back to ScintillaCocoa and releasing the notification queue.
2015-10-24When deallocating ScintillaView, null out the reference to it from ↵Neil Hodgson1-1/+10
SCIContentView since responsive scrolling causes callbacks after the deallocation. Also remove the scrollview to try to finalize it although it still lives for a short period.
2015-10-23Add a menu command to ScintillaTest to add or remove an extra ScintillaNeil Hodgson3-1/+34
view on the right of the window to allow testing deletion of a ScintillaView.
2015-10-23Xcode 7 didn't like the xib so upgraded it to the current format.Neil Hodgson1-3992/+609
2015-10-19Bug [#1768]. Report error when negative length passed to SCI_SETSTYLING.Neil2-1/+8
2015-10-19Change log for SciTE on GTK+.Neil1-0/+4
2015-10-19Mention changes to SciTE properties.Neil1-0/+11
2015-10-19Minor increase in allocation size prevents warning from VC++ analyze.Neil1-1/+1
2015-10-14Bug [#1766]. Treat line starts consistently to always highlight *foo* or similarActiveState2-1/+5
at line start.
2015-10-13Bug [#1765]. CoffeeScript lexer highlights ranges correctly.ActiveState2-0/+8
2015-10-12Implement Swap in SelectionRange to avoid warnings.Neil3-1/+6
2015-10-08Optimize image files.Neil5-0/+0
2015-10-08Make the documentation more readable on phones.Neil10-0/+10
2015-09-29Reindented code which had become a mess.Neil Hodgson1-45/+45
2015-09-29Removed unreachable code.Neil Hodgson1-1/+0
2015-09-29Mark unused parameters in Objective-C methods with a pragma.Neil Hodgson2-0/+6
2015-09-29ScreenMax no longer depends on window so do not pass as argument.Neil Hodgson1-3/+3
2015-09-29Mark local functions in lexers as static.Neil Hodgson4-5/+5
2015-09-29Mark local functions as static.Neil Hodgson4-7/+7
2015-09-27Change log for SciTE.Neil1-0/+4
2015-09-27Simplify casting by using static_cast instead of reinterpret_cast, glib macrosNeil2-29/+30
for passing integer values to callbacks, and avoiding casts by making functions follow prototypes exactly.
2015-09-27Updated README to mention C++11 for SciTE.Neil1-5/+21
2015-09-26RTTI is a part of standard C++ so don't turn it off.Neil1-1/+1
2015-09-26Centre whitespace dot when dot is larger than 1 pixel.Neil2-1/+5
2015-09-26Indentation guides do not affect background drawing so omit from condition.Neil1-2/+1
2015-09-26Add parentheses to fix warning from Clang.Neil Hodgson1-2/+2
2015-09-26Whitespace may be made visible just in indentation.nkmathew7-11/+28
2015-09-25Updated as recommended by Xcode 7.Neil Hodgson4-4/+10
2015-09-25Replace reinterpret_cast with static_cast where possible.Neil2-45/+45
2015-09-25Remove null occurrences of reinterpret_cast which just converted HDC to HDC.Neil1-15/+15
2015-09-23When SC_MARK_UNDERLINE if not assigned to a margin, stop drawing the whole line.Neil5-34/+56
Optimise drawing of markers that appear in the text area.
2015-09-23Optimise drawing by only drawing affected lines when markers shown in the text.Neil1-36/+40
2015-09-23Change log.Neil1-0/+4
2015-09-22Support using Visual C++ 2015 to target Windows XP.Neil1-2/+7
2015-09-21Mention Cocoa version numbers.Neil Hodgson1-0/+11
2015-09-21Automate updating of version numbers in the Scintilla framework.Neil Hodgson2-1/+24
2015-09-21Add short version string to Scintilla framework to specify the release version.Neil Hodgson1-1/+3
The current version value (CFBundleVersion) is a build version.
2015-09-16Annotate change with bug report.Neil1-0/+1
2015-09-15Added tag rel-3-6-1 for changeset 59165fbb6b9dNeil1-0/+1
2015-09-10Updates for 3.6.1.rel-3-6-1johnsonj7-15/+16
2015-09-10Change log.johnsonj1-0/+3
2015-09-10Handle reconversion when requested by IME.johnsonj1-0/+96
2015-09-10Fix IME caret movements for emoji.johnsonj2-2/+2
2015-09-09Change log.Neil1-0/+8
2015-09-09Allow '0' as the line number in GCC errors as some tools report whole fileNeil1-1/+1
errors as line 0.
2015-09-05Remove #if sections which are not required for GTK+ 2.18.nyamatongwe2-77/+4
2015-09-05With the minimum GTK+ version now 2.18, remove #if conditions required for oldernyamatongwe2-31/+2
versions of GTK+.
2015-09-04Change FillVirtualSpace to ClearBeforeTentativeStart and delete selected text.johnsonj6-7/+16
2015-09-04Bug [#1757]. Treat CRLF as two characters in SCI_COUNTCHARACTERS.Neil3-2/+12