This commit is contained in:
parent
e7badd7a00
commit
285631aaf2
@ -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
|
||||
|
||||
|
@ -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).
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user