| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2012-07-17 | Refine checking for Direct2D and DirectWrite by using NTDDI_WIN7 to indicate | nyamatongwe | 1 | -1/+1 | |
| 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 | MultiMon.h can cause multiple definition problems when Scintilla is ↵ | nyamatongwe | 1 | -4/+2 | |
| 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 | Reenable building for Windows NT 4 on NT 4. | nyamatongwe | 1 | -1/+5 | |
| 2012-07-10 | Avoid warnings from Visual Studio Code Analysis for unchecked values and a | nyamatongwe | 1 | -1/+2 | |
| loop with unclear termination. | |||||
| 2012-05-08 | For high DPI modes use explicit 96 DPI scaling for Direct2D to avoid double | nyamatongwe | 1 | -2/+2 | |
| scaling and mouse clicks selecting text further in buffer. | |||||
| 2012-05-05 | Add some casts to avoid narrowing warnings from g++ 4.7. | nyamatongwe | 1 | -2/+2 | |
| 2012-02-18 | Bug #3487397. Reduce time spent in idling before allowing paint from 200 | nyamatongwe | 1 | -1/+2 | |
| to 50 milliseconds to make interaction less laggy. | |||||
| 2012-02-10 | Bug #3484416. Modify how scroll bars are hidden in order not to | nyamatongwe | 1 | -5/+3 | |
| interfere with dwelling. From Marko Njezic. | |||||
| 2012-01-24 | Fix a bug where the selection margin was black when starting in wrap mode. | nyamatongwe | 1 | -0/+3 | |
| 2011-12-30 | Returned to paint handling from before cange set 3983 as this change failed | nyamatongwe | 1 | -21/+18 | |
| to always draw the tab bar and output pane in SciTE. | |||||
| 2011-12-22 | Avoid BeginPaint/EndPaint for Direct2D as that draws more reliably with | nyamatongwe | 1 | -18/+21 | |
| less corruption. | |||||
| 2011-11-26 | Defer dropping the render target until after painting has finished to | nyamatongwe | 1 | -1/+13 | |
| avoid accessing a released render target. | |||||
| 2011-11-17 | ::GetCursorPos failure with screen saver handled. Bug #3438780. | nyamatongwe | 1 | -10/+11 | |
| From Thomas Linder Puls. | |||||
| 2011-11-14 | Dont try to use Direct2D with very old versions of Visual C++ as it | nyamatongwe | 1 | -1/+1 | |
| is unlikely to be available. | |||||
| 2011-11-07 | Fix size of font in IME. | nyamatongwe | 1 | -1/+1 | |
| 2011-09-25 | Palette support removed. | nyamatongwe | 1 | -33/+0 | |
| 2011-09-24 | Mingw32 doesn't have Direct2D or DirectWrite headers so turn off use | nyamatongwe | 1 | -0/+30 | |
| of these libraries except when compiling with Visual C++. | |||||
| 2011-09-09 | Merge with main repository. | nyamatongwe | 1 | -0/+7 | |
| 2011-09-04 | Autocompletion lists respond to mouse wheel events. Feature #3403600. | nyamatongwe | 1 | -0/+7 | |
| From David Wolfendale. | |||||
| 2011-08-11 | Fix bugs in calltip and autocompletion with technology choice. | nyamatongwe | 1 | -9/+14 | |
| Simplified Direct2D code. | |||||
| 2011-08-11 | Parallel stacks for GDI and DirectWrite works. | nyamatongwe | 1 | -15/+27 | |
| 2011-08-11 | Implemented parallel stacks for GDI and DirectWrite. GDI works | nyamatongwe | 1 | -20/+33 | |
| but DirectWrite does not draw well and eventuall crashes. | |||||
| 2011-08-10 | Implement 'technology' concept which will allow GDI and Direct2D/DirectWrite | nyamatongwe | 1 | -1/+11 | |
| to run at the same time for different windows and operations. | |||||
| 2011-08-07 | Ensure deallocation. | nyamatongwe | 1 | -0/+1 | |
| 2011-08-07 | Dynamically loading Direct2D and DirectWrite at run time so can run on ↵ | nyamatongwe | 1 | -26/+3 | |
| Windows XP. | |||||
| 2011-08-07 | Implement APIs for fractional font sizes and a range of weights. | nyamatongwe | 1 | -4/+4 | |
| 2011-08-01 | Experimental Direct2D and DirectWrite platform layer. | nyamatongwe | 1 | -12/+106 | |
| 2011-06-25 | Add casts to avoid warnings from SDK 64-bit compiler. | nyamatongwe | 1 | -17/+29 | |
| 2011-06-25 | Initial implementation of RGBA images. | nyamatongwe | 1 | -0/+1 | |
| 2011-06-13 | Added Identifier property. | nyamatongwe | 1 | -17/+28 | |
| 2011-01-17 | Add SCI_SETMARGINCURSORN and SCI_GETMARGINCURSORN. | jrxx | 1 | -1/+1 | |
| 2011-01-03 | Right click cancels autocompletion and sets focus. Bug #3144531. | nyamatongwe | 1 | -1/+4 | |
| 2010-12-14 | NUL terminate strings for characters typed. Helps receivers of SCN_MACRORECORD. | nyamatongwe | 1 | -0/+1 | |
| 2010-12-11 | Make multiple selection multi-paste work when multi-type is off. Bug #3126221. | nyamatongwe | 1 | -1/+1 | |
| 2010-11-10 | Remove support for Borland C++. | nyamatongwe | 1 | -4/+2 | |
| Use a library for the lexers with MSVC to simplify SciTE makefile. | |||||
| 2010-10-06 | Feature request #3079784 Use system caret blink time on Windows | nyamatongwe | 1 | -0/+4 | |
| 2010-08-24 | Mouse button down claims focus early so that container notifications can ↵ | nyamatongwe | 1 | -1/+1 | |
| switch focus. | |||||
| 2010-08-05 | Case insensitive search in DBCS and faster processing of DBCS. | nyamatongwe | 1 | -3/+55 | |
| DBCS case folder implemented on Windows. | |||||
| 2010-07-13 | Platform files changed for new lexer design. | nyamatongwe | 1 | -5/+4 | |
| 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 | 1 | -0/+1 | |
| 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-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-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 | |
