This commit is contained in:
parent
8185a2d6ab
commit
936f2bbac4
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:095c1abf9cf7c63048e93efb22b6573901dd02e4d2b1c9b43fca8360f1afed67
|
|
||||||
size 1414549
|
|
3
pango-1.21.3.tar.bz2
Normal file
3
pango-1.21.3.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5d3e255f682032560ecd58b263c8f0b4344a92211cbda2c375b1d7db9f34ae3f
|
||||||
|
size 1434992
|
@ -1,3 +1,45 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 19 00:29:46 CEST 2008 - maw@suse.de
|
||||||
|
|
||||||
|
- Update to version 1.21.3:
|
||||||
|
+ Various small fixes and improvements
|
||||||
|
+ Bugs fixed: bgo#538661, bgo#536190, bgo#537258, bgo#537257,
|
||||||
|
and bgo#537186.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 9 17:40:00 CEST 2008 - maw@suse.de
|
||||||
|
|
||||||
|
- Update to version 1.21.2:
|
||||||
|
+ Require cairo >= 1.6.4
|
||||||
|
+ Write out HarfBuzz errors as hex.
|
||||||
|
+ Add a section in the docs for bidirectional text.
|
||||||
|
+ Improved hex-box rendering in the cairo backend.
|
||||||
|
+ Add some aliases for <span> tag attributes.
|
||||||
|
+ Preserve current-point around pango_cairo_* functions.
|
||||||
|
+ Partial work to make pango_break() exactly follow Unicode TR#14
|
||||||
|
and TR#29; the Grapheme Boundaries and Word Boundaries now work;
|
||||||
|
for word boundaries; a new member was added to PangoLogAttr;
|
||||||
|
sentence Boundaries and Line Breaks to follow in the next
|
||||||
|
release
|
||||||
|
+ Err if no cairo font backends found
|
||||||
|
+ Misc bug fixes
|
||||||
|
+ New public API:
|
||||||
|
* pango_attr_type_get_name()
|
||||||
|
* enum PangoBidiType;
|
||||||
|
* pango_bidi_type_get_type()
|
||||||
|
* pango_bidi_type_for_unichar()
|
||||||
|
* pango_layout_get_baseline()
|
||||||
|
* pango_cairo_create_context()
|
||||||
|
* pango_cairo_font_map_set_default()
|
||||||
|
* New PangoLogAttr member, is_word_boundary, that implements
|
||||||
|
UAX#29's Word Boundaries semantics; the is_word_start and
|
||||||
|
is_word_end members will change implementation later on to
|
||||||
|
be consitent with the word boundaries
|
||||||
|
+ Bugs fixed: bgo#515432, bgo#517119, bgo#404416, bgo#474706,
|
||||||
|
bgo#490669, bgo#501334, bgo#514617, bgo#511183, bgo#531242,
|
||||||
|
bgo#530757, bgo#530685, bgo#97545 (partial), bgo#510299,
|
||||||
|
bgo#436363, and bgo#523193.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 21 16:51:24 CEST 2008 - sbrabec@suse.cz
|
Wed May 21 16:51:24 CEST 2008 - sbrabec@suse.cz
|
||||||
|
|
||||||
|
42
pango.spec
42
pango.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package pango (Version 1.20.1)
|
# spec file for package pango (Version 1.21.3)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 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
|
||||||
@ -16,8 +16,8 @@ BuildRequires: cairo-devel gtk-doc libthai-devel perl-XML-Parser sgml-skel
|
|||||||
License: LGPL v2.1 or later
|
License: LGPL v2.1 or later
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 1.20.1
|
Version: 1.21.3
|
||||||
Release: 17
|
Release: 1
|
||||||
Summary: System for Layout and Rendering of Internationalised Text
|
Summary: System for Layout and Rendering of Internationalised Text
|
||||||
Source: ftp://ftp.gnome.org/pub/GNOME/sources/pango/1.18/%{name}-%{version}.tar.bz2
|
Source: ftp://ftp.gnome.org/pub/GNOME/sources/pango/1.18/%{name}-%{version}.tar.bz2
|
||||||
Source1: README.SuSE
|
Source1: README.SuSE
|
||||||
@ -208,6 +208,42 @@ fi
|
|||||||
%{_datadir}/gtk-doc/html/pango
|
%{_datadir}/gtk-doc/html/pango
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 19 2008 maw@suse.de
|
||||||
|
- Update to version 1.21.3:
|
||||||
|
+ Various small fixes and improvements
|
||||||
|
+ Bugs fixed: bgo#538661, bgo#536190, bgo#537258, bgo#537257,
|
||||||
|
and bgo#537186.
|
||||||
|
* Mon Jun 09 2008 maw@suse.de
|
||||||
|
- Update to version 1.21.2:
|
||||||
|
+ Require cairo >= 1.6.4
|
||||||
|
+ Write out HarfBuzz errors as hex.
|
||||||
|
+ Add a section in the docs for bidirectional text.
|
||||||
|
+ Improved hex-box rendering in the cairo backend.
|
||||||
|
+ Add some aliases for <span> tag attributes.
|
||||||
|
+ Preserve current-point around pango_cairo_* functions.
|
||||||
|
+ Partial work to make pango_break() exactly follow Unicode TR#14
|
||||||
|
and TR#29; the Grapheme Boundaries and Word Boundaries now work;
|
||||||
|
for word boundaries; a new member was added to PangoLogAttr;
|
||||||
|
sentence Boundaries and Line Breaks to follow in the next
|
||||||
|
release
|
||||||
|
+ Err if no cairo font backends found
|
||||||
|
+ Misc bug fixes
|
||||||
|
+ New public API:
|
||||||
|
* pango_attr_type_get_name()
|
||||||
|
* enum PangoBidiType;
|
||||||
|
* pango_bidi_type_get_type()
|
||||||
|
* pango_bidi_type_for_unichar()
|
||||||
|
* pango_layout_get_baseline()
|
||||||
|
* pango_cairo_create_context()
|
||||||
|
* pango_cairo_font_map_set_default()
|
||||||
|
* New PangoLogAttr member, is_word_boundary, that implements
|
||||||
|
UAX#29's Word Boundaries semantics; the is_word_start and
|
||||||
|
is_word_end members will change implementation later on to
|
||||||
|
be consitent with the word boundaries
|
||||||
|
+ Bugs fixed: bgo#515432, bgo#517119, bgo#404416, bgo#474706,
|
||||||
|
bgo#490669, bgo#501334, bgo#514617, bgo#511183, bgo#531242,
|
||||||
|
bgo#530757, bgo#530685, bgo#97545 (partial), bgo#510299,
|
||||||
|
bgo#436363, and bgo#523193.
|
||||||
* Wed May 21 2008 sbrabec@suse.cz
|
* Wed May 21 2008 sbrabec@suse.cz
|
||||||
- Enabled optional thai-lang module (bnc#326002).
|
- Enabled optional thai-lang module (bnc#326002).
|
||||||
- Fixed devel dependencies.
|
- Fixed devel dependencies.
|
||||||
|
Loading…
Reference in New Issue
Block a user