2ec180baa3
- Revisit SUSE-specific config (bnc#766319): * Split suse-hinting.conf to a part defining the default autohint and a part defining the default hintstyle depending on autohint. These are now put in conf.d/11-suse-hinting.conf and 16-suse-hintstyle.conf, so that extra packages may put their own autohint value between them. * Move suse-bitmaps.conf to conf.d, too * Move optional configs modified by fonts-config to fonts-config package itself - Set autohint=true for IPA* fonts as well as MS fonts; hintslight will be chosen automatically (bnc#766319) - Add missing IPAex* fonts to suse-generic-names.conf lists. - Obsolete ipa-fonts-config package as the default configs are now included in this package OBS-URL: https://build.opensuse.org/request/show/124898 OBS-URL: https://build.opensuse.org/package/show/M17N/fontconfig?expand=0&rev=82
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
|
<fontconfig>
|
|
|
|
<!-- ************************************************************ -->
|
|
<!-- Bitmap related stuff -->
|
|
<!-- ************************************************************ -->
|
|
|
|
<!--
|
|
The IPA fonts have bitmaps only in 12, 14, and 16 pixels.
|
|
That is rather useless, it is not nice to see a bitmaps at 12
|
|
pixels, antialiased glyphs at 13 pixels and bitmaps at 14
|
|
pixels again.
|
|
-->
|
|
<match target="font">
|
|
<test name="family">
|
|
<string>IPAMincho</string>
|
|
<string>IPAGothic</string>
|
|
<string>IPAPMincho</string>
|
|
<string>IPAPGothic</string>
|
|
<string>IPAUIGothic</string>
|
|
<string>IPAexMincho</string>
|
|
<string>IPAexGothic</string>
|
|
</test>
|
|
<edit name="embeddedbitmap">
|
|
<bool>false</bool>
|
|
</edit>
|
|
</match>
|
|
|
|
</fontconfig>
|