-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
80 changed files
with
13,557 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+88 Bytes
lib/plugins/etc/fonts/cache/a3bd438974cadbbdf62c8118502fd96d-le32d8.cache-6
Binary file not shown.
Binary file added
BIN
+1.42 MB
lib/plugins/etc/fonts/cache/d031bbba323fd9e5b47e0ee5a0353f11-le32d8.cache-6
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version='1.0'?> | ||
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | ||
<fontconfig> | ||
|
||
<!-- ## Base rendering settings ## --> | ||
<match target="font"> | ||
<edit name="rgba" mode="assign"> | ||
<const>rgb</const> | ||
</edit> | ||
<edit name="hinting" mode="assign"> | ||
<bool>true</bool> | ||
</edit> | ||
<edit name="autohint" mode="assign"> | ||
<bool>true</bool> | ||
</edit> | ||
<edit name="antialias" mode="assign"> | ||
<bool>true</bool> | ||
</edit> | ||
<edit name="hintstyle" mode="assign"> | ||
<const>hintslight</const> | ||
</edit> | ||
<edit name="lcdfilter" mode="assign"> | ||
<const>lcddefault</const> | ||
</edit> | ||
</match> | ||
|
||
</fontconfig> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | ||
<fontconfig> | ||
|
||
<match target="font"> | ||
<test name="scalable" compare="eq"> | ||
<bool>false</bool> | ||
</test> | ||
<edit name="pixelsizefixupfactor" mode="assign"> | ||
<divide> | ||
<name target="pattern">pixelsize</name> | ||
<name target="font" >pixelsize</name> | ||
</divide> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<test name="scalable" compare="eq"> | ||
<bool>false</bool> | ||
</test> | ||
<edit name="scalingnotneeded" mode="assign"> | ||
<and> | ||
<less> | ||
<name>pixelsizefixupfactor</name> | ||
<double>1.2</double> | ||
</less> | ||
<more> | ||
<name>pixelsizefixupfactor</name> | ||
<double>0.8</double> | ||
</more> | ||
</and> | ||
</edit> | ||
</match> | ||
<!-- | ||
So far we determined the scale factor. Now, check and if | ||
scaling is NOT desirable, just reset the scale factor to 1.0. | ||
--> | ||
<match target="font"> | ||
<test name="scalable" compare="eq"> | ||
<bool>false</bool> | ||
</test> | ||
<test name="pixelsize" target="pattern" compare="less"> | ||
<double>64</double> | ||
</test> | ||
<test name="hinting" compare="eq"> | ||
<bool>true</bool> | ||
</test> | ||
<test name="scalingnotneeded" compare="eq"> | ||
<bool>true</bool> | ||
</test> | ||
<edit name="pixelsizefixupfactor" mode="assign"> | ||
<double>1.0</double> | ||
</edit> | ||
</match> | ||
<!-- | ||
If we *are* going to scale, go ahead and do it. | ||
--> | ||
<match target="font"> | ||
<test name="scalable" compare="eq"> | ||
<bool>false</bool> | ||
</test> | ||
<test name="pixelsizefixupfactor" compare="not_eq"> | ||
<double>1.0</double> | ||
</test> | ||
<edit name="matrix" mode="assign"> | ||
<times> | ||
<name>matrix</name> | ||
<matrix> | ||
<name>pixelsizefixupfactor</name> <double>0</double> | ||
<double>0</double> <name>pixelsizefixupfactor</name> | ||
</matrix> | ||
</times> | ||
</edit> | ||
<edit name="size" mode="assign"> | ||
<divide> | ||
<name>size</name> | ||
<name>pixelsizefixupfactor</name> | ||
</divide> | ||
</edit> | ||
</match> | ||
|
||
</fontconfig> |
26 changes: 26 additions & 0 deletions
26
lib/plugins/etc/fonts/conf.d/20-unhint-small-dejavu-sans-mono.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd"> | ||
<fontconfig> | ||
<!-- /etc/fonts/conf.d/20-unhint-small-dejavu-sans-mono.conf | ||
Disable hinting manually at smaller sizes (< 8ppem) | ||
This is a copy of the Bistream Vera fonts fonts rule, as DejaVu is | ||
derived from Vera. | ||
The Bistream Vera fonts have GASP entries suggesting that hinting be | ||
disabled below 8 ppem, but FreeType ignores those, preferring to use | ||
the data found in the instructed hints. The initial Vera release | ||
didn't include the right instructions in the 'prep' table. | ||
--> | ||
<match target="font"> | ||
<test name="family"> | ||
<string>DejaVu Sans Mono</string> | ||
</test> | ||
<test compare="less" name="pixelsize"> | ||
<double>7.5</double> | ||
</test> | ||
<edit name="hinting"> | ||
<bool>false</bool> | ||
</edit> | ||
</match> | ||
</fontconfig> |
26 changes: 26 additions & 0 deletions
26
lib/plugins/etc/fonts/conf.d/20-unhint-small-dejavu-sans.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd"> | ||
<fontconfig> | ||
<!-- /etc/fonts/conf.d/20-unhint-small-dejavu-sans.conf | ||
Disable hinting manually at smaller sizes (< 8ppem) | ||
This is a copy of the Bistream Vera fonts fonts rule, as DejaVu is | ||
derived from Vera. | ||
The Bistream Vera fonts have GASP entries suggesting that hinting be | ||
disabled below 8 ppem, but FreeType ignores those, preferring to use | ||
the data found in the instructed hints. The initial Vera release | ||
didn't include the right instructions in the 'prep' table. | ||
--> | ||
<match target="font"> | ||
<test name="family"> | ||
<string>DejaVu Sans</string> | ||
</test> | ||
<test compare="less" name="pixelsize"> | ||
<double>7.5</double> | ||
</test> | ||
<edit name="hinting"> | ||
<bool>false</bool> | ||
</edit> | ||
</match> | ||
</fontconfig> |
26 changes: 26 additions & 0 deletions
26
lib/plugins/etc/fonts/conf.d/20-unhint-small-dejavu-serif.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd"> | ||
<fontconfig> | ||
<!-- /etc/fonts/conf.d/20-unhint-small-dejavu-serif.conf | ||
Disable hinting manually at smaller sizes (< 8ppem) | ||
This is a copy of the Bistream Vera fonts fonts rule, as DejaVu is | ||
derived from Vera. | ||
The Bistream Vera fonts have GASP entries suggesting that hinting be | ||
disabled below 8 ppem, but FreeType ignores those, preferring to use | ||
the data found in the instructed hints. The initial Vera release | ||
didn't include the right instructions in the 'prep' table. | ||
--> | ||
<match target="font"> | ||
<test name="family"> | ||
<string>DejaVu Serif</string> | ||
</test> | ||
<test compare="less" name="pixelsize"> | ||
<double>7.5</double> | ||
</test> | ||
<edit name="hinting"> | ||
<bool>false</bool> | ||
</edit> | ||
</match> | ||
</fontconfig> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | ||
<fontconfig> | ||
<!-- | ||
The Bitstream Vera fonts have GASP entries suggesting that hinting be | ||
disabled below 8 ppem, but FreeType ignores those, preferring to use | ||
the data found in the instructed hints. The initial Vera release | ||
didn't include the right instructions in the 'prep' table. Fix this | ||
by disabling hinting manually at smaller sizes (< 8ppem) | ||
--> | ||
|
||
<match target="font"> | ||
<test name="family" compare="eq" ignore-blanks="true"> | ||
<string>Bitstream Vera Sans</string> | ||
</test> | ||
<test name="pixelsize" compare="less"> | ||
<double>7.5</double> | ||
</test> | ||
<edit name="hinting"> | ||
<bool>false</bool> | ||
</edit> | ||
</match> | ||
|
||
<match target="font"> | ||
<test name="family" compare="eq" ignore-blanks="true"> | ||
<string>Bitstream Vera Serif</string> | ||
</test> | ||
<test name="pixelsize" compare="less"> | ||
<double>7.5</double> | ||
</test> | ||
<edit name="hinting"> | ||
<bool>false</bool> | ||
</edit> | ||
</match> | ||
|
||
<match target="font"> | ||
<test name="family" compare="eq" ignore-blanks="true"> | ||
<string>Bitstream Vera Sans Mono</string> | ||
</test> | ||
<test name="pixelsize" compare="less"> | ||
<double>7.5</double> | ||
</test> | ||
<edit name="hinting"> | ||
<bool>false</bool> | ||
</edit> | ||
</match> | ||
|
||
</fontconfig> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | ||
<fontconfig> | ||
|
||
<!-- ## Load per-user customization files. ## --> | ||
<!-- These should be stored in XDG Base Directory specification | ||
compliant places. it should be usually: | ||
$HOME/.config/fontconfig/conf.d | ||
$HOME/.config/fontconfig/fonts.conf --> | ||
|
||
<include ignore_missing="yes" prefix="xdg">fontconfig/conf.d</include> | ||
<include ignore_missing="yes" prefix="xdg">fontconfig/fonts.conf</include> | ||
|
||
</fontconfig> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | ||
<fontconfig> | ||
|
||
<!-- ## Load local system customization file. ## --> | ||
<include ignore_missing="yes">local.conf</include> | ||
|
||
</fontconfig> |
Oops, something went wrong.