10 Commits

Author SHA256 Message Date
baa39aea6b Accepting request 1288175 from editors
OBS-URL: https://build.opensuse.org/request/show/1288175
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/scintilla?expand=0&rev=50
2025-06-24 18:49:59 +00:00
733f46e8e9 - Update to version 5.5.7:
* Add SCI_SCROLLVERTICAL method to restore view position and maintain it 
    while performing line wrapping.
  * Add SC_UNDO_SELECTION_HISTORY_SCROLL flag to SCI_SETUNDOSELECTIONHISTORY
    which controls whether undo and redo restore vertical scroll position.
  * Tweak SC_MARK_BAR to be slightly wider by using next higher whole pixel
    instead of next lower for margin width / 3.
  * Scale images in autocompletion lists with SCI_AUTOCSETIMAGESCALE to match
    high DPI screens. Initially only on GTK and Qt.
  * Fix wrapping bug for UTF-8 where \r\n could wrap between the characters.
  * Fix crash during painting when scroll bars changed. Bug #2481.
  * On GTK, reset vertical scroll bar synchronously in SCI_SETDOCPOINTER to 
    fix bug where scroll position not restored in non-wrap mode. Bug #2416.
  * On GTK, fix IME problem when tentative composition interfered with delete
    surrounding. Feature #1476.
  * On GTK, update IME cursor position inside retrieve surrounding to better
    position candidate window. Feature #1488.

OBS-URL: https://build.opensuse.org/package/show/editors/scintilla?expand=0&rev=28
2025-06-24 07:38:15 +00:00
b0e9163ace Accepting request 1272167 from editors
OBS-URL: https://build.opensuse.org/request/show/1272167
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/scintilla?expand=0&rev=49
2025-04-23 16:39:58 +00:00
351537e1c5 Update to version 5.5.6
OBS-URL: https://build.opensuse.org/package/show/editors/scintilla?expand=0&rev=27
2025-04-23 12:01:52 +00:00
ac725e0384 Accepting request 1253388 from editors
OBS-URL: https://build.opensuse.org/request/show/1253388
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/scintilla?expand=0&rev=48
2025-03-16 17:58:56 +00:00
8093b86231 - Update to version 5.5.5:
* Remember selection with undo and redo. Controlled with 
    SCI_SETUNDOSELECTIONHISTORY. Feature #1273, Bug #1479, Bug #1224.
  * Serialize selection type and ranges with SCI_GETSELECTIONSERIALIZED
    and SCI_SETSELECTIONSERIALIZED.
  * Fix segmentation of long lexemes to avoid breaking before modifiers like 
    accents that must be drawn with their base letters. For wrapping, try to
    break lines without separating letters from modifiers.
  * Fix bug on Qt where double-click stopped working when Scintilla instance
    had been running for weeks.

OBS-URL: https://build.opensuse.org/package/show/editors/scintilla?expand=0&rev=26
2025-03-15 17:03:10 +00:00
2e0dda781a Accepting request 1233049 from editors
OBS-URL: https://build.opensuse.org/request/show/1233049
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/scintilla?expand=0&rev=47
2024-12-23 15:49:15 +00:00
d3f6704abb Update to version 5.5.4
OBS-URL: https://build.opensuse.org/package/show/editors/scintilla?expand=0&rev=25
2024-12-22 16:21:24 +00:00
0ffc214d35 Accepting request 1221767 from editors
OBS-URL: https://build.opensuse.org/request/show/1221767
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/scintilla?expand=0&rev=46
2024-11-07 15:26:15 +00:00
7f96098a7b - Update to version 5.5.3:
* On Win32 change direction of horizontal mouse wheel and touchpad scrolling 
    to match other applications. Bug #2449.
- Update to version 5.5.2:
  * Add SCI_SETCOPYSEPARATOR for separator between parts of a multiple 
    selection when copied to the clipboard. Feature #1530.
  * Add SCI_GETUNDOSEQUENCE to determine whether an undo sequence is active and
    its nesting depth.
  * Add SCI_STYLESETSTRETCH to support condensed and expanded text styles.
  * Add SCI_LINEINDENT and SCI_LINEDEDENT. Feature #1524.
  * Fix bug on Cocoa where double-click stopped working when system had been
    running for a long time.
  * On Cocoa implement more values of font weight and stretch.

OBS-URL: https://build.opensuse.org/package/show/editors/scintilla?expand=0&rev=24
2024-11-06 14:18:00 +00:00
4 changed files with 86 additions and 7 deletions

View File

@@ -1,3 +1,82 @@
-------------------------------------------------------------------
Tue Jun 24 07:00:10 UTC 2025 - Andrea Manzini <andrea.manzini@suse.com>
- Update to version 5.5.7:
* Add SCI_SCROLLVERTICAL method to restore view position and maintain it
while performing line wrapping.
* Add SC_UNDO_SELECTION_HISTORY_SCROLL flag to SCI_SETUNDOSELECTIONHISTORY
which controls whether undo and redo restore vertical scroll position.
* Tweak SC_MARK_BAR to be slightly wider by using next higher whole pixel
instead of next lower for margin width / 3.
* Scale images in autocompletion lists with SCI_AUTOCSETIMAGESCALE to match
high DPI screens. Initially only on GTK and Qt.
* Fix wrapping bug for UTF-8 where \r\n could wrap between the characters.
* Fix crash during painting when scroll bars changed. Bug #2481.
* On GTK, reset vertical scroll bar synchronously in SCI_SETDOCPOINTER to
fix bug where scroll position not restored in non-wrap mode. Bug #2416.
* On GTK, fix IME problem when tentative composition interfered with delete
surrounding. Feature #1476.
* On GTK, update IME cursor position inside retrieve surrounding to better
position candidate window. Feature #1488.
-------------------------------------------------------------------
Wed Apr 23 05:51:46 UTC 2025 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 5.5.6:
* Disallow changing case of protected text. Bug #2463.
* Return enumeration type from MarkerSymbolDefined to match
MarkerDefine. Bug #2469.
* On Qt, draw clipped UTF-8 text correctly. Bug #2464.
* On Qt, avoid a dwell start when the mouse is moved outside the
Scintilla widget. Bug #2466.
* On Qt, autoCompleteSelection converts from local encoding when
not in Unicode mode. Bug #2465.
-------------------------------------------------------------------
Sat Mar 15 08:36:04 UTC 2025 - Andrea Manzini <andrea.manzini@suse.com>
- Update to version 5.5.5:
* Remember selection with undo and redo. Controlled with
SCI_SETUNDOSELECTIONHISTORY. Feature #1273, Bug #1479, Bug #1224.
* Serialize selection type and ranges with SCI_GETSELECTIONSERIALIZED
and SCI_SETSELECTIONSERIALIZED.
* Fix segmentation of long lexemes to avoid breaking before modifiers like
accents that must be drawn with their base letters. For wrapping, try to
break lines without separating letters from modifiers.
* Fix bug on Qt where double-click stopped working when Scintilla instance
had been running for weeks.
-------------------------------------------------------------------
Sat Dec 21 11:26:14 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 5.5.4:
* Update to Unicode 15.1. Issue #285.
* Improve performance of SCI_BRACEMATCH. Feature #1533.
* Improve performance of DBCS text. Feature #1535.
* Fix wrapping removed lines. Bug #2456.
* Fix moving line down to empty final line and moving empty
final line up. Bug #2457.
* On GTK, allow middle click to insert multiple times within a
document. Geany Issue #2629.
-------------------------------------------------------------------
Fri Nov 1 16:39:24 UTC 2024 - Andrea Manzini <andrea.manzini@suse.com>
- Update to version 5.5.3:
* On Win32 change direction of horizontal mouse wheel and touchpad scrolling
to match other applications. Bug #2449.
- Update to version 5.5.2:
* Add SCI_SETCOPYSEPARATOR for separator between parts of a multiple
selection when copied to the clipboard. Feature #1530.
* Add SCI_GETUNDOSEQUENCE to determine whether an undo sequence is active and
its nesting depth.
* Add SCI_STYLESETSTRETCH to support condensed and expanded text styles.
* Add SCI_LINEINDENT and SCI_LINEDEDENT. Feature #1524.
* Fix bug on Cocoa where double-click stopped working when system had been
running for a long time.
* On Cocoa implement more values of font weight and stretch.
-------------------------------------------------------------------
Fri Aug 2 05:34:20 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>

View File

@@ -17,16 +17,16 @@
%define so_ver 5.5
%define _ver %{so_ver}.1
%define tar_ver 551
%define _ver %{so_ver}.7
%define tar_ver 557
%define libname libscintilla5
Name: scintilla
Version: %{_ver}
Release: 0
Summary: A source code editing component
License: MIT
URL: http://www.scintilla.org
Source: http://sourceforge.net/projects/scintilla/files/scintilla/%{version}/%{name}%{tar_ver}.tgz
URL: https://www.scintilla.org
Source: https://sourceforge.net/projects/scintilla/files/scintilla/%{version}/%{name}%{tar_ver}.tgz
# PATCH-FEATURE-OPENSUSE scintilla-shared.patch badshah400@gmail.com -- Build shared library
Patch0: %{name}-shared.patch
BuildRequires: gcc-c++

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd634ac73ec2a00cda170a2fbc477250090621367bbb03a32ba782b9944277e7
size 1787148

3
scintilla557.tgz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b37e1a239ff8c77cebd72db6ce25264b35cbecbbffad60f9ce7e838f5195a21e
size 1813445