| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2024-09-13 | disable automatic scrolling and choosing the X that caret sticks tosciteco-rel-5-5-2 | Robin Haberkorn | 1 | -1/+7 | |
| * SciTECO needs to avoid automatic scrolling as an optimization. While this works partially by avoiding certain messages like SCI_GOTOPOS (in favor of SCI_SETEMPTYSELECTION), there aren't alternatives for all messages that scroll. For instance SCI_UNDO will always call EnsureCaretVisible(). Also, even if we could avoid all scrolling messages, there is no guarantee that will not suddenly and unexpectedly break in the future. * Instead, every scrolling is now disabled except for an explicit SCI_SCROLLCARET. SciTECO can therefore use the more intuitive messages like SCI_GOTOPOS. * SetLastXChosen() (choosing the X that caret sticks to) has been found to be a major slow down during UNDO and serves no purpose on SciTECO anyway - we have to implement such an algorithm at the SciTECO language level. We therefore simply disable SetLastXChosen(). | |||||
| 2024-09-13 | commented out Editor::SetRepresentations() | Robin Haberkorn | 1 | -1/+1 | |
| * This sets the default key representations on every SCI_SETDOCPOINTER which is very inefficient considering the way that SciTECO uses the Q-Register view. Furthermore it meant, we had to reset the representations to their SciTECO versions again after every SCI_SETDOCPOINTER. * This patch only does not cause problems because we initialize the representations anyway for every Scintilla view. This patch is not meant to be upstreamed! | |||||
| 2024-08-21 | Added tag rel-5-5-2 for changeset 8d3fb4e59054 | Neil | 1 | -0/+1 | |
| 2024-08-18 | Updates for version 5.5.2.rel-5-5-2 | Neil | 9 | -20/+20 | |
| 2024-08-17 | Add new header to order. | Neil | 1 | -0/+1 | |
| 2024-08-16 | On Cocoa implement more values of font weight and stretch. | Neil Hodgson | 5 | -33/+99 | |
| 2024-08-15 | Add SCI_STYLESETSTRETCH to support condensed and expanded text styles. | Neil | 18 | -8/+181 | |
| 2024-08-15 | Fix bug where double-click stopped working when system had been running for a | Neil | 2 | -1/+4 | |
| long time. | |||||
| 2024-08-15 | Include <string> header as this is required with Visual C++ 2022 17.11. | Neil | 2 | -0/+2 | |
| 2024-08-09 | Simplify code that sets an empty selection at a position. | Neil | 5 | -14/+7 | |
| 2024-07-31 | Feature [feature-requests:#1524]. Add SCI_LINEINDENT and SCI_LINEDEDENT. | Martijn Laan | 9 | -7/+44 | |
| These force the multiline behaviour of SCI_TAB and SCI_BACKTAB. | |||||
| 2024-07-28 | Add SCI_GETUNDOSEQUENCE to determine whether an undo sequence is active and its | Neil | 15 | -1/+58 | |
| nesting depth. | |||||
| 2024-07-27 | Feature [feature-requests:#1530]. SCI_SETCOPYSEPARATOR sets string to separate | Neil | 10 | -7/+74 | |
| parts of multiple selection when copied. | |||||
| 2024-07-26 | Show correct signature for SCI_AUTOCSETSTYLE and include in message list. | Neil | 1 | -1/+3 | |
| 2024-07-22 | Added tag rel-5-5-1 for changeset 26e6c5234533 | Neil | 1 | -0/+1 | |
| 2024-07-19 | Updates for version 5.5.1.rel-5-5-1 | Neil | 9 | -20/+20 | |
| 2024-07-15 | Simplify line-end insertions and conversions. | Neil | 2 | -24/+21 | |
| 2024-07-15 | Add copy and paste tests for rectangular- and multiple-selection and line-end | Neil | 1 | -0/+47 | |
| conversion. | |||||
| 2024-07-10 | Bug [#2443]. Fix flickering cursor after some mouse action sequences. | Neil | 2 | -1/+10 | |
| 2024-07-03 | Feature [feature-requests:#1523]. SCI_AUTOCSETSTYLE sets autocompletion font. | Martijn Laan | 11 | -7/+68 | |
| 2024-06-29 | Ensure clipboard is closed even if exception occurs while clipboard open. | Neil | 1 | -5/+25 | |
| 2024-06-25 | Feature [feature-requests:#1519]. Cherry pick SC_MASK_HISTORY from isscint. | Martijn Laan | 4 | -2/+11 | |
| 2024-06-21 | Add canonical self links to help Google crawler. | Neil | 5 | -0/+5 | |
| 2024-06-21 | Feature [feature-requests:#1520]. Cherry pick DISABLE_D2D warning fix from ↵ | Martijn Laan | 1 | -1/+1 | |
| isscint. | |||||
| 2024-06-20 | Feature [feature-requests:#1518]. Cherry pick SCI_CUTALLOWLINE from isscint. | Martijn Laan | 11 | -18/+89 | |
| 2024-06-11 | Feature [feature-requests:#1517]. Increase maximum zoom set interactively to +60 | Neil | 3 | -4/+16 | |
| points. | |||||
| 2024-06-10 | Simplify SetZoom by calling SetAppearance to do the check if changed sequence. | Neil | 1 | -8/+4 | |
| 2024-05-24 | Bug [#2439]. Prevent warnings in log from unreferencing NULL cursor. | Neil Hodgson | 1 | -1/+2 | |
| 2024-05-23 | Suppress some warnings from g++ 14.1 where a UTF-8 character has a maximum | Neil Hodgson | 1 | -0/+5 | |
| length of 4 (UTF8MaxBytes) but the compiler doesn't see this is enforced. | |||||
| 2024-05-22 | Use standard attribute instead of GCC extension to avoid lint diagnostics. | Neil | 1 | -1/+1 | |
| 2024-05-22 | Bug [#2321]. Use const for some unique_ptr variables. | Zufu Liu | 1 | -10/+8 | |
| 2024-05-16 | Feature [feature-requests:#1516]. Access SpecialRepresentations through a | Zufu Liu | 4 | -15/+16 | |
| unique_ptr. Reduces executable size. | |||||
| 2024-05-13 | Move Direct2D unique_ptr creation functions and use where possible. | Neil | 1 | -73/+60 | |
| This encapsulates lifetimes better, ensuring resources will be freed and increases consistency between methods. | |||||
| 2024-05-10 | Bug [#2321]. Remove unused variable and declaration. | Zufu Liu | 1 | -4/+0 | |
| 2024-05-09 | Bug [#2321]. Scale reverse arrow cursor with Direct2D when enabled. | Zufu Liu | 3 | -95/+292 | |
| Implement arrow cursor colour choice. React to most settings changes. | |||||
| 2024-05-07 | Update suppressions for cppcheck 2.14. | Neil | 2 | -4/+5 | |
| Mark SurfaceImpl destructor as override to avoid cppcheck warning. | |||||
| 2024-05-06 | Make LoadD2D noexcept so can be called in more situations. | Zufu Liu | 2 | -3/+7 | |
| 2024-04-23 | Fix 5.5.0 synopsis. | Neil | 1 | -1/+1 | |
| 2024-04-23 | Added tag rel-5-5-0 for changeset 3a219b13a5d8 | Neil | 1 | -0/+1 | |
| 2024-04-19 | Updates for version 5.5.0.rel-5-5-0 | Neil | 9 | -20/+20 | |
| 2024-04-18 | Bug [#2321]. Scale reverse arrow cursor for margins to match other cursors. | Zufu Liu | 7 | -11/+40 | |
| 2024-04-04 | Update Catch testing framework from v2.13.7 to v2.13.10. | Neil | 1 | -61/+78 | |
| 2024-03-30 | Bug [#2435]. Fix documentation of type of SCNotification::annotationLinesAdded. | Neil | 1 | -1/+1 | |
| 2024-03-28 | Avoid use of NSUserDefaults which will soon require justification when used ↵ | Neil Hodgson | 2 | -6/+6 | |
| in applications on the App Store. | |||||
| 2024-03-23 | Feature [feature-requests:#1512]. Size ms in initializer list. | Zufu Liu | 1 | -13/+2 | |
| Remove erase() and reset() for items that are not set. | |||||
| 2024-03-23 | Feature [feature-requests:#1512]. Reduce calls to vsDraw.ElementColour. | Zufu Liu | 1 | -10/+12 | |
| 2024-03-23 | Feature [feature-requests:#1512]. Simplify ScaledVector::PushBack. | Zufu Liu | 1 | -5/+5 | |
| Prefer UndoActions::Length to UndoActions::lengths.ValueAt. | |||||
| 2024-03-23 | Remove outdated text. | Neil | 1 | -1/+1 | |
| 2024-03-22 | Document that failure in SCI_ALLOCATESUBSTYLES returns a negative number. | Neil | 1 | -1/+6 | |
| Possible failures include requesting more substyles than available. | |||||
| 2024-03-22 | Bug [#2433]. Fix IME crash in windowed mode. | Zufu Liu | 2 | -5/+19 | |
