Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

libscintilla-devel-5.1.4-bp154.1.122 RPM for ppc64le

From OpenSuSE Leap 15.4 for ppc64le

Name: libscintilla-devel Distribution: SUSE Linux Enterprise 15 SP4
Version: 5.1.4 Vendor: openSUSE
Release: bp154.1.122 Build date: Thu May 12 03:32:23 2022
Group: Unspecified Build host: obs-power9-07
Size: 1762314 Source RPM: scintilla-5.1.4-bp154.1.122.src.rpm
Packager: https://bugs.opensuse.org
Url: http://www.scintilla.org
Summary: Development files for Scintilla, a code editing component
Scintilla is a code editing component. It includes features for
editing and debugging source code, such as syntax styling, error
indicators, code completion and call tips.

This subpackage contains the header files for developing
applications that want to make use of the Scintilla library.

Provides

Requires

License

MIT

Changelog

* Fri Nov 19 2021 Atri Bhattacharya <badshah400@gmail.com>
  - Update to version 5.1.4:
    * Add DEL to standard set of space characters for word
      operations.
    * Add CARETSTYLE_CURSES to draw more than 1 caret on curses
      terminal.
    * On GTK, fix primary selection paste within same instance. Bug
      [#2287].
    * On GTK, fix potential crash when closing Scintilla instances
      due to releasing global settings object.
    * GetLineEndTypesSupported returns LineEndType, not int.
* Thu Oct 21 2021 Atri Bhattacharya <badshah400@gmail.com>
  - Update to version 5.1.3:
    * Fix bug with SCI_STYLESETCHECKMONOSPACED on Cocoa that led to
      incorrect layout with overlapping text.
  - Changes from version 5.1.2:
    * Add SCI_STYLESETCHECKMONOSPACED which can be used to optimize
      fonts that are monospaced over the ASCII graphics characters.
    * Add SC_ELEMENT_FOLD_LINE to set the colour of fold lines. Add
      SC_ELEMENT_HIDDEN_LINE to show where lines are hidden. Feature
      [#1241], Feature #382, Feature #203.
    * Add SCI_SETCARETLINEHIGHLIGHTSUBLINE to highlight just the
      subline containing the caret instead of the whole document
      line. Feature #841.
    * Allow SCI_HIDELINES to hide the first line or all lines which
      can be useful for filtered views.
    * Make negative settings for extra ascent and descent safer by
      ensuring calculated ascent and thus line height is at least 1
      pixel.
    * Fix display of fold lines when wrapped so they are only drawn
      once per line, not on each subline.
    * Fix crash with too many subexpressions in regular expression
      search with SCFIND_CXX11REGEX. Bug #2281.
    * On GTK, fix the line spacing so that underscores and accents
      are visible for some fonts such as DejaVu Sans Mono 10.
    * On GTK, respond to changes in system font scaling by clearing
      any cached layout data.
* Wed Jul 28 2021 Atri Bhattacharya <badshah400@gmail.com>
  - Update to version 5.1.1:
    * In DBCS encodings, treat valid DBCS lead byte followed by
      invalid trail byte as single byte. Feature #1408.
    * Searching was optimized for documents that contain mostly
      ASCII text and is often 2-3 times faster. Feature #1381.
    * Word searching behaves more consistently at start and end of
      document.
    * Add SCI_ALLOCATELINES to allocate indices to hold some number
      of lines. This can decrease reallocation overhead when the
      application can count or estimate the number of lines in huge
      files. Feature #1370.
    * Add SCI_AUTOCSETOPTIONS to allow choosing a non-resizeable
      autocompletion list on Win32. Feature #1284.
  - Minor rebase of scintilla-shared.patch to apply cleanly.
* Sun Jun 27 2021 Atri Bhattacharya <badshah400@gmail.com>
  - Update to version 5.1.0:
    * Add SciFnDirectStatus, a direct access function which also
      returns status. It can be retrieved with
      SCI_GETDIRECTSTATUSFUNCTION. This can avoid calling
      SCI_GETSTATUS after every API to determine failure so can
      improve performance.
    * Add more type-safe wrappers to the API. These are defined in
      include/ScintillaCall.h and implemented in
      call/ScintillaCall.cxx. ScintillaCall throws
      Scintilla::Failure exceptions when a call fails.
    * Add APIs for setting appearance (traditional blob or plain
      text) and colour of representations and support setting a
      representation for the "\r\n" line end sequence.
    * Add SCI_REPLACERECTANGULAR to insert text like a rectangular
      paste.
    * Fixed bug with SCI_GETLASTCHILD. Bug #2260.
    * Fixed gcc link-time-optimization (LTO) compilation. Bug #2259.
  - Refresh scintilla-shared.patch to apply against updated version.
  - Install license file using %license.
  - Drop fdupes form BuildRequires: no longer needed.
  - Minor specfile cleanups.
* Mon Sep 11 2017 jengelh@inai.de
  - Fix RPM groups and compact package descriptions.
* Thu Jul 27 2017 badshah400@gmail.com
  - Update to version 3.7.5:
    * Added a caret line frame as an alternative visual for
      highlighting the caret line.
    * Added "Reverse Selected Lines" feature.
    * SciTE adds "Select All Bookmarks" command.
    * SciTE adds a save.path.suggestion setting to suggest a file
      name when saving an unnamed buffer.
    * Updated case conversion and character categories to Unicode 9.
    * The Baan lexer recognizes numeric literals in a more compliant
      manner including hexadecimal numbers and exponentials.
    * The Bash lexer recognizes strings in lists in more cases. Bug
      [#1944].
    * The Fortran lexer recognizes a preprocessor line after a line
      continuation &. Bug #1935.
    * The Fortran folder can fold comments. Bug #1936.
    * The PowerShell lexer recognizes escaped quotes in strings. Bug
      [#1929].
    * The Python lexer recognizes identifiers more accurately when
      they include non-ASCII characters.
    * The Python folder treats comments at the end of the file as
      separate from the preceding structure.
    * The YAML lexer recognizes comments in more situations and
      styles a "..." line like a "---" line. Bug #1931.
    * Update scroll bar when annotations added, removed, or
      visibility changed. Feature #1187.
    * Canceling modes with the Esc key preserves a rectangular
      selection. Bug #1940.
    * Builds are made with a sorted list of lexers to be more
      reproducible. Bug #1946.
    * SciTE examines at most 1 MB of a file to automatically
      determine indentation for indent.auto to avoid a lengthy pause
      when loading very large files.
    * SciTE user interface uses lighter colours and fewer 3D
      elements to match current desktop environments.
    * SciTE sets buffer dirty and shows message when file deleted if
      load.on.activate on.
    * SciTE on Windows Find strip Find button works in incremental
      no-close mode. Bug #1926.
  - Drop reproducible.patch: fixed upstream.
  - Rebase scintilla-shared.patch for update; make it work with -p1
    for use with quilt.
* Sat May 20 2017 bwiedemann@suse.com
  - Add reproducible.patch to have constant link-order
    and make build fully reproducible
* Tue Jul 12 2016 tchvatal@suse.com
  - Version update to 3.6.6:
    * Various small bugfixes
  - Remove support for older distros that are marked as dead
  - Update shared patch to set properly cflags:
    * scintilla-shared.patch
* Sun Apr 10 2016 mpluskal@suse.com
  - Update to 3.6.4
    * avoids some folding bugs by automatically unfolding and
      improves clipboard robustness on Win32.
* Sat Jan 30 2016 mpluskal@suse.com
  - Update to 3.6.3
    * No changelog available
* Fri Nov 20 2015 mpluskal@suse.com
  - Update to 3.6.2
    * No changelog available
* Mon Mar 23 2015 p.drouand@gmail.com
  - Update to version 3.5.4
    * No changelog available
  - Build with gtk3 support for openSUSE > 13.1
  - Bump so version to 3
  - Add glib2-devel require; new upstream dependency
  - Update scintilla-shared.patch
  - Remove redundant %clean section
  - Enable parallel building with %{?_smp_mflags}

Files

/usr/include/scintilla
/usr/include/scintilla/ILexer.h
/usr/include/scintilla/ILoader.h
/usr/include/scintilla/Sci_Position.h
/usr/include/scintilla/Scintilla.h
/usr/include/scintilla/Scintilla.iface
/usr/include/scintilla/ScintillaCall.h
/usr/include/scintilla/ScintillaMessages.h
/usr/include/scintilla/ScintillaStructures.h
/usr/include/scintilla/ScintillaTypes.h
/usr/include/scintilla/ScintillaWidget.h
/usr/include/scintilla/src
/usr/include/scintilla/src/AutoComplete.h
/usr/include/scintilla/src/CallTip.h
/usr/include/scintilla/src/CaseConvert.h
/usr/include/scintilla/src/CaseFolder.h
/usr/include/scintilla/src/CellBuffer.h
/usr/include/scintilla/src/CharClassify.h
/usr/include/scintilla/src/CharacterCategoryMap.h
/usr/include/scintilla/src/CharacterType.h
/usr/include/scintilla/src/ContractionState.h
/usr/include/scintilla/src/DBCS.h
/usr/include/scintilla/src/Debugging.h
/usr/include/scintilla/src/Decoration.h
/usr/include/scintilla/src/Document.h
/usr/include/scintilla/src/EditModel.h
/usr/include/scintilla/src/EditView.h
/usr/include/scintilla/src/Editor.h
/usr/include/scintilla/src/ElapsedPeriod.h
/usr/include/scintilla/src/Geometry.h
/usr/include/scintilla/src/Indicator.h
/usr/include/scintilla/src/KeyMap.h
/usr/include/scintilla/src/LineMarker.h
/usr/include/scintilla/src/MarginView.h
/usr/include/scintilla/src/Partitioning.h
/usr/include/scintilla/src/PerLine.h
/usr/include/scintilla/src/Platform.h
/usr/include/scintilla/src/Position.h
/usr/include/scintilla/src/PositionCache.h
/usr/include/scintilla/src/RESearch.h
/usr/include/scintilla/src/RunStyles.h
/usr/include/scintilla/src/ScintillaBase.h
/usr/include/scintilla/src/Selection.h
/usr/include/scintilla/src/SparseVector.h
/usr/include/scintilla/src/SplitVector.h
/usr/include/scintilla/src/Style.h
/usr/include/scintilla/src/UniConversion.h
/usr/include/scintilla/src/UniqueString.h
/usr/include/scintilla/src/ViewStyle.h
/usr/include/scintilla/src/XPM.h
/usr/lib64/libscintilla.so
/usr/share/doc/packages/libscintilla-devel
/usr/share/doc/packages/libscintilla-devel/doc
/usr/share/doc/packages/libscintilla-devel/doc/AddSource.txt
/usr/share/doc/packages/libscintilla-devel/doc/Design.html
/usr/share/doc/packages/libscintilla-devel/doc/Icons.html
/usr/share/doc/packages/libscintilla-devel/doc/Indicators.png
/usr/share/doc/packages/libscintilla-devel/doc/Lexer.txt
/usr/share/doc/packages/libscintilla-devel/doc/Markers.png
/usr/share/doc/packages/libscintilla-devel/doc/Privacy.html
/usr/share/doc/packages/libscintilla-devel/doc/SciBreak.jpg
/usr/share/doc/packages/libscintilla-devel/doc/SciCoding.html
/usr/share/doc/packages/libscintilla-devel/doc/SciRest.jpg
/usr/share/doc/packages/libscintilla-devel/doc/SciTEIco.png
/usr/share/doc/packages/libscintilla-devel/doc/SciWord.jpg
/usr/share/doc/packages/libscintilla-devel/doc/Scintilla5Migration.html
/usr/share/doc/packages/libscintilla-devel/doc/ScintillaDoc.html
/usr/share/doc/packages/libscintilla-devel/doc/ScintillaDownload.html
/usr/share/doc/packages/libscintilla-devel/doc/ScintillaHistory.html
/usr/share/doc/packages/libscintilla-devel/doc/ScintillaRelated.html
/usr/share/doc/packages/libscintilla-devel/doc/ScintillaToDo.html
/usr/share/doc/packages/libscintilla-devel/doc/ScintillaUsage.html
/usr/share/doc/packages/libscintilla-devel/doc/StadiumVariants.png
/usr/share/doc/packages/libscintilla-devel/doc/Steps.html
/usr/share/doc/packages/libscintilla-devel/doc/StyleMetadata.html
/usr/share/doc/packages/libscintilla-devel/doc/annotations.png
/usr/share/doc/packages/libscintilla-devel/doc/eolannotation.png
/usr/share/doc/packages/libscintilla-devel/doc/index.html
/usr/share/doc/packages/libscintilla-devel/doc/styledmargin.png
/usr/share/licenses/libscintilla-devel
/usr/share/licenses/libscintilla-devel/License.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 17:00:22 2024