This commit is contained in:
parent
2bc3ccb886
commit
c73960d72f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:871e2da805098703ca54916388452cbc649bd5e5711d2dcc4e05b0228f85bb14
|
||||
size 1422189
|
3
pango-1.19.3.tar.bz2
Normal file
3
pango-1.19.3.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:adc29d4c33f0fd5d7f195cb6eb143fefffd7afb0f08bdce54e3c73e63c14275b
|
||||
size 1418608
|
@ -1,3 +1,79 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 31 21:47:26 CET 2008 - maw@suse.de
|
||||
|
||||
- Update to version 1.19.3:
|
||||
- pango_layout_get_pixel_extents() and pango_layout_line_get_pixel_extents()
|
||||
now round extents to pixels inclusively. That is, pass both ink_rect and
|
||||
logical_rect as first argument to pango_extents_to_pixels().
|
||||
|
||||
- Rename pango_extents_to_pixels() function arguments from @ink_rect and
|
||||
@logical_rect to @inclusive and @nearest. Given that this API is a
|
||||
fairly new addition and not commonly used, language bindings are
|
||||
encouraged to update their argument names accordingly. Moreover, they
|
||||
are encouraged to wrap this function as two different calls:
|
||||
extents_to_pixels_inclusive() and extents_to_pixels_nearest(), or
|
||||
similar conventions that best reflect their native language.
|
||||
|
||||
- HarfBuzz was relicensed to a more generous and simpler license.
|
||||
Adapt. See pango/opentype/COPYING for the new license which is
|
||||
LGPL-compatible.
|
||||
|
||||
- New public API:
|
||||
|
||||
pango_layout_set_height()
|
||||
|
||||
This sets the height to which the #PangoLayout should be ellipsized at.
|
||||
There are two different behaviors, based on whether @height is positive or
|
||||
negative.
|
||||
|
||||
If @height is positive, it will be the maximum height of the layout. Only
|
||||
lines would be shown that would fit, and if there is any text ommitted, an
|
||||
ellipsis added. At least one line is included in each paragraph regardless
|
||||
of how small the height value is. A value of zero will render exactly one
|
||||
line for the entire layout.
|
||||
|
||||
If @height is negative, it will be the (negative of) maximum number of lines
|
||||
per paragraph. That is, the total number of lines shown may well be more
|
||||
than this value if the layout contains multiple paragraphs of text. The
|
||||
default value of -1 means that first line of each paragraph is ellipsized.
|
||||
|
||||
Height setting only has effect if a positive width is set on @layout and
|
||||
ellipsization mode of @layout is not %PANGO_ELLIPSIZE_NONE.
|
||||
The behavior is undefined if a height other than -1 is set and ellipsization
|
||||
mode is set to %PANGO_ELLIPSIZE_NONE, and may change in the future.
|
||||
|
||||
There are still bugs remaining to be fixed, notably bug 511172 (which will
|
||||
be fixed before 1.20), and bug 511171 (which will be fixed in a future
|
||||
version).
|
||||
|
||||
- New command-line arguments to pango-view: --height and --single-par.
|
||||
|
||||
- Make the following symbols available to engines:
|
||||
|
||||
PANGO_IS_OT_INFO
|
||||
PANGO_IS_OT_RULESET
|
||||
PANGO_OT_INFO
|
||||
PANGO_OT_RULESET
|
||||
PANGO_TYPE_OT_INFO
|
||||
PANGO_TYPE_OT_RULESET
|
||||
pango_ot_info_get_type
|
||||
pango_ot_ruleset_get_type
|
||||
|
||||
- Bugs fixed in this release:
|
||||
bgo#508002 – change pango_layout_pixel_extents() to round logical rect
|
||||
to be inclusive
|
||||
bgo#469313 – Add pango_layout_set_height()
|
||||
bgo#508179 – PangoGlyphUnit confusion
|
||||
bgo#508381 – indent and center alignment don't mix
|
||||
bgo#508007 – Add option for single-paragraph mode to pango-view
|
||||
bgo#506284 – docs typo for pango_coverage_unref
|
||||
Patch from Christian Persch
|
||||
bgo#504802 – build failure: No rule to make target
|
||||
`pango-querymodules.1', needed by `all-am'. Stop.
|
||||
bgo#504585 – pango-querymodules.1 syntax error
|
||||
brc#426178: gtkdoc-scan fails on pango
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 19 19:07:08 CST 2007 - maw@suse.de
|
||||
|
||||
|
255
pango.spec
255
pango.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package pango (Version 1.19.2)
|
||||
# spec file for package pango (Version 1.19.3)
|
||||
#
|
||||
# Copyright (c) 2007 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
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -15,8 +15,8 @@ BuildRequires: cairo-devel gtk-doc perl-XML-Parser sgml-skel
|
||||
License: LGPL v2.1 or later
|
||||
Group: System/Libraries
|
||||
AutoReqProv: on
|
||||
Version: 1.19.2
|
||||
Release: 3
|
||||
Version: 1.19.3
|
||||
Release: 1
|
||||
Summary: System for Layout and Rendering of Internationalised Text
|
||||
Source: ftp://ftp.gnome.org/pub/GNOME/sources/pango/1.18/%{name}-%{version}.tar.bz2
|
||||
Source1: README.SuSE
|
||||
@ -178,16 +178,75 @@ fi
|
||||
%{_datadir}/gtk-doc/html/pango
|
||||
|
||||
%changelog
|
||||
* Wed Dec 19 2007 - maw@suse.de
|
||||
* Thu Jan 31 2008 maw@suse.de
|
||||
- Update to version 1.19.3:
|
||||
- pango_layout_get_pixel_extents() and pango_layout_line_get_pixel_extents()
|
||||
now round extents to pixels inclusively. That is, pass both ink_rect and
|
||||
logical_rect as first argument to pango_extents_to_pixels().
|
||||
- Rename pango_extents_to_pixels() function arguments from @ink_rect and
|
||||
@logical_rect to @inclusive and @nearest. Given that this API is a
|
||||
fairly new addition and not commonly used, language bindings are
|
||||
encouraged to update their argument names accordingly. Moreover, they
|
||||
are encouraged to wrap this function as two different calls:
|
||||
extents_to_pixels_inclusive() and extents_to_pixels_nearest(), or
|
||||
similar conventions that best reflect their native language.
|
||||
- HarfBuzz was relicensed to a more generous and simpler license.
|
||||
Adapt. See pango/opentype/COPYING for the new license which is
|
||||
LGPL-compatible.
|
||||
- New public API:
|
||||
pango_layout_set_height()
|
||||
This sets the height to which the #PangoLayout should be ellipsized at.
|
||||
There are two different behaviors, based on whether @height is positive or
|
||||
negative.
|
||||
If @height is positive, it will be the maximum height of the layout. Only
|
||||
lines would be shown that would fit, and if there is any text ommitted, an
|
||||
ellipsis added. At least one line is included in each paragraph regardless
|
||||
of how small the height value is. A value of zero will render exactly one
|
||||
line for the entire layout.
|
||||
If @height is negative, it will be the (negative of) maximum number of lines
|
||||
per paragraph. That is, the total number of lines shown may well be more
|
||||
than this value if the layout contains multiple paragraphs of text. The
|
||||
default value of -1 means that first line of each paragraph is ellipsized.
|
||||
Height setting only has effect if a positive width is set on @layout and
|
||||
ellipsization mode of @layout is not %%PANGO_ELLIPSIZE_NONE.
|
||||
The behavior is undefined if a height other than -1 is set and ellipsization
|
||||
mode is set to %%PANGO_ELLIPSIZE_NONE, and may change in the future.
|
||||
There are still bugs remaining to be fixed, notably bug 511172 (which will
|
||||
be fixed before 1.20), and bug 511171 (which will be fixed in a future
|
||||
version).
|
||||
- New command-line arguments to pango-view: --height and --single-par.
|
||||
- Make the following symbols available to engines:
|
||||
PANGO_IS_OT_INFO
|
||||
PANGO_IS_OT_RULESET
|
||||
PANGO_OT_INFO
|
||||
PANGO_OT_RULESET
|
||||
PANGO_TYPE_OT_INFO
|
||||
PANGO_TYPE_OT_RULESET
|
||||
pango_ot_info_get_type
|
||||
pango_ot_ruleset_get_type
|
||||
- Bugs fixed in this release:
|
||||
bgo#508002 – change pango_layout_pixel_extents() to round logical rect
|
||||
to be inclusive
|
||||
bgo#469313 – Add pango_layout_set_height()
|
||||
bgo#508179 – PangoGlyphUnit confusion
|
||||
bgo#508381 – indent and center alignment don't mix
|
||||
bgo#508007 – Add option for single-paragraph mode to pango-view
|
||||
bgo#506284 – docs typo for pango_coverage_unref
|
||||
Patch from Christian Persch
|
||||
bgo#504802 – build failure: No rule to make target
|
||||
`pango-querymodules.1', needed by `all-am'. Stop.
|
||||
bgo#504585 – pango-querymodules.1 syntax error
|
||||
brc#426178: gtkdoc-scan fails on pango
|
||||
* Thu Dec 20 2007 maw@suse.de
|
||||
- Revert to using pango64.patch for the time being (#349940).
|
||||
* Mon Dec 17 2007 - maw@suse.de
|
||||
* Tue Dec 18 2007 maw@suse.de
|
||||
- Remove references to README.SuSE
|
||||
- s#%%run_ldconfig#/sbin/ldconfig#.
|
||||
* Mon Dec 17 2007 - maw@suse.de
|
||||
* Tue Dec 18 2007 maw@suse.de
|
||||
- Replace pango64.patch with pango-biarch.patch (#346210)
|
||||
- Concomitant with the above change, remove README.SuSE, as it is
|
||||
no longer necessary.
|
||||
* Mon Dec 17 2007 - maw@suse.de
|
||||
* Tue Dec 18 2007 maw@suse.de
|
||||
- Update to version 1.19.2:
|
||||
+ Bugs (bugzilla.gnome.org) fixed: #485536, #500549, #492517,
|
||||
[#495091], #502926, #399573, #478914, #501938, and #501575
|
||||
@ -199,9 +258,9 @@ fi
|
||||
pango_layout_set_text; previously an ASCII question mark was
|
||||
used; this crossed box has a glyph of value
|
||||
PANGO_GLYPH_INVALID_INPUT.
|
||||
* Mon Nov 26 2007 - maw@suse.de
|
||||
* Mon Nov 26 2007 maw@suse.de
|
||||
- Actually remove the build root in %%clean.
|
||||
* Fri Nov 23 2007 - maw@suse.de
|
||||
* Sat Nov 24 2007 maw@suse.de
|
||||
- Update to version 1.19.0:
|
||||
+ Two OpenType engine fixes, which make Nafees Nastaliq font
|
||||
work great, and avoids warnings with some other fonts
|
||||
@ -257,14 +316,14 @@ fi
|
||||
[#489909], #488840, #486932, #486951, #485621, #485566,
|
||||
[#485559], #481537, #478865, #472924, #472629, #472303,
|
||||
[#471601], #471577, #471571, #471568, and #469641.
|
||||
* Wed Sep 19 2007 - maw@suse.de
|
||||
* Wed Sep 19 2007 maw@suse.de
|
||||
- Add xorg-x11-libXdmcp as a prerequisite (#310640)
|
||||
- Fix the source tarball's permissions.
|
||||
* Tue Sep 18 2007 - sbrabec@suse.cz
|
||||
* Tue Sep 18 2007 sbrabec@suse.cz
|
||||
- Updated to version 1.18.2:
|
||||
* require libthai >= 0.1.9 for enabling thai-lang module
|
||||
* bug fixes
|
||||
* Thu Aug 30 2007 - maw@suse.de
|
||||
* Thu Aug 30 2007 maw@suse.de
|
||||
- Update to version 1.18.1:
|
||||
+ Make pango_script_for_unichar() just call
|
||||
g_unichar_get_script() and document that PangoScript and
|
||||
@ -274,15 +333,15 @@ fi
|
||||
[#462630], #464183, #464270, #465174, #466755, #467056, and
|
||||
[#467077],
|
||||
- Remove upstreamed pango-1.17.4-empty-string-corruption.patch.
|
||||
* Tue Jul 31 2007 - maw@suse.de
|
||||
* Tue Jul 31 2007 maw@suse.de
|
||||
- Update to version 1.17,5
|
||||
- Export PangoCairoFont and cleanup various standard macros
|
||||
- Bugs (bugzilla.gnome.org) fixed: #150883, #449482, and part of
|
||||
[#347236].
|
||||
* Tue Jul 31 2007 - jpr@suse.de
|
||||
* Tue Jul 31 2007 jpr@suse.de
|
||||
- Fix memory corruption for empty line break call (#295662)
|
||||
- Remove references to patch that no longer exists
|
||||
* Thu Jul 26 2007 - maw@suse.de
|
||||
* Thu Jul 26 2007 maw@suse.de
|
||||
- Update to version 1.17.4
|
||||
- Refactored the ATSUI font backend and install pangoatsui.h
|
||||
that has a single function pango_atsui_font_get_atsu_font_id() and
|
||||
@ -290,12 +349,12 @@ fi
|
||||
- Bugs [bugzilla.gnome.org] fixed in this release:
|
||||
Bug 451547 – FAIL: runtests.sh
|
||||
Bug 449543 - Ship pangoatsui.h
|
||||
* Thu Jul 05 2007 - maw@suse.de
|
||||
* Thu Jul 05 2007 maw@suse.de
|
||||
- Update to version 1.17.3
|
||||
- Extensive pangocairo internal code refactoring and cleanup
|
||||
- New public API, new engine macros
|
||||
- Many bugfixes.
|
||||
* Wed Apr 11 2007 - maw@suse.de
|
||||
* Wed Apr 11 2007 maw@suse.de
|
||||
- Update to version 1.16.2
|
||||
- Fixed various bug in the OpenType Layout code (HarfBuzz)
|
||||
- Improved documentation
|
||||
@ -306,46 +365,46 @@ fi
|
||||
* Bug #419262 - Don't create coverage every time it's asked for
|
||||
(Both of these bugs are viewable at bugzilla.gnome.org)
|
||||
- Refresh pango64.patch.
|
||||
* Wed Mar 21 2007 - maw@suse.de
|
||||
* Wed Mar 21 2007 maw@suse.de
|
||||
- Update to version 1.16.1
|
||||
- Fixes for b.g.o #120195, #407315, #355987, and #407087.
|
||||
* Fri Feb 16 2007 - maw@suse.de
|
||||
* Fri Feb 16 2007 maw@suse.de
|
||||
- Update to version 1.15.6
|
||||
- Remove bugzilla-53228-artificial-bold-and-italic.patch, which
|
||||
is now upstream.
|
||||
* Wed Jan 17 2007 - sbrabec@suse.cz
|
||||
* Wed Jan 17 2007 sbrabec@suse.cz
|
||||
- Use correct library instance in scriptlets (#235626).
|
||||
* Thu Dec 07 2006 - sbrabec@suse.cz
|
||||
* Thu Dec 07 2006 sbrabec@suse.cz
|
||||
- Prefix changed to /usr.
|
||||
- Spec file cleanup.
|
||||
* Mon Nov 27 2006 - sbrabec@suse.cz
|
||||
* Mon Nov 27 2006 sbrabec@suse.cz
|
||||
- Use correct PreReq for older products.
|
||||
* Thu Nov 23 2006 - sbrabec@suse.cz
|
||||
* Thu Nov 23 2006 sbrabec@suse.cz
|
||||
- Fixed scriptlets for bi-arch (#223149).
|
||||
* Sat Oct 14 2006 - danw@suse.de
|
||||
* Sat Oct 14 2006 danw@suse.de
|
||||
- Remove dead patch
|
||||
* Tue Oct 03 2006 - jhargadon@suse.de
|
||||
* Tue Oct 03 2006 jhargadon@suse.de
|
||||
- update to version 1.14.5
|
||||
- Indic shaper fixes
|
||||
- Misc bug fixes
|
||||
* Sun Sep 17 2006 - ro@suse.de
|
||||
* Mon Sep 18 2006 ro@suse.de
|
||||
- added prereqs for postinstall script
|
||||
* Wed Sep 13 2006 - jhargadon@suse.de
|
||||
* Wed Sep 13 2006 jhargadon@suse.de
|
||||
- update to version 1.14.3
|
||||
- Win32 build improvement
|
||||
- Bug 353525 ¿ libpangoft2-1.0.so.0: undefined reference to
|
||||
`pango_font_description_get_gravity'
|
||||
- Bug 349813 ¿ typo in docs for pango_layout_move_cursor_visually
|
||||
* Mon Sep 04 2006 - sbrabec@suse.cz
|
||||
* Mon Sep 04 2006 sbrabec@suse.cz
|
||||
- Removed SuSEconfig.pango (FATE#300947).
|
||||
* Wed Aug 30 2006 - jhargadon@suse.de
|
||||
* Wed Aug 30 2006 jhargadon@suse.de
|
||||
- update to version 1.14.2
|
||||
- Find shaper/font for Private Use and space characters
|
||||
* Fri Aug 18 2006 - jhargadon@suse.de
|
||||
* Fri Aug 18 2006 jhargadon@suse.de
|
||||
- update to version 1.14.0
|
||||
- Make pango-view accept non-ASCII --text
|
||||
- Require cairo-1.2.2 for the important bug fixes it has.
|
||||
* Tue Aug 01 2006 - gekker@suse.de
|
||||
* Tue Aug 01 2006 gekker@suse.de
|
||||
- Update to version 1.13.4
|
||||
* Update to Unicode Character Database 5.0.0.
|
||||
* Misc fixes.
|
||||
@ -354,7 +413,7 @@ fi
|
||||
Bug 347073 Ð Allow empty GPOS table
|
||||
Bug 347021 Ð atsui crash when a matching font cannot be found.
|
||||
Patch from Brian Tarricone.
|
||||
* Fri Jul 28 2006 - gekker@suse.de
|
||||
* Fri Jul 28 2006 gekker@suse.de
|
||||
- Update to version 1.13.3
|
||||
- Remove upstreamed patches
|
||||
* New public API:
|
||||
@ -393,115 +452,115 @@ fi
|
||||
* Support swash feature in Arabic module.
|
||||
* Line-breaking algorithm updated to Unicode 4.1.
|
||||
* Code borrowed from GNU FriBidi resynched to version 1.0.7.
|
||||
* Tue May 02 2006 - federico@novell.com
|
||||
* Tue May 02 2006 federico@novell.com
|
||||
- Added pango-104365-use-hinted-metrics.diff to fix the Pango-related
|
||||
part of https://bugzilla.novell.com/show_bug.cgi?id=104365. This
|
||||
makes Pango request hinted font metrics from Cairo/Fontconfig, even
|
||||
when we are using unhinted rendering. This is what applications
|
||||
expect; they would draw overlapping glyphs otherwise.
|
||||
* Mon Apr 24 2006 - federico@novell.com
|
||||
* Tue Apr 25 2006 federico@novell.com
|
||||
- Added pango-131128-font-extents-rounding.diff to fix
|
||||
https://bugzilla.novell.com/show_bug.cgi?id=131128. This makes
|
||||
PangoCairoFcFont round the font extents before exposing them to
|
||||
callers, which produces better results with unhinted /
|
||||
un-antialiased displays.
|
||||
* Wed Jan 25 2006 - mls@suse.de
|
||||
* Wed Jan 25 2006 mls@suse.de
|
||||
- converted neededforbuild to BuildRequires
|
||||
* Wed Jan 11 2006 - sbrabec@suse.cz
|
||||
* Wed Jan 11 2006 sbrabec@suse.cz
|
||||
- Removed libpixman from neededforbuild.
|
||||
* Fri Dec 30 2005 - mfabian@suse.de
|
||||
* Fri Dec 30 2005 mfabian@suse.de
|
||||
- Bugzilla #53228: Enhance pango to support artifical bold and
|
||||
italic (add patch by Zhe Su).
|
||||
* Wed Dec 14 2005 - sbrabec@suse.cz
|
||||
* Wed Dec 14 2005 sbrabec@suse.cz
|
||||
- Added related old version cleanups (feature #2852).
|
||||
* Wed Nov 30 2005 - sbrabec@suse.cz
|
||||
* Wed Nov 30 2005 sbrabec@suse.cz
|
||||
- Update to version 1.10.2.
|
||||
* Tue Oct 11 2005 - gekker@suse.de
|
||||
* Wed Oct 12 2005 gekker@suse.de
|
||||
- Update to version 1.10.1
|
||||
* Thu Aug 18 2005 - gekker@suse.de
|
||||
* Thu Aug 18 2005 gekker@suse.de
|
||||
- Update to version 1.10.0
|
||||
* Mon Aug 01 2005 - gekker@suse.de
|
||||
* Mon Aug 01 2005 gekker@suse.de
|
||||
- Update to version 1.9.1
|
||||
* Thu Jul 21 2005 - gekker@suse.de
|
||||
* Thu Jul 21 2005 gekker@suse.de
|
||||
- Update to version 1.9.0
|
||||
* Thu Jun 23 2005 - sbrabec@suse.cz
|
||||
* Thu Jun 23 2005 sbrabec@suse.cz
|
||||
- Fixed devel dependencies.
|
||||
- Removed .la files for modules.
|
||||
* Mon Apr 11 2005 - sbrabec@suse.cz
|
||||
* Mon Apr 11 2005 sbrabec@suse.cz
|
||||
- Fixed Requires of doc subpackage.
|
||||
* Tue Mar 08 2005 - gekker@suse.de
|
||||
* Tue Mar 08 2005 gekker@suse.de
|
||||
- Update to version 1.8.1 (GNOME 2.10).
|
||||
* Mon Jan 03 2005 - gekker@suse.de
|
||||
* Mon Jan 03 2005 gekker@suse.de
|
||||
- Update to version 1.8.0
|
||||
* Wed Dec 15 2004 - gekker@suse.de
|
||||
* Wed Dec 15 2004 gekker@suse.de
|
||||
- Update to version 1.7.0
|
||||
* Wed Nov 17 2004 - gekker@suse.de
|
||||
* Wed Nov 17 2004 gekker@suse.de
|
||||
- Update version to 1.6.0.
|
||||
* Wed Oct 20 2004 - ro@suse.de
|
||||
* Wed Oct 20 2004 ro@suse.de
|
||||
- make specfile rpm-3-save
|
||||
* Thu Aug 26 2004 - federico@ximian.com
|
||||
* Thu Aug 26 2004 federico@ximian.com
|
||||
- Updated to pango 1.4.1
|
||||
- Removed pango-strict-aliasing.patch, as an equivalent patch is in
|
||||
the tarball now
|
||||
* Fri May 21 2004 - sbrabec@suse.cz
|
||||
* Fri May 21 2004 sbrabec@suse.cz
|
||||
- Added ottest to devel package.
|
||||
* Tue Apr 27 2004 - sbrabec@suse.cz
|
||||
* Tue Apr 27 2004 sbrabec@suse.cz
|
||||
- Fixed pango64.patch.
|
||||
* Mon Apr 19 2004 - sbrabec@suse.cz
|
||||
* Mon Apr 19 2004 sbrabec@suse.cz
|
||||
- Strict aliasing fix.
|
||||
* Thu Apr 15 2004 - sbrabec@suse.cz
|
||||
* Thu Apr 15 2004 sbrabec@suse.cz
|
||||
- Updated to version 1.4.0 (GNOME 2.6).
|
||||
* Thu Mar 11 2004 - sbrabec@suse.cz
|
||||
* Thu Mar 11 2004 sbrabec@suse.cz
|
||||
- Use SuSEconfig biarch wrapper and identical filename for all
|
||||
platforms.
|
||||
- Include README.SuSE about biarch problems.
|
||||
* Tue Mar 02 2004 - sbrabec@suse.cz
|
||||
* Tue Mar 02 2004 sbrabec@suse.cz
|
||||
- Bi-arch work-arounds to prevent 32/64 bit conflicts (bug #33705).
|
||||
For more see http://bugzilla.gnome.org/show_bug.cgi?id=129534
|
||||
* Mon Mar 01 2004 - sbrabec@suse.cz
|
||||
* Mon Mar 01 2004 sbrabec@suse.cz
|
||||
- Fixed random crashes of gnome-terminal using mc (bug #29850).
|
||||
http://bugzilla.gnome.org/show_bug.cgi?id=89541
|
||||
- Use run-pango in %%postun, too.
|
||||
- Build with -fno-strict-aliasing.
|
||||
* Tue Jan 06 2004 - adrian@suse.de
|
||||
* Tue Jan 06 2004 adrian@suse.de
|
||||
- fix build
|
||||
* Mon Oct 06 2003 - kukuk@suse.de
|
||||
* Mon Oct 06 2003 kukuk@suse.de
|
||||
- Remove unused atk from neededforbuild
|
||||
* Mon Sep 08 2003 - sbrabec@suse.cz
|
||||
* Mon Sep 08 2003 sbrabec@suse.cz
|
||||
- Removed invalid %%postun.
|
||||
* Fri Sep 05 2003 - sbrabec@suse.cz
|
||||
* Fri Sep 05 2003 sbrabec@suse.cz
|
||||
- Fixed rmdir in %%postun.
|
||||
* Fri Sep 05 2003 - sbrabec@suse.cz
|
||||
* Fri Sep 05 2003 sbrabec@suse.cz
|
||||
- Remove orphan files from SuSE 8.2.
|
||||
* Thu Aug 28 2003 - sbrabec@suse.cz
|
||||
* Thu Aug 28 2003 sbrabec@suse.cz
|
||||
- Updated to version 1.2.5.
|
||||
* Tue Jul 15 2003 - sbrabec@suse.cz
|
||||
* Tue Jul 15 2003 sbrabec@suse.cz
|
||||
- GNOME prefix change to /opt/gnome.
|
||||
* Thu Jun 12 2003 - sbrabec@suse.cz
|
||||
* Thu Jun 12 2003 sbrabec@suse.cz
|
||||
- Branched pango-doc.
|
||||
- Updated file list.
|
||||
- Fixed calling of aclocal.
|
||||
* Wed Jun 11 2003 - sbrabec@suse.cz
|
||||
* Wed Jun 11 2003 sbrabec@suse.cz
|
||||
- Updated to version 1.2.3.
|
||||
- Fixed directory packaging.
|
||||
- Require gnome-filesystem for pango-devel (for docs).
|
||||
- Updated neededforbuild.
|
||||
* Mon Apr 28 2003 - sf@suse.de
|
||||
* Mon Apr 28 2003 sf@suse.de
|
||||
- added fontconfig* to neededforbuild, to compile pangoft2
|
||||
* Fri Feb 21 2003 - hhetter@suse.de
|
||||
* Fri Feb 21 2003 hhetter@suse.de
|
||||
- PreReq touch (Bug Id#23897)
|
||||
* Mon Feb 03 2003 - hhetter@suse.de
|
||||
* Mon Feb 03 2003 hhetter@suse.de
|
||||
- updated to version 1.2.1:
|
||||
* Handle older TrueType Open Arabic fonts.
|
||||
* Make Win32 backend handle a common TrueType font bug
|
||||
* Fix crash with some non-BMP characters
|
||||
* Avoid crashing on font descriptions like " 12"
|
||||
* Minor build fixes
|
||||
* Mon Jan 13 2003 - sbrabec@suse.cz
|
||||
* Mon Jan 13 2003 sbrabec@suse.cz
|
||||
- Added expat to neededforbuild (for new xft2).
|
||||
* Thu Jan 09 2003 - sbrabec@suse.cz
|
||||
* Thu Jan 09 2003 sbrabec@suse.cz
|
||||
- Updated to version 1.2.0.
|
||||
* Thu Nov 07 2002 - hhetter@suse.de
|
||||
* Thu Nov 07 2002 hhetter@suse.de
|
||||
- updated to version 1.0.5
|
||||
* Bug fix for pango_scan_int() needed for recent GTK+.
|
||||
* Improve language specific charset ordering basic-x11
|
||||
@ -509,15 +568,15 @@ fi
|
||||
* Some cross-compiling fixes
|
||||
* Various build fixes
|
||||
* Fix check for no-backend being found.
|
||||
* Tue Oct 22 2002 - sbrabec@suse.cz
|
||||
* Tue Oct 22 2002 sbrabec@suse.cz
|
||||
- Remove obsolette install -d -m755 $RPM_BUILD_ROOT/var/adm/SuSEconfig.
|
||||
* Tue Sep 17 2002 - ro@suse.de
|
||||
* Tue Sep 17 2002 ro@suse.de
|
||||
- removed bogus self-provides
|
||||
* Tue Aug 20 2002 - hhetter@suse.de
|
||||
* Tue Aug 20 2002 hhetter@suse.de
|
||||
- added PreReq: filesystem
|
||||
* Tue Aug 13 2002 - hhetter@suse.de
|
||||
* Tue Aug 13 2002 hhetter@suse.de
|
||||
- disabled qt support (#17642)
|
||||
* Mon Aug 05 2002 - hhetter@suse.de
|
||||
* Mon Aug 05 2002 hhetter@suse.de
|
||||
- updated to version 1.0.4, from changes:
|
||||
* Add Thai shaper for Xft
|
||||
* Support GB-18030, BIG5-HKSCS, CNS-11643, GBK encodings for
|
||||
@ -525,7 +584,7 @@ fi
|
||||
* Support ksc5601.1992-3 fonts in hangul-x shpaer
|
||||
* Support new Arabic characters in Unicode 3.2
|
||||
* misc Bug fixes
|
||||
* Mon Jun 17 2002 - jordi@suse.de
|
||||
* Mon Jun 17 2002 jordi@suse.de
|
||||
- Updated to version 1.0.3
|
||||
* Change algorithm for mapping points to pixels on
|
||||
Windows to match the system method.
|
||||
@ -533,39 +592,39 @@ fi
|
||||
* Fix memory leak in pango_font_real_get_metrics()
|
||||
* Some compilation warning fixes.
|
||||
* Fix passing attr_list == NULL to pango_parse_markip
|
||||
* Thu Jun 13 2002 - ro@suse.de
|
||||
* Thu Jun 13 2002 ro@suse.de
|
||||
- fix autotools sequence
|
||||
* Wed Jun 12 2002 - hhetter@suse.de
|
||||
* Wed Jun 12 2002 hhetter@suse.de
|
||||
- correctly touch the run-pango flag
|
||||
* Wed Jun 12 2002 - hhetter@suse.de
|
||||
* Wed Jun 12 2002 hhetter@suse.de
|
||||
- fix SuSEconfig script
|
||||
* Tue Jun 04 2002 - hhetter@suse.de
|
||||
* Tue Jun 04 2002 hhetter@suse.de
|
||||
- update to version 1.0.2 of the stable series
|
||||
* Support building with FreeType 2.1.0
|
||||
* List Sans,Serif,Monospace when listing fonts for the
|
||||
Xft and FT2 backends.
|
||||
* Portability fixes.
|
||||
* Fix problem with pango-querymodules using g_print().
|
||||
* Tue Apr 30 2002 - meissner@suse.de
|
||||
* Tue Apr 30 2002 meissner@suse.de
|
||||
- %%_lib fixes
|
||||
* Mon Apr 15 2002 - hhetter@suse.de
|
||||
* Mon Apr 15 2002 hhetter@suse.de
|
||||
- fix config script to work with correct path
|
||||
* Tue Apr 09 2002 - hhetter@suse.de
|
||||
* Tue Apr 09 2002 hhetter@suse.de
|
||||
- filelist correction
|
||||
* Tue Apr 09 2002 - hhetter@suse.de
|
||||
* Tue Apr 09 2002 hhetter@suse.de
|
||||
- updated to version 1.0.1
|
||||
* Thu Jan 31 2002 - hhetter@suse.de
|
||||
* Thu Jan 31 2002 hhetter@suse.de
|
||||
- updated to version 0.24 [GNOME desktop-alpha2]
|
||||
* Thu Jan 17 2002 - hhetter@suse.de
|
||||
* Thu Jan 17 2002 hhetter@suse.de
|
||||
- delete SuSEconfig-run-flag after registering pango modules
|
||||
* Thu Jan 17 2002 - ro@suse.de
|
||||
* Thu Jan 17 2002 ro@suse.de
|
||||
- re-added .so symlinks to devel filelist (without wildcards)
|
||||
* Wed Jan 16 2002 - hhetter@suse.de
|
||||
* Wed Jan 16 2002 hhetter@suse.de
|
||||
- added SuSEconfig script to register the pango modules
|
||||
- fixed filelist
|
||||
* Tue Jan 15 2002 - hhetter@suse.de
|
||||
* Tue Jan 15 2002 hhetter@suse.de
|
||||
- fixed filelist
|
||||
* Fri Jan 11 2002 - hhetter@suse.de
|
||||
* Fri Jan 11 2002 hhetter@suse.de
|
||||
- updated to version 0.23:
|
||||
* Documentation improvements
|
||||
* Win32 fixes
|
||||
@ -573,11 +632,11 @@ fi
|
||||
* Fixes for crashes in Hangul shaper
|
||||
* Improvements to Arabic shapers for X and Xft
|
||||
* Add jisx0212, jisx0201, Big5 support to basic shaper
|
||||
* Wed Jan 09 2002 - hhetter@suse.de
|
||||
* Wed Jan 09 2002 hhetter@suse.de
|
||||
- enable freetype2 support
|
||||
* Tue Dec 11 2001 - hhetter@suse.de
|
||||
* Tue Dec 11 2001 hhetter@suse.de
|
||||
- really build pangox and pango
|
||||
* Tue Dec 11 2001 - hhetter@suse.de
|
||||
* Tue Dec 11 2001 hhetter@suse.de
|
||||
- added LIBRARY_PATH for broken libtool
|
||||
* Tue Nov 27 2001 - hhetter@suse.de
|
||||
* Tue Nov 27 2001 hhetter@suse.de
|
||||
- initial SuSE package for GNOME 2.0 platform (pango 0.22)
|
||||
|
Loading…
Reference in New Issue
Block a user