aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2014-02-22Change log.Neil Hodgson1-0/+4
2014-02-22Stop adding an extra line to scrollable height as that led to cursor up/downNeil Hodgson1-1/+1
movement bugs because different parts of the code disagreed on top line.
2014-02-21Updated SciTE default settings.Neil1-0/+4
2014-02-21Moved change log entries which had been added to wrong release.Neil1-6/+6
2014-02-21Bug [#1577]. Deleting a whole line deletes the annotations on that line insteadNeil2-3/+7
of the annotations on the next line.
2014-02-20Change log.Neil1-0/+6
2014-02-20Check that argument is of correct type.Neil Hodgson1-0/+1
2014-02-20When window is offscreen, use the main screen for screen max Y to preventNeil Hodgson1-0/+2
the window disappearing.
2014-02-20Reverse order of position adjustment so that calltips are more likelyNeil1-5/+5
to appear below text so lesss likely to cut off start of calltip.
2014-02-18Explain the Version method.Neil1-0/+3
2014-02-14Fix potential failure if FormatEnumerator_Next called with celt>1.Neil1-14/+10
Use std::vector for formats to avoid empty elements.
2014-02-14Fix explanation as confused in bug [#1577].Neil1-1/+1
2014-02-10Fix 'possible loss of data' warnings on 64-bit Windows.Neil3-11/+11
2014-02-10Bug [#1575]. On Qt 5.x double click treated as triple click.Neil2-0/+11
From Mike M.
2014-02-06Avoid warning for excessive variable scope.Neil2-3/+1
2014-02-06Fix crashes and other bugs by removing folding of do-label constructs.Neil2-32/+10
2014-02-05The Unicode line ends and substyles features added as provisional in 3.2.5 ↵Neil4-83/+76
are now finalised.
2014-02-05Fix to work when there are no provisional features.Neil1-1/+4
2014-02-02Avoid warnings.Neil3-10/+8
2014-02-02Added wrap mode SC_WRAP_WHITESPACE which only wraps on whitespace, not on ↵Neil7-7/+18
style changes. From Robert Gieseke.
2014-02-02Change log.Neil1-0/+11
2014-02-02Fix bug when resizing list with only short strings caused the list to move.Neil1-1/+2
2014-01-31Added tag rel-3-3-9 for changeset d086394244f4Neil0-0/+0
2014-01-31Update for 3.3.9.rel-3-3-9Neil7-14/+15
2014-01-30Bug [#1574]. Fix 3.3.8 bug where external lexers became inaccessible.Neil2-2/+15
2014-01-28Updated version number and date.Neil1-2/+2
2014-01-28Added tag rel-3-3-8 for changeset 61cdae165698Neil0-0/+0
2014-01-24Updated sizes.rel-3-3-8Neil1-2/+2
2014-01-24Added image of available markers.Neil2-1/+3
2014-01-24Change log.Neil1-0/+2
2014-01-24Make RoundedRectangle with Direct2D have similar shape to GDI with 4 pixelNeil1-2/+2
radius corners.
2014-01-24Change log.Neil1-0/+15
2014-01-24Updates for 3.3.8.Neil7-15/+13
2014-01-22Visual C++ project file added.Neil1-0/+129
2014-01-22Fixing tag mismatches.Neil1-23/+18
2014-01-22Clarify effects of setting additional selecton colours.Neil1-3/+10
2014-01-21Using ELEMENTS for clarity and safety. Avoid memset for safety.Neil2-4/+5
2014-01-21Avoid memset for safety.Neil1-2/+2
2014-01-21Using ELEMENTS for clarity and safety.Neil1-4/+4
2014-01-21Added some missing headers.Neil Hodgson1-0/+12
2014-01-21Added ELEMENTS macro and use it to clarify determining size of arrays.Neil Hodgson8-24/+27
2014-01-21Implement new marker symbol SC_MARK_BOOKMARK.Neil Hodgson4-15/+45
2014-01-19Avoid warnings for potential read from uninitialised buffer.Neil1-1/+1
2014-01-19Chnage log.Neil1-0/+4
2014-01-18Support octave vs matlab '!' handlingJohn Donoghue1-4/+9
* lexers/LexMatlab.cxx (ColouriseMatlabOctaveDocument): Add ismatlab boolean to function, and on getting the '!', check if matlab to set as a command vs operator. (ColouriseMatlabDoc): use true for call to ColouriseMatlabOctaveDocument. (ColouriseOctaveDoc): use false for call to ColouriseMatlabOctaveDocument.
2014-01-18Change log.Neil1-1/+2
2014-01-18Draw cicles centred as intended so that folding margin markers look correct.Neil1-1/+1
2014-01-18With Direct2D draw circles with a 1 pixel larger radius to better matchNeil2-5/+5
other platforms and ensure for folding markers that the '+' or '-' do not touch the circle. Change order of drawing so that circles are drawn after connecting lines so overwrite any tails.
2014-01-18For SC_MARK_ARROWS, scale the arrows to fit the line height.Neil1-4/+6
Avoid drawing one arm of each arrow longer than the other on Cocoa. The weight of the strokes is more uniform on Windows/Direct2D and Cairo.
2014-01-16Draw circles more accurately using CGContextAddEllipseInRect insteadNeil Hodgson2-52/+7
of a series of bezier curves.