Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-06-24 | Protect against bad UTF-8 when case folding. | nyamatongwe | 1 | -0/+6 | |
2010-06-16 | For compatibility with TDM MingW64, undefine _WIN32_WINNT before defining it. | nyamatongwe | 2 | -1/+3 | |
2010-06-15 | Switched from dllwrap to g++ -shared to make work with TDM GCC 4.5. | nyamatongwe | 1 | -3/+3 | |
2010-06-05 | Using Make functions to avoid regenerating makefile when set of | nyamatongwe | 1 | -16/+1 | |
lexers changed. | |||||
2010-06-05 | Updated. | nyamatongwe | 1 | -198/+248 | |
2010-05-26 | Preparing for 2.12. | nyamatongwe | 1 | -4/+4 | |
2010-05-21 | EOL conversion for drop. Fixes bug #3005328. | nyamatongwe | 1 | -0/+10 | |
2010-05-11 | Made method const. | nyamatongwe | 1 | -9/+9 | |
2010-05-02 | Bug #2995278 minor fixes to typos and types. | nyamatongwe | 1 | -1/+1 | |
2010-04-19 | Removed workaround for GCC 2.95 as only 3.2 or better supported now. | nyamatongwe | 1 | -13/+3 | |
2010-04-13 | Removed -OPT:NOWIN98 as it hasn't been needed for years and causes | nyamatongwe | 1 | -1/+1 | |
VS10 to fail. | |||||
2010-04-07 | Making ready a 2.11 release.rel-2-11 | nyamatongwe | 1 | -4/+4 | |
2010-04-07 | Made Scintilla.h compatible with the C language when stdbool.h not included. | nyamatongwe | 1 | -2/+2 | |
2010-04-07 | Removed dead code. | nyamatongwe | 1 | -35/+0 | |
2010-04-03 | NUL characters in text formats on clipboard terminate the text. | nyamatongwe | 1 | -2/+2 | |
This is a reversion to 2.03 behaviour because of other applications using large clipboard allocations for small pieces of text. | |||||
2010-03-27 | Updating for 2.10 release. | nyamatongwe | 1 | -4/+4 | |
2010-03-25 | New case insensitive searching implementation uses objects implementing | nyamatongwe | 1 | -0/+74 | |
the CaseFolder interface to fold both search text and document text so they can be compared with a simple strcmp. A simple table based folder CaseFolderTable is used for 8 bit encodings and maps input bytes to folded bytes. For multi-byte encodings except for UTF-8 a null (output same as input) CaseFolderTable is used. For UTF-8, more complex subclasses are used which call platform APIs to perform the folding. Folding is approximately to lower case although this differs between platforms. | |||||
2010-03-23 | Upper and lower casing now works on non-ASCII characters. | nyamatongwe | 1 | -6/+87 | |
2010-03-11 | Implemented multipaste as an option. | nyamatongwe | 1 | -4/+1 | |
2010-03-11 | Use allocated sizes rather than relying on 0 termination. | nyamatongwe | 1 | -4/+5 | |
2010-03-08 | Fixed bug #2965482 Break Unicode Build. | nyamatongwe | 1 | -2/+2 | |
2010-02-24 | Avoid casting warnings from GCC. | nyamatongwe | 2 | -63/+83 | |
2010-02-24 | Extra bracketing to avoid GCC warnings. | nyamatongwe | 1 | -1/+1 | |
2010-02-24 | Turn off integer wrap warning in ContractionState.cxx caused by inlining. | nyamatongwe | 1 | -1/+1 | |
2010-02-19 | Removed old unused TOTAL_CONTROL symbol. | nyamatongwe | 1 | -14/+0 | |
2010-02-19 | Fix for bug #2951353 HotSpotRange clearing when mouse moves out of window. | nyamatongwe | 1 | -0/+37 | |
2010-02-16 | Whitespace formatting. | nyamatongwe | 1 | -15/+15 | |
2010-02-10 | Preparing for 2.03 | nyamatongwe | 1 | -4/+4 | |
2010-01-28 | Avoiding warnings from cppcheck. Mostly removing bodies of private copy | nyamatongwe | 2 | -4/+4 | |
constructors and operator=. Also ensuring initialisation for some fields, reducing scope where possible, and passing by const reference. | |||||
2010-01-20 | Preparation for 2.02. | nyamatongwe | 1 | -6/+6 | |
2009-12-13 | Fix for bug #2909699, NULL facename causes crash. | nyamatongwe | 1 | -1/+2 | |
2009-11-02 | Added setting for font quality to allow application to choose anti-aliased, | nyamatongwe | 1 | -16/+41 | |
non-anti-aliased or lcd-optimized text. | |||||
2009-08-28 | When pasting into a rectangular selection use the start of the rectangular | nyamatongwe | 1 | -1/+3 | |
selection rather than the start of the main range which is often the last line. | |||||
2009-08-27 | Markdown lexer from FR #2844081. | nyamatongwe | 3 | -6/+13 | |
2009-08-18 | Ready version 2.01 to fix problems with multiple selections. | nyamatongwe | 1 | -4/+4 | |
2009-08-14 | Enable build of debug version. | nyamatongwe | 1 | -5/+6 | |
2009-08-06 | Preparing release 2.0. | nyamatongwe | 1 | -4/+4 | |
2009-08-01 | Fix for Bug #2830223: ScintillaWin::Finalise should NOT call | nyamatongwe | 1 | -1/+0 | |
DestroySystemCaret. | |||||
2009-07-23 | Fix for Bug #2825485, paste in read-only mode sends EN_CHANGE despite no | nyamatongwe | 1 | -1/+0 | |
change taking place. | |||||
2009-07-21 | Removed SString.h. | nyamatongwe | 4 | -104/+100 | |
2009-07-21 | Using a much simpler property set implementation. | nyamatongwe | 1 | -0/+1 | |
Accessor objects use the PropertyGet interface to access just the property set methods they need. Removed SString. | |||||
2009-07-21 | Replacing SString with std::string. | nyamatongwe | 1 | -1/+1 | |
2009-07-14 | Added controls for enabling multiple selection and multiple selection | nyamatongwe | 1 | -0/+2 | |
typing. Renamed multiline options to reflect use on multiple selections. Using std::vector for selections. | |||||
2009-07-13 | VC6 gives many spurious level 4 warnings when using standard library so | nyamatongwe | 1 | -1/+1 | |
turn warning level down to 3. | |||||
2009-07-12 | Since exception handling now turned on, do not check return value from new. | nyamatongwe | 2 | -45/+33 | |
2009-07-10 | Duplicate works on discontiguous selections by duplicating each selection. | nyamatongwe | 1 | -2/+1 | |
UndoGroup class simplifies grouping actions together in the undo history. | |||||
2009-07-10 | Allow pasting into virtual space. | nyamatongwe | 1 | -2/+5 | |
2009-07-07 | Using the last style on a line to determine the width of a virtual space | nyamatongwe | 1 | -4/+2 | |
rather than use the default style. This adapts better for comments which use a different font. | |||||
2009-07-06 | Allow drag and drop in virtual space. | nyamatongwe | 1 | -12/+14 | |
2009-07-03 | Use screen point for caret that includes virtual spcace so that, for | nyamatongwe | 1 | -4/+4 | |
example, the IME appears near the caret when the caret is in virtual space. Changed LocationFromPosition to work on a SelectionPosition and added convenience method for finding screen point of main caret. |