OBS User unknown 2007-03-23 20:21:19 +00:00 committed by Git OBS Bridge
parent e7badd7a00
commit 285631aaf2
3 changed files with 28 additions and 3 deletions

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Fri Mar 23 18:46:17 CET 2007 - mfabian@suse.de
- Bugzilla #118131 comment #93: set the autohinter default
matching on "font" instead of on "pattern".
If an autohint value is set in pattern, OpenOffice 2.1 will use
that even if there are fontconfig rules matching on "font" which
should override it again). This doesn't cause any problems for
Cairo/Gnome (see bug #104365) because Cairo/Gnome don't try to
change the autohint value anyway.
-------------------------------------------------------------------
Mon Mar 12 16:01:47 CET 2007 - mfabian@suse.de

View File

@ -23,7 +23,7 @@ URL: http://fontconfig.org/
Autoreqprov: on
Requires: bash
Version: 2.4.2
Release: 4
Release: 5
Summary: Library for Font Configuration
# CVS can be found here: (CVS is gone, fontconfig uses git now).
# $ cvs -d :pserver:anoncvs@pdx.freedesktop.org:/cvs/fontconfig login
@ -221,6 +221,14 @@ rm -rf $RPM_BUILD_ROOT
%{myprefix}/include/fontconfig/
%changelog
* Fri Mar 23 2007 - mfabian@suse.de
- Bugzilla #118131 comment #93: set the autohinter default
matching on "font" instead of on "pattern".
If an autohint value is set in pattern, OpenOffice 2.1 will use
that even if there are fontconfig rules matching on "font" which
should override it again). This doesn't cause any problems for
Cairo/Gnome (see bug #104365) because Cairo/Gnome don't try to
change the autohint value anyway.
* Mon Mar 12 2007 - mfabian@suse.de
- duplicate patterns correctly (fixes some parts of bug #244579
for Qt4).

View File

@ -33,10 +33,16 @@
</match>
<!--
Set autohinter=true as the default, then add exceptions for certain fonts:
Set autohinter=true as the default, then add exceptions for certain fonts.
Match on "font" here, not on "pattern" because of bug #118131 comment #93.
(If an autohint value is set in pattern, OpenOffice 2.1 will use that even
if there are fontconfig rules matching on "font" which should override it
again). This doesn't cause any problems for Cairo/Gnome (see bug #104365)
because Cairo/Gnome don't try to change the autohint value anyway.
-->
<match target="pattern">
<match target="font">
<edit name="autohint">
<bool>true</bool>
</edit>