Add hintstyle templates and make hintslight default
This commit is contained in:
parent
04763135d4
commit
98434b3392
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||||
|
<fontconfig>
|
||||||
|
<match target="pattern">
|
||||||
|
<!--
|
||||||
|
This configuration is available on the major desktop environments.
|
||||||
|
We shouldn't overwrite it with "assign" unconditionally.
|
||||||
|
Most clients may picks up the first value only. so using "append"
|
||||||
|
may simply works to avoid it.
|
||||||
|
-->
|
||||||
|
<edit name="hintstyle" mode="append"><const>hintfull</const></edit>
|
||||||
|
</match>
|
||||||
|
</fontconfig>
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||||
|
<fontconfig>
|
||||||
|
<match target="pattern">
|
||||||
|
<!--
|
||||||
|
This configuration is available on the major desktop environments.
|
||||||
|
We shouldn't overwrite it with "assign" unconditionally.
|
||||||
|
Most clients may picks up the first value only. so using "append"
|
||||||
|
may simply works to avoid it.
|
||||||
|
-->
|
||||||
|
<edit name="hintstyle" mode="append"><const>hintmedium</const></edit>
|
||||||
|
</match>
|
||||||
|
</fontconfig>
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||||
|
<fontconfig>
|
||||||
|
<match target="pattern">
|
||||||
|
<!--
|
||||||
|
This configuration is available on the major desktop environments.
|
||||||
|
We shouldn't overwrite it with "assign" unconditionally.
|
||||||
|
Most clients may picks up the first value only. so using "append"
|
||||||
|
may simply works to avoid it.
|
||||||
|
-->
|
||||||
|
<edit name="hintstyle" mode="append"><const>hintnone</const></edit>
|
||||||
|
</match>
|
||||||
|
</fontconfig>
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||||
|
<fontconfig>
|
||||||
|
<match target="pattern">
|
||||||
|
<!--
|
||||||
|
This configuration is available on the major desktop environments.
|
||||||
|
We shouldn't overwrite it with "assign" unconditionally.
|
||||||
|
Most clients may picks up the first value only. so using "append"
|
||||||
|
may simply works to avoid it.
|
||||||
|
-->
|
||||||
|
<edit name="hintstyle" mode="append"><const>hintslight</const></edit>
|
||||||
|
</match>
|
||||||
|
</fontconfig>
|
|
@ -26,6 +26,7 @@ DOC_SOURCES = README.in
|
||||||
DOC_FILES = $(DOC_SOURCES:.in=)
|
DOC_FILES = $(DOC_SOURCES:.in=)
|
||||||
|
|
||||||
CONF_LINKS = \
|
CONF_LINKS = \
|
||||||
|
10-hinting-slight.conf \
|
||||||
10-scale-bitmap-fonts.conf \
|
10-scale-bitmap-fonts.conf \
|
||||||
20-unhint-small-vera.conf \
|
20-unhint-small-vera.conf \
|
||||||
30-urw-aliases.conf \
|
30-urw-aliases.conf \
|
||||||
|
@ -51,6 +52,10 @@ config_DATA = $(DOC_FILES)
|
||||||
templatedir = $(TEMPLATEDIR)
|
templatedir = $(TEMPLATEDIR)
|
||||||
template_DATA = \
|
template_DATA = \
|
||||||
10-autohint.conf \
|
10-autohint.conf \
|
||||||
|
10-hinting-full.conf \
|
||||||
|
10-hinting-medium.conf \
|
||||||
|
10-hinting-none.conf \
|
||||||
|
10-hinting-slight.conf \
|
||||||
10-no-sub-pixel.conf \
|
10-no-sub-pixel.conf \
|
||||||
10-scale-bitmap-fonts.conf \
|
10-scale-bitmap-fonts.conf \
|
||||||
10-sub-pixel-bgr.conf \
|
10-sub-pixel-bgr.conf \
|
||||||
|
|
Loading…
Reference in New Issue