Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-08-29 | Move SCI_VCHOMEDISPLAY[EXTEND] from SciLexer range to Scintilla range.rel-3-2-2 | nyamatongwe | 2 | -9/+9 | |
2012-08-27 | Readying 3.2.2. | nyamatongwe | 2 | -2/+107 | |
2012-08-27 | Incrementing version number for 3.2.2. | nyamatongwe | 7 | -13/+22 | |
2012-08-26 | Add SCI_VCHOMEDISPLAYEXTEND keyboard command | Colomban Wendling | 4 | -0/+18 | |
This is like SCI_VCHOMEDISPLAY but extending the selection. | |||||
2012-08-26 | Add SCI_VCHOMEDISPLAY keyboard command | nyamatongwe | 1 | -0/+2 | |
2012-08-25 | Add SCI_VCHOMEDISPLAY keyboard command | Colomban Wendling | 3 | -0/+17 | |
This works like SCI_HOMEDISPLAY but goes to the first visible character if on a logical line, like does SCI_VCHOME. This command makes it possible to use display-line-aware commands while keeping the "smart home" feature. | |||||
2012-08-25 | Long XML script tag correctly lexed. Bug #3534190. | nyamatongwe | 2 | -1/+3 | |
From Sakshi Verma. | |||||
2012-08-24 | Ensure abandoned paints cover full area by using NSView display instead of ↵ | nyamatongwe | 3 | -14/+11 | |
trying to draw more within initial drawing context. | |||||
2012-08-23 | Initialize strings to avoid warnings from Clang Analyze. | nyamatongwe | 2 | -2/+2 | |
2012-08-18 | Added reference to Scinterm. | nyamatongwe | 1 | -0/+4 | |
2012-08-17 | Ensure variable NUL terminated and limit its scope. | nyamatongwe | 1 | -1/+1 | |
Avoids warning from Visual C++ code analysis. | |||||
2012-08-14 | Drop notifications so not sent after ScintillaView freed. | nyamatongwe | 1 | -0/+1 | |
2012-08-14 | Break reference cycle between ScintillaView and its InnerView. | nyamatongwe | 1 | -1/+1 | |
2012-08-05 | Avoid poor drawing at right of INDIC_SQUIGGLE. | nyamatongwe | 1 | -7/+13 | |
2012-08-05 | Align INDIC_DOTBOX to pixel grid for full intensity. | nyamatongwe | 1 | -3/+2 | |
2012-08-05 | Add INDIC_SQUIGGLEPIXMAP as a faster version of INDIC_SQUIGGLE. | nyamatongwe | 4 | -0/+37 | |
Based on work by Matthew Brush and Lex Trottman. | |||||
2012-07-29 | Decrease sensitivity of pinch-zoom. From Chinh Nguyen. | nyamatongwe | 3 | -7/+15 | |
2012-07-29 | Updated Base SDK to 10.7 so builds with standard Xcode 4.4. | nyamatongwe | 2 | -6/+8 | |
2012-07-29 | Extra checks to stop Clang analyze warnings. | nyamatongwe | 1 | -8/+10 | |
2012-07-25 | Limit horizontal touch scrolling to existing established width. | nyamatongwe | 1 | -1/+4 | |
2012-07-24 | Add ncurses platform. Rest of the implementation is an external project. | nyamatongwe | 8 | -13/+34 | |
From Mitchell Foral. | |||||
2012-07-21 | Add extra argument to RGBAImage constructor. | Neil Hodgson | 2 | -2/+2 | |
2012-07-21 | Scale factor implemented for RGBAImages to allow for high definition markers ↵ | nyamatongwe | 11 | -16/+36 | |
on retina displays. | |||||
2012-07-21 | Avoid problems when calltip highlight range is negative. Bug #3545938. | nyamatongwe | 1 | -1/+1 | |
2012-07-20 | Fix text size on retina display by not scaling by device resolution. | nyamatongwe | 1 | -10/+6 | |
2012-07-18 | Check GlobalLock return for success. | nyamatongwe | 1 | -21/+23 | |
2012-07-18 | strncat was being used with incorrect length argument. Result is always | nyamatongwe | 1 | -3/+3 | |
safely limited so use strcat instead. | |||||
2012-07-17 | Remove debug statements. | nyamatongwe | 1 | -5/+0 | |
2012-07-17 | Refine checking for Direct2D and DirectWrite by using NTDDI_WIN7 to indicate | nyamatongwe | 4 | -2/+10 | |
a recent SDK and allow disabling Direct2D by defining DISABLE_D2D. Run a test compile of a file that includes these headers and use compilation failure to disable Direct2D. | |||||
2012-07-17 | Use byte strings to make work with Python 3.2 on Windows 2000. | nyamatongwe | 1 | -7/+7 | |
2012-07-17 | Avoid loss of precision warnings from Borland. | nyamatongwe | 2 | -8/+8 | |
2012-07-17 | MultiMon.h can cause multiple definition problems when Scintilla is ↵ | nyamatongwe | 3 | -63/+69 | |
statically linked. Avoid these issues and ensure compatibility with NT 4 by not including MultiMon.h and dynamically linking to the monitor APIs when available. If not available use the single monitor work area to define the available area. | |||||
2012-07-16 | More Windows NT 4. | nyamatongwe | 1 | -1/+1 | |
2012-07-16 | Reenable building for Windows NT 4 on NT 4. | nyamatongwe | 3 | -2/+19 | |
2012-07-16 | Implement SCI_GETSELECTIONEMPTY API. Bug #3543121. | nyamatongwe | 4 | -2/+14 | |
2012-07-16 | Send SCN_UPDATEUI with SC_UPDATE_SELECTION for backspace in virtual space. ↵ | nyamatongwe | 1 | -0/+1 | |
Bug #3543121. | |||||
2012-07-16 | Fix rectangular selection range after backspace. Bug #3543097. | nyamatongwe | 1 | -0/+1 | |
2012-07-16 | Updated as switched from CVS to Mercurial. | nyamatongwe | 1 | -1/+1 | |
2012-07-16 | Remove files built as a side effect of clang --analyze. | Neil Hodgson | 1 | -1/+1 | |
2012-07-16 | Clean up more generated files when run with --clean. | Neil Hodgson | 2 | -4/+14 | |
2012-07-15 | Undid last change as it was incorrect. | nyamatongwe | 1 | -2/+1 | |
2012-07-15 | Clarify that SCI_SCROLLCARET does not understand line wrapping. | nyamatongwe | 1 | -2/+3 | |
2012-07-15 | Use unnamed namespace so that ListBox implementation is not visible outside ↵ | nyamatongwe | 1 | -76/+91 | |
this file. Use IListBox interface to limit exposure of ListBoxImpl to AutoCompletionDataSource. Changes only affect visibility and declarations with no change to functionality. | |||||
2012-07-15 | Fix position and remove dead code. | nyamatongwe | 1 | -7/+2 | |
2012-07-15 | Memory for image was used after being freed. Fixed. | nyamatongwe | 1 | -4/+7 | |
2012-07-14 | Added tag rel-3-2-1 for changeset 41bdec833d4a | nyamatongwe | 0 | -0/+0 | |
2012-07-13 | Updated date of release.rel-3-2-1 | nyamatongwe | 1 | -1/+1 | |
2012-07-13 | Updates for release. | nyamatongwe | 1 | -3/+3 | |
2012-07-11 | Updated sizes for release. | nyamatongwe | 1 | -2/+2 | |
2012-07-11 | Updates for next release 3.2.1. | nyamatongwe | 7 | -13/+130 | |