- updated to 20140226: * FORCE_{SANS,SERIF,MONO}_PREFERENCE replaced by SEARCH_METRIC_COMPATIBLE - updated to 20140225: * introduced FORCE_{SANS,SERIF,MONO}_PREFERENCE - updated to 20140224: * add example of family preference: CFF fonts - updated to 20140222: * don't use autohinter for CFF files * hinstlight for CFF files - updated to 20140221 * added 31-metric-aliases-bw.conf - updated to 20140219 - revorked package, fontconfig configuration based on infinality one - added patches: * fontconfig-infinality-main.patch (remove parts of original 52-infinality.conf) OBS-URL: https://build.opensuse.org/request/show/224056 OBS-URL: https://build.opensuse.org/package/show/M17N/fonts-config?expand=0&rev=38
47 lines
1.8 KiB
XML
47 lines
1.8 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
|
<fontconfig>
|
|
<!-- according to infinality database, e.g. Helvetica or Nimbus Sans L
|
|
are not well hinted. Fall back to Liberation Sans instead, when
|
|
black and white rendering was chosen. -->
|
|
<match target="pattern">
|
|
<test name="force_bw">
|
|
<bool>true</bool>
|
|
</test>
|
|
<!-- Helvetica represents group here as defined in
|
|
30-metric-aliases.conf -->
|
|
<test name="family">
|
|
<string>Helvetica</string>
|
|
</test>
|
|
<edit name="family" mode="append" binding="same">
|
|
<string>Liberation Sans</string>
|
|
</edit>
|
|
</match>
|
|
<match target="pattern">
|
|
<test name="force_bw">
|
|
<bool>true</bool>
|
|
</test>
|
|
<!-- Times represents group here as defined in
|
|
30-metric-aliases.conf -->
|
|
<test name="family">
|
|
<string>Times</string>
|
|
</test>
|
|
<edit name="family" mode="append" binding="same">
|
|
<string>Liberation Serif</string>
|
|
</edit>
|
|
</match>
|
|
<match target="pattern">
|
|
<test name="force_bw">
|
|
<bool>true</bool>
|
|
</test>
|
|
<!-- Courier represents group here as defined in
|
|
30-metric-aliases.conf -->
|
|
<test name="family">
|
|
<string>Courier</string>
|
|
</test>
|
|
<edit name="family" mode="append" binding="same">
|
|
<string>Liberation Mono</string>
|
|
</edit>
|
|
</match>
|
|
</fontconfig>
|