Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-06-02 | Provide downloads from scintilla.org to avoid degradation of SourceForge. | Neil | 2 | -6/+6 | |
2015-05-29 | As of GTK+ 3.16, gdk_cursor_new is deprecated and has been replaced with | Neil | 2 | -11/+20 | |
gdk_cursor_new_for_display. | |||||
2015-05-29 | Change log. | Neil | 1 | -0/+8 | |
2015-05-29 | Fix warning from Visual C++. | Neil | 1 | -1/+1 | |
2015-05-21 | add support for protected regions, prevent styling and folding within ↵ | Joe Mueller | 1 | -53/+72 | |
protected region, allow folding of protected region | |||||
2015-05-22 | GTK: Fill the scrollbars junction | Colomban Wendling | 1 | -0/+18 | |
Fill the scrollbars junction square with the appropriate style on GTK version having a style for it (GTK >= 3.4). Mostly fixes [bugs:#1611]. | |||||
2015-05-29 | Remove wrongly duplicated text. | Neil | 1 | -6/+0 | |
2015-05-29 | Change log. | Neil | 1 | -0/+4 | |
2015-05-29 | Bug [#1728]. Initialise fields to nil when they may be released in ReleaseViews | Neil Hodgson | 1 | -3/+15 | |
without ever being allocated by Create. | |||||
2015-05-29 | Document indexing of selection. | Neil | 1 | -2/+2 | |
2014-01-20 | Fix typos in comments (win32) | Stefan Weil | 2 | -4/+4 | |
2014-01-20 | Fix typo in comment | Stefan Weil | 1 | -1/+1 | |
2014-01-20 | Fix typo in comment | Stefan Weil | 1 | -1/+1 | |
2014-01-20 | Fix typo in string (cocoa) | Stefan Weil | 1 | -1/+1 | |
2015-05-29 | Add extra section for next release. | Neil | 1 | -0/+14 | |
2015-05-26 | Added tag rel-3-5-6 for changeset e9bfc7a0cb83 | Neil | 0 | -0/+0 | |
2015-05-23 | Change log.rel-3-5-6 | Neil | 1 | -0/+5 | |
2015-05-22 | GTK: Workaround ABI issue with Windows GTK2 bundle and GCC > 3 | Colomban Wendling | 1 | -1/+16 | |
GtkScrolledWindow contains a bitfield, and GCC 3.4 and 4.8 don't agree on the size of the structure (regardless of -mms-bitfields): - GCC 3.4 has sizeof(GtkScrolledWindow)=88 - GCC 4.8 has sizeof(GtkScrolledWindow)=84 As Windows GTK2 bundle is built with GCC 3, it requires types derived from GtkScrolledWindow to be at least 88 bytes, which means we need to add some fake padding to fill in the extra 4 bytes. There is however no other issue with the layout difference as we never access any GtkScrolledWindow fields ourselves. See http://lists.geany.org/pipermail/devel/2015-April/thread.html#9379 | |||||
2015-05-22 | Updates for 3.5.6. | Neil | 7 | -16/+20 | |
2015-05-21 | Fix bug with TentativeUndo where the undo history was being damaged on OS X. | Neil Hodgson | 1 | -0/+2 | |
For example the sequence ['a', 'c', left, 'b', undo] would produce "c" instead of "ac". | |||||
2015-05-20 | SCI_TARGETASUTF8 and SCI_ENCODEDFROMUTF8 implemented on Win32. | Neil | 3 | -2/+65 | |
From johnsonj. | |||||
2015-05-20 | Fix bug with Hanja conversions for DBCS. | Neil | 2 | -40/+30 | |
From johnsonj. | |||||
2015-05-17 | Change log. | Neil | 1 | -0/+8 | |
2015-05-16 | Avoid some warnings from clang. | Neil | 1 | -3/+3 | |
2015-05-16 | Make unused single argument constructors explicit. | Neil | 3 | -3/+3 | |
2015-05-16 | Change log. | Neil | 1 | -2/+1 | |
2015-05-15 | Change log. | Neil | 1 | -0/+5 | |
2015-05-15 | Backed out changeset: 7caa35787c19 | Neil | 2 | -7/+5 | |
Change made reverse iteration dangerous. | |||||
2015-05-13 | Make a single argument constructor explicit. | Neil | 1 | -1/+1 | |
2015-05-13 | Ensure SCI_POSITIONRELATIVE returns a position clamped into the document range | Neil | 2 | -5/+7 | |
sensibly. From Mitchell Foral. | |||||
2015-05-13 | Bug [#1703]. Fix bug when drawing text margins in buffered mode which would use | Neil | 5 | -4/+22 | |
default encoding instead of chosen encoding. | |||||
2015-05-13 | Bug [#1724]. Fix folding of "selecttype" and "selectcase". | Neil | 2 | -0/+5 | |
From darmar. | |||||
2015-05-13 | Make single argument constructors explicit where simple to avoid possibility of | Neil | 5 | -6/+6 | |
unintended conversions. | |||||
2015-05-13 | Change log. | Neil | 1 | -0/+3 | |
2015-05-12 | Bug [#1719]. Fix #undef directive. | Neil | 2 | -3/+6 | |
2015-05-11 | Folder folds units declarations and fixes a case insensitivity bug with not | Neil | 2 | -3/+7 | |
treating "IS" the same as "is". | |||||
2015-05-04 | add support to fold interface definitions | Joe Mueller | 2 | -1/+6 | |
2015-05-10 | Change log. | Neil Hodgson | 1 | -0/+6 | |
2015-04-22 | Fix highlighting empty backquote strings (``) in cpp lexer | Jiří Techet | 1 | -1/+0 | |
The sc.Forward() is performed once more at the end of the function and performing it here causes the second ` is skipped in ``. Probably caused by copy-pasting the code above and not realizing this one reads just a single character. | |||||
2015-04-22 | Change log. | Neil | 1 | -0/+3 | |
2015-04-22 | Use fractional positioning calls and avoid rounding to ensure consistency. | Neil | 2 | -19/+22 | |
From Jason Haslam. | |||||
2015-04-21 | Fix link error when SCI_NAMESPACE used. | Neil | 2 | -1/+16 | |
From Stefan Küng. | |||||
2015-04-17 | Added tag rel-3-5-5 for changeset dea417bad80a | Neil | 0 | -0/+0 | |
2015-04-17 | Removed tag rel-3-5-5rel-3-5-5 | Neil | 0 | -0/+0 | |
2015-04-17 | Better release blurb. | Neil | 1 | -1/+1 | |
2015-04-17 | Added tag rel-3-5-5 for changeset 1916c3602692 | Neil | 0 | -0/+0 | |
2015-04-14 | Getting ready for 3.5.5 release. | Neil | 7 | -15/+16 | |
2015-04-14 | Ensure SCI_TEXTHEIGHT uses valid style data and remove test pauses that | Neil | 2 | -3/+1 | |
hid this. | |||||
2015-04-10 | Allow (null) use of KEYSUNICODE API when built to include deprecated features. | Neil | 2 | -0/+4 | |
2015-04-10 | Formatting -> line end space removed. | Neil | 1 | -1/+1 | |