This commit is contained in:
parent
8c82edbac2
commit
daa3c70828
@ -1,3 +1,46 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 12 14:33:36 CET 2007 - sndirsch@suse.de
|
||||||
|
|
||||||
|
- updated to xterm-224 (2007/02/11)
|
||||||
|
* simplify code for set/reset mode for blinking cursor (patch by
|
||||||
|
Emanuele Giaquinta).
|
||||||
|
* modify dabbrev-expand() to restart after the last match (patch by
|
||||||
|
Emanuele Giaquinta).
|
||||||
|
* add control sequences for enabling/disabling focus in/out event
|
||||||
|
reporting (request by Bram Moolenaar).
|
||||||
|
* improve startup performance of menus by adding resource setting
|
||||||
|
menuLocale which can be set to override X's lengthy initialization
|
||||||
|
of fontsets - which are seldom used for the Xaw popup menus
|
||||||
|
(adapted by patch by Dave Coffin).
|
||||||
|
* modify do_precomposition() function and make-compose.sh to handle
|
||||||
|
21-bit codes vs the 16-bit codes those were written for, and fix a
|
||||||
|
few mis-sorted codes (patch by Thomas Wolff).
|
||||||
|
* handle special case in -cjk_width which unexpectedly caused a
|
||||||
|
character's width to change when a combining character (patch by
|
||||||
|
Thomas Wolff)
|
||||||
|
* fix build for GNU/KFreeBSD (Debian #40111).
|
||||||
|
* consolidate GC creation/updating into a single module to reduce GC
|
||||||
|
manipulation (prompted by Debian #389476, though a complete fix
|
||||||
|
would involve optimizing the scrolling behavior).
|
||||||
|
* fix ifdef of xtermCellWidth(), which broke for a case without
|
||||||
|
TrueType and without wide-character support (report by Martin
|
||||||
|
Pirker).
|
||||||
|
* undo a comparison in handle_translated_exposure which did not work
|
||||||
|
due to X server optimization. That caused the inner border to be
|
||||||
|
repainted with unexpected colors when handling a repaint, e.g.,
|
||||||
|
after switching to/from another workspace (Debian #401726, Redhat
|
||||||
|
Bugzilla #223027).
|
||||||
|
* allow -cr option to override cursor color when -ah option is used
|
||||||
|
(Debian #406502).
|
||||||
|
* add a note in xterm's manpage explaining that the -bw (or -w)
|
||||||
|
option is only used by the window manager, if at all (Debian
|
||||||
|
#405043).
|
||||||
|
* make Selection of VT Fonts work with selectToClipboard resource.
|
||||||
|
* correct length calculation for Selection entry of VT Fonts menu,
|
||||||
|
broken since it ignored the actual selection length since X11R4.
|
||||||
|
* fixes for fontsize changes with -fa option (Redhat Bugzilla
|
||||||
|
#222340).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 1 06:21:09 CET 2006 - sndirsch@suse.de
|
Fri Dec 1 06:21:09 CET 2006 - sndirsch@suse.de
|
||||||
|
|
||||||
|
46
xterm.spec
46
xterm.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package xterm (Version 223)
|
# spec file for package xterm (Version 224)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -17,7 +17,7 @@ License: X11/MIT
|
|||||||
Group: System/X11/Utilities
|
Group: System/X11/Utilities
|
||||||
Provides: xorg-x11:/usr/X11R6/bin/xterm XFree86:/usr/X11R6/bin/xterm
|
Provides: xorg-x11:/usr/X11R6/bin/xterm XFree86:/usr/X11R6/bin/xterm
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
Version: 223
|
Version: 224
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: The basic X terminal program
|
Summary: The basic X terminal program
|
||||||
Source: %name.tar.gz
|
Source: %name.tar.gz
|
||||||
@ -243,6 +243,46 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/usr/share/pixmaps/terminal.png
|
/usr/share/pixmaps/terminal.png
|
||||||
|
|
||||||
%changelog -n xterm
|
%changelog -n xterm
|
||||||
|
* Mon Feb 12 2007 - sndirsch@suse.de
|
||||||
|
- updated to xterm-224 (2007/02/11)
|
||||||
|
* simplify code for set/reset mode for blinking cursor (patch by
|
||||||
|
Emanuele Giaquinta).
|
||||||
|
* modify dabbrev-expand() to restart after the last match (patch by
|
||||||
|
Emanuele Giaquinta).
|
||||||
|
* add control sequences for enabling/disabling focus in/out event
|
||||||
|
reporting (request by Bram Moolenaar).
|
||||||
|
* improve startup performance of menus by adding resource setting
|
||||||
|
menuLocale which can be set to override X's lengthy initialization
|
||||||
|
of fontsets - which are seldom used for the Xaw popup menus
|
||||||
|
(adapted by patch by Dave Coffin).
|
||||||
|
* modify do_precomposition() function and make-compose.sh to handle
|
||||||
|
21-bit codes vs the 16-bit codes those were written for, and fix a
|
||||||
|
few mis-sorted codes (patch by Thomas Wolff).
|
||||||
|
* handle special case in -cjk_width which unexpectedly caused a
|
||||||
|
character's width to change when a combining character (patch by
|
||||||
|
Thomas Wolff)
|
||||||
|
* fix build for GNU/KFreeBSD (Debian #40111).
|
||||||
|
* consolidate GC creation/updating into a single module to reduce GC
|
||||||
|
manipulation (prompted by Debian #389476, though a complete fix
|
||||||
|
would involve optimizing the scrolling behavior).
|
||||||
|
* fix ifdef of xtermCellWidth(), which broke for a case without
|
||||||
|
TrueType and without wide-character support (report by Martin
|
||||||
|
Pirker).
|
||||||
|
* undo a comparison in handle_translated_exposure which did not work
|
||||||
|
due to X server optimization. That caused the inner border to be
|
||||||
|
repainted with unexpected colors when handling a repaint, e.g.,
|
||||||
|
after switching to/from another workspace (Debian #401726, Redhat
|
||||||
|
Bugzilla #223027).
|
||||||
|
* allow -cr option to override cursor color when -ah option is used
|
||||||
|
(Debian #406502).
|
||||||
|
* add a note in xterm's manpage explaining that the -bw (or -w)
|
||||||
|
option is only used by the window manager, if at all (Debian
|
||||||
|
[#405043]).
|
||||||
|
* make Selection of VT Fonts work with selectToClipboard resource.
|
||||||
|
* correct length calculation for Selection entry of VT Fonts menu,
|
||||||
|
broken since it ignored the actual selection length since X11R4.
|
||||||
|
* fixes for fontsize changes with -fa option (Redhat Bugzilla
|
||||||
|
[#222340]).
|
||||||
* Fri Dec 01 2006 - sndirsch@suse.de
|
* Fri Dec 01 2006 - sndirsch@suse.de
|
||||||
- updated to xterm-223 (2006/11/30)
|
- updated to xterm-223 (2006/11/30)
|
||||||
* add --enable-rectangles configure option (request by Martin
|
* add --enable-rectangles configure option (request by Martin
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:e55a4746c229c46c046a0098aa9f88fc9527164542f5718971818586e8b61016
|
oid sha256:5613c6933f0a71bc2db7ae8f0d7292e82da026aba39d4e31099559fc24c8bb21
|
||||||
size 804647
|
size 811925
|
||||||
|
Loading…
x
Reference in New Issue
Block a user