From c04dcc2e7d834218ef2d4194331e383402495ae1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 20:07:22 +0200 Subject: Adding upstream version 2:20.4+dfsg. Signed-off-by: Daniel Baumann --- .../etc/fonts/conf.avail/10-autohint.conf | 9 + .../etc/fonts/conf.avail/10-no-sub-pixel.conf | 9 + .../etc/fonts/conf.avail/10-sub-pixel-bgr.conf | 9 + .../etc/fonts/conf.avail/10-sub-pixel-rgb.conf | 9 + .../etc/fonts/conf.avail/10-sub-pixel-vbgr.conf | 9 + .../etc/fonts/conf.avail/10-sub-pixel-vrgb.conf | 9 + .../etc/fonts/conf.avail/10-unhinted.conf | 9 + .../etc/fonts/conf.avail/20-fix-globaladvance.conf | 29 ++ .../etc/fonts/conf.avail/20-lohit-gujarati.conf | 11 + .../etc/fonts/conf.avail/20-unhint-small-vera.conf | 49 ++ .../etc/fonts/conf.avail/30-amt-aliases.conf | 21 + .../etc/fonts/conf.avail/30-urw-aliases.conf | 52 ++ .../etc/fonts/conf.avail/40-generic.conf | 66 +++ .../etc/fonts/conf.avail/49-sansserif.conf | 21 + .../VideoPlayer/etc/fonts/conf.avail/50-user.conf | 7 + .../VideoPlayer/etc/fonts/conf.avail/51-local.conf | 7 + .../VideoPlayer/etc/fonts/conf.avail/60-latin.conf | 42 ++ .../etc/fonts/conf.avail/65-fonts-persian.conf | 539 +++++++++++++++++++++ .../etc/fonts/conf.avail/65-nonlatin.conf | 38 ++ .../etc/fonts/conf.avail/69-unifont.conf | 24 + .../etc/fonts/conf.avail/70-no-bitmaps.conf | 13 + .../etc/fonts/conf.avail/70-yes-bitmaps.conf | 13 + .../etc/fonts/conf.avail/80-delicious.conf | 20 + .../etc/fonts/conf.avail/90-synthetic.conf | 64 +++ .../VideoPlayer/etc/fonts/conf.avail/README | 48 ++ .../etc/fonts/conf.d/20-fix-globaladvance.conf | 29 ++ .../etc/fonts/conf.d/20-lohit-gujarati.conf | 11 + .../etc/fonts/conf.d/20-unhint-small-vera.conf | 49 ++ .../etc/fonts/conf.d/30-amt-aliases.conf | 21 + .../etc/fonts/conf.d/30-urw-aliases.conf | 52 ++ .../VideoPlayer/etc/fonts/conf.d/40-generic.conf | 66 +++ .../VideoPlayer/etc/fonts/conf.d/49-sansserif.conf | 21 + .../VideoPlayer/etc/fonts/conf.d/50-user.conf | 7 + .../VideoPlayer/etc/fonts/conf.d/51-local.conf | 7 + .../VideoPlayer/etc/fonts/conf.d/60-latin.conf | 42 ++ .../etc/fonts/conf.d/65-fonts-persian.conf | 539 +++++++++++++++++++++ .../VideoPlayer/etc/fonts/conf.d/65-nonlatin.conf | 38 ++ .../VideoPlayer/etc/fonts/conf.d/69-unifont.conf | 24 + .../VideoPlayer/etc/fonts/conf.d/80-delicious.conf | 20 + .../VideoPlayer/etc/fonts/conf.d/90-synthetic.conf | 64 +++ system/players/VideoPlayer/etc/fonts/fonts.conf | 156 ++++++ system/players/VideoPlayer/etc/fonts/fonts.dtd | 222 +++++++++ 42 files changed, 2495 insertions(+) create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/10-autohint.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/10-no-sub-pixel.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-bgr.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-rgb.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-vbgr.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-vrgb.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/10-unhinted.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/20-fix-globaladvance.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/20-lohit-gujarati.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/20-unhint-small-vera.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/30-amt-aliases.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/30-urw-aliases.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/40-generic.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/49-sansserif.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/50-user.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/51-local.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/60-latin.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/65-fonts-persian.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/65-nonlatin.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/69-unifont.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/70-no-bitmaps.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/70-yes-bitmaps.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/80-delicious.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/90-synthetic.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.avail/README create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/20-fix-globaladvance.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/20-lohit-gujarati.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/20-unhint-small-vera.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/30-amt-aliases.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/30-urw-aliases.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/40-generic.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/49-sansserif.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/50-user.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/51-local.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/60-latin.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/65-fonts-persian.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/65-nonlatin.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/69-unifont.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/80-delicious.conf create mode 100644 system/players/VideoPlayer/etc/fonts/conf.d/90-synthetic.conf create mode 100644 system/players/VideoPlayer/etc/fonts/fonts.conf create mode 100644 system/players/VideoPlayer/etc/fonts/fonts.dtd (limited to 'system/players') diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/10-autohint.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/10-autohint.conf new file mode 100644 index 0000000..3a8b94e --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/10-autohint.conf @@ -0,0 +1,9 @@ + + + + + + + true + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/10-no-sub-pixel.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/10-no-sub-pixel.conf new file mode 100644 index 0000000..b3c3dac --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/10-no-sub-pixel.conf @@ -0,0 +1,9 @@ + + + + + + + none + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-bgr.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-bgr.conf new file mode 100644 index 0000000..8b05fcd --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-bgr.conf @@ -0,0 +1,9 @@ + + + + + + + bgr + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-rgb.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-rgb.conf new file mode 100644 index 0000000..dd1aa6d --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-rgb.conf @@ -0,0 +1,9 @@ + + + + + + + rgb + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-vbgr.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-vbgr.conf new file mode 100644 index 0000000..e1fb404 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-vbgr.conf @@ -0,0 +1,9 @@ + + + + + + + vbgr + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-vrgb.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-vrgb.conf new file mode 100644 index 0000000..8c4fdfc --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/10-sub-pixel-vrgb.conf @@ -0,0 +1,9 @@ + + + + + + + vrgb + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/10-unhinted.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/10-unhinted.conf new file mode 100644 index 0000000..82c069c --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/10-unhinted.conf @@ -0,0 +1,9 @@ + + + + + + + false + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/20-fix-globaladvance.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/20-fix-globaladvance.conf new file mode 100644 index 0000000..a62162c --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/20-fix-globaladvance.conf @@ -0,0 +1,29 @@ + + + + + + + GulimChe + false + + + + DotumChe + false + + + + BatangChe + false + + + + GungsuhChe + false + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/20-lohit-gujarati.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/20-lohit-gujarati.conf new file mode 100644 index 0000000..1c29d0d --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/20-lohit-gujarati.conf @@ -0,0 +1,11 @@ + + + + + + + + Lohit Gujarati + false + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/20-unhint-small-vera.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/20-unhint-small-vera.conf new file mode 100644 index 0000000..51999c5 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/20-unhint-small-vera.conf @@ -0,0 +1,49 @@ + + + + + + + + + Bitstream Vera Sans + + + 7.5 + + + false + + + + + + Bitstream Vera Serif + + + 7.5 + + + false + + + + + + Bitstream Vera Sans Mono + + + 7.5 + + + false + + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/30-amt-aliases.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/30-amt-aliases.conf new file mode 100644 index 0000000..d6df67e --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/30-amt-aliases.conf @@ -0,0 +1,21 @@ + + + + + + + Times New Roman + Thorndale AMT + + + Arial + Albany AMT + + + Courier New + Cumberland AMT + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/30-urw-aliases.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/30-urw-aliases.conf new file mode 100644 index 0000000..cf90dd5 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/30-urw-aliases.conf @@ -0,0 +1,52 @@ + + + + + + + Avant Garde + URW Gothic L + + + Bookman + URW Bookman L + + + Courier + Nimbus Mono L + + + Helvetica + Nimbus Sans L + + + New Century Schoolbook + Century Schoolbook L + + + Palatino + URW Palladio L + + + Times + Nimbus Roman No9 L + + + Zapf Chancery + URW Chancery L + + + Zapf Dingbats + Dingbats + + + + Symbol + + + Standard Symbols L + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/40-generic.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/40-generic.conf new file mode 100644 index 0000000..84e85e4 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/40-generic.conf @@ -0,0 +1,66 @@ + + + + + + + + Bitstream Vera Serif + DejaVu Serif + Times New Roman + Times + Nimbus Roman No9 L + Luxi Serif + Kochi Mincho + AR PL SungtiL GB + AR PL Mingti2L Big5 + MS 明朝 + Baekmuk Batang + FreeSerif + MgOpen Canonica + serif + + + + Bitstream Vera Sans + DejaVu Sans + Helvetica + Arial + Verdana + Albany AMT + Nimbus Sans L + Luxi Sans + Kochi Gothic + AR PL KaitiM GB + AR PL KaitiM Big5 + MS ゴシック + Baekmuk Dotum + SimSun + FreeSans + MgOpen Modata + sans-serif + + + + Bitstream Vera Sans Mono + DejaVu Sans Mono + Courier + Courier New + Andale Mono + Luxi Mono + Cumberland AMT + Nimbus Mono L + NSimSun + FreeMono + monospace + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/49-sansserif.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/49-sansserif.conf new file mode 100644 index 0000000..c6209a7 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/49-sansserif.conf @@ -0,0 +1,21 @@ + + + + + + + sans-serif + + + serif + + + monospace + + + sans-serif + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/50-user.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/50-user.conf new file mode 100644 index 0000000..9a38a40 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/50-user.conf @@ -0,0 +1,7 @@ + + + + + + ~/.fonts.conf + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/51-local.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/51-local.conf new file mode 100644 index 0000000..d35046e --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/51-local.conf @@ -0,0 +1,7 @@ + + + + + + local.conf + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/60-latin.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/60-latin.conf new file mode 100644 index 0000000..06cdd7e --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/60-latin.conf @@ -0,0 +1,42 @@ + + + + + serif + + Bitstream Vera Serif + DejaVu Serif + Times New Roman + Thorndale AMT + Luxi Serif + Nimbus Roman No9 L + Times + + + + sans-serif + + Bitstream Vera Sans + DejaVu Sans + Verdana + Arial + Albany AMT + Luxi Sans + Nimbus Sans L + Helvetica + + + + monospace + + Bitstream Vera Sans Mono + DejaVu Sans Mono + Andale Mono + Courier New + Cumberland AMT + Luxi Mono + Nimbus Mono L + Courier + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/65-fonts-persian.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/65-fonts-persian.conf new file mode 100644 index 0000000..4c9f81c --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/65-fonts-persian.conf @@ -0,0 +1,539 @@ + + + + + + + + + + + + + + + + Nesf + + + Nesf2 + + + + + Nesf2 + + + Persian_sansserif_default + + + + + + + + + + + + Nazanin + + + Nazli + + + + + Lotus + + + Lotoos + + + + + + + Yaqut + + + Yaghoot + + + + + Yagut + + + Yaghoot + + + + + Yaghut + + + Yaghoot + + + + + Traffic + + + Terafik + + + + + Ferdowsi + + + Ferdosi + + + + + Fantezy + + + Fantezi + + + + + + + + + + Jadid + + + Persian_title + + + + + Titr + + + Persian_title + + + + + + + Kamran + + + Homa + + + Persian_fantasy + + + + + Homa + + + Kamran + + + Persian_fantasy + + + + + Fantezi + + + Persian_fantasy + + + + + Tabassom + + + Persian_fantasy + + + + + + + Arshia + + + Persian_square + + + + + Nasim + + + Persian_square + + + + + Elham + + + Farnaz + + + Persian_square + + + + + Farnaz + + + Elham + + + Persian_square + + + + + Sina + + + Persian_square + + + + + + + + + Persian_title + + + Persian_serif + + + Jadid + + + Titr + + + + + + + Persian_fantasy + + + Persian_square + + + Tabassom + + + Fantezi + + + Kamran + + + Homa + + + + + + + Persian_square + + + Persian_serif + + + Sina + + + Nasim + + + Farnaz + + + Elham + + + Arshia + + + + + + + + Elham + + + farsiweb + + + + + + Homa + + + farsiweb + + + + + + Koodak + + + farsiweb + + + + + + Nazli + + + farsiweb + + + + + + Roya + + + farsiweb + + + + + + Terafik + + + farsiweb + + + + + + Titr + + + farsiweb + + + + + + + + + + TURNED-OFF + + + farsiweb + + + + roman + + + + roman + + + + + matrix + 1-0.2 + 01 + + + + + + oblique + + + + + + + + + farsiweb + + + false + + + false + + + false + + + + + + + + + serif + + Nazli + Lotoos + Mitra + Ferdosi + Badr + Zar + + + + + + sans-serif + + Roya + Koodak + Terafik + + + + + + monospace + + + Terafik + + + + + + + + + + serif + + + 200 + + + 24 + + + Titr + + + + + + + sans-serif + + + 200 + + + 24 + + + Titr + + + + + + + Persian_sansserif_default + + + 200 + + + 24 + + + Titr + + + + + + + + + Persian_sansserif_default + + + Roya + + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/65-nonlatin.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/65-nonlatin.conf new file mode 100644 index 0000000..f8dbb64 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/65-nonlatin.conf @@ -0,0 +1,38 @@ + + + + + serif + + Frank Ruehl + MgOpen Canonica + Kochi Mincho + AR PL SungtiL GB + AR PL Mingti2L Big5 + MS 明朝 + Baekmuk Batang + + + + sans-serif + + Nachlieli + MgOpen Modata + Kochi Gothic + AR PL KaitiM GB + AR PL KaitiM Big5 + MS ゴシック + Baekmuk Dotum + SimSun + + + + monospace + + Miriam Mono + Kochi Gothic + AR PL KaitiM GB + Baekmuk Dotum + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/69-unifont.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/69-unifont.conf new file mode 100644 index 0000000..a784af9 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/69-unifont.conf @@ -0,0 +1,24 @@ + + + + + serif + + FreeSerif + Code2000 + + + + sans-serif + + FreeSans + Arial Unicode MS + + + + monospace + + FreeMono + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/70-no-bitmaps.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/70-no-bitmaps.conf new file mode 100644 index 0000000..e8fb6a9 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/70-no-bitmaps.conf @@ -0,0 +1,13 @@ + + + + + + + + + false + + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/70-yes-bitmaps.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/70-yes-bitmaps.conf new file mode 100644 index 0000000..c539c70 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/70-yes-bitmaps.conf @@ -0,0 +1,13 @@ + + + + + + + + + false + + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/80-delicious.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/80-delicious.conf new file mode 100644 index 0000000..701429b --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/80-delicious.conf @@ -0,0 +1,20 @@ + + + + + + + + + + Delicious + + + Heavy + + + heavy + + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/90-synthetic.conf b/system/players/VideoPlayer/etc/fonts/conf.avail/90-synthetic.conf new file mode 100644 index 0000000..9550c93 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/90-synthetic.conf @@ -0,0 +1,64 @@ + + + + + + + + + roman + + + + roman + + + + + matrix + 10.2 + 01 + + + + + + oblique + + + + false + + + + + + + + + medium + + + + medium + + + + true + + + + bold + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.avail/README b/system/players/VideoPlayer/etc/fonts/conf.avail/README new file mode 100644 index 0000000..79b0e96 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.avail/README @@ -0,0 +1,48 @@ +conf.d/README + +Each file in this directory is a fontconfig configuration file. Fontconfig +scans this directory, loading all files of the form [0-9][0-9]*. These files +are normally installed in ../conf.avail and then symlinked here, allowing +them to be easily installed and then enabled/disabled by adjusting the +symlinks. + +The files are loaded in numeric order, the structure of the configuration +has led to the following conventions in usage: + + Files beginning with: Contain: + + 00 through 09 Font directories + 10 through 19 system rendering defaults (AA, etc) + 10-autohint.conf + 10-no-sub-pixel.conf + 10-sub-pixel-bgr.conf + 10-sub-pixel-rgb.conf + 10-sub-pixel-vbgr.conf + 10-sub-pixel-vrgb.conf + 10-unhinted.conf + 20 through 29 font rendering options + 20-fix-globaladvance.conf + 20-lohit-gujarati.conf + 20-unhint-small-vera.conf + 30 through 39 family substitution + 30-urw-aliases.conf + 30-amt-aliases.conf + 40 through 49 generic identification, map family->generic + 40-generic-id.conf + 49-sansserif.conf + 50 through 59 alternate config file loading + 50-user.conf Load ~/.fonts.conf + 51-local.conf Load local.conf + 60 through 69 generic aliases + 60-latin.conf + 65-fonts-persian.conf + 65-nonlatin.conf + 69-unifont.conf + 70 through 79 select font (adjust which fonts are available) + 70-no-bitmaps.conf + 70-yes-bitmaps.conf + 80 through 89 match target="scan" (modify scanned patterns) + 80-delicious.conf + 90 through 98 font synthesis + 90-synthetic.conf + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/20-fix-globaladvance.conf b/system/players/VideoPlayer/etc/fonts/conf.d/20-fix-globaladvance.conf new file mode 100644 index 0000000..a62162c --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/20-fix-globaladvance.conf @@ -0,0 +1,29 @@ + + + + + + + GulimChe + false + + + + DotumChe + false + + + + BatangChe + false + + + + GungsuhChe + false + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/20-lohit-gujarati.conf b/system/players/VideoPlayer/etc/fonts/conf.d/20-lohit-gujarati.conf new file mode 100644 index 0000000..1c29d0d --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/20-lohit-gujarati.conf @@ -0,0 +1,11 @@ + + + + + + + + Lohit Gujarati + false + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/20-unhint-small-vera.conf b/system/players/VideoPlayer/etc/fonts/conf.d/20-unhint-small-vera.conf new file mode 100644 index 0000000..51999c5 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/20-unhint-small-vera.conf @@ -0,0 +1,49 @@ + + + + + + + + + Bitstream Vera Sans + + + 7.5 + + + false + + + + + + Bitstream Vera Serif + + + 7.5 + + + false + + + + + + Bitstream Vera Sans Mono + + + 7.5 + + + false + + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/30-amt-aliases.conf b/system/players/VideoPlayer/etc/fonts/conf.d/30-amt-aliases.conf new file mode 100644 index 0000000..d6df67e --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/30-amt-aliases.conf @@ -0,0 +1,21 @@ + + + + + + + Times New Roman + Thorndale AMT + + + Arial + Albany AMT + + + Courier New + Cumberland AMT + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/30-urw-aliases.conf b/system/players/VideoPlayer/etc/fonts/conf.d/30-urw-aliases.conf new file mode 100644 index 0000000..cf90dd5 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/30-urw-aliases.conf @@ -0,0 +1,52 @@ + + + + + + + Avant Garde + URW Gothic L + + + Bookman + URW Bookman L + + + Courier + Nimbus Mono L + + + Helvetica + Nimbus Sans L + + + New Century Schoolbook + Century Schoolbook L + + + Palatino + URW Palladio L + + + Times + Nimbus Roman No9 L + + + Zapf Chancery + URW Chancery L + + + Zapf Dingbats + Dingbats + + + + Symbol + + + Standard Symbols L + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/40-generic.conf b/system/players/VideoPlayer/etc/fonts/conf.d/40-generic.conf new file mode 100644 index 0000000..84e85e4 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/40-generic.conf @@ -0,0 +1,66 @@ + + + + + + + + Bitstream Vera Serif + DejaVu Serif + Times New Roman + Times + Nimbus Roman No9 L + Luxi Serif + Kochi Mincho + AR PL SungtiL GB + AR PL Mingti2L Big5 + MS 明朝 + Baekmuk Batang + FreeSerif + MgOpen Canonica + serif + + + + Bitstream Vera Sans + DejaVu Sans + Helvetica + Arial + Verdana + Albany AMT + Nimbus Sans L + Luxi Sans + Kochi Gothic + AR PL KaitiM GB + AR PL KaitiM Big5 + MS ゴシック + Baekmuk Dotum + SimSun + FreeSans + MgOpen Modata + sans-serif + + + + Bitstream Vera Sans Mono + DejaVu Sans Mono + Courier + Courier New + Andale Mono + Luxi Mono + Cumberland AMT + Nimbus Mono L + NSimSun + FreeMono + monospace + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/49-sansserif.conf b/system/players/VideoPlayer/etc/fonts/conf.d/49-sansserif.conf new file mode 100644 index 0000000..c6209a7 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/49-sansserif.conf @@ -0,0 +1,21 @@ + + + + + + + sans-serif + + + serif + + + monospace + + + sans-serif + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/50-user.conf b/system/players/VideoPlayer/etc/fonts/conf.d/50-user.conf new file mode 100644 index 0000000..9a38a40 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/50-user.conf @@ -0,0 +1,7 @@ + + + + + + ~/.fonts.conf + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/51-local.conf b/system/players/VideoPlayer/etc/fonts/conf.d/51-local.conf new file mode 100644 index 0000000..d35046e --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/51-local.conf @@ -0,0 +1,7 @@ + + + + + + local.conf + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/60-latin.conf b/system/players/VideoPlayer/etc/fonts/conf.d/60-latin.conf new file mode 100644 index 0000000..06cdd7e --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/60-latin.conf @@ -0,0 +1,42 @@ + + + + + serif + + Bitstream Vera Serif + DejaVu Serif + Times New Roman + Thorndale AMT + Luxi Serif + Nimbus Roman No9 L + Times + + + + sans-serif + + Bitstream Vera Sans + DejaVu Sans + Verdana + Arial + Albany AMT + Luxi Sans + Nimbus Sans L + Helvetica + + + + monospace + + Bitstream Vera Sans Mono + DejaVu Sans Mono + Andale Mono + Courier New + Cumberland AMT + Luxi Mono + Nimbus Mono L + Courier + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/65-fonts-persian.conf b/system/players/VideoPlayer/etc/fonts/conf.d/65-fonts-persian.conf new file mode 100644 index 0000000..4c9f81c --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/65-fonts-persian.conf @@ -0,0 +1,539 @@ + + + + + + + + + + + + + + + + Nesf + + + Nesf2 + + + + + Nesf2 + + + Persian_sansserif_default + + + + + + + + + + + + Nazanin + + + Nazli + + + + + Lotus + + + Lotoos + + + + + + + Yaqut + + + Yaghoot + + + + + Yagut + + + Yaghoot + + + + + Yaghut + + + Yaghoot + + + + + Traffic + + + Terafik + + + + + Ferdowsi + + + Ferdosi + + + + + Fantezy + + + Fantezi + + + + + + + + + + Jadid + + + Persian_title + + + + + Titr + + + Persian_title + + + + + + + Kamran + + + Homa + + + Persian_fantasy + + + + + Homa + + + Kamran + + + Persian_fantasy + + + + + Fantezi + + + Persian_fantasy + + + + + Tabassom + + + Persian_fantasy + + + + + + + Arshia + + + Persian_square + + + + + Nasim + + + Persian_square + + + + + Elham + + + Farnaz + + + Persian_square + + + + + Farnaz + + + Elham + + + Persian_square + + + + + Sina + + + Persian_square + + + + + + + + + Persian_title + + + Persian_serif + + + Jadid + + + Titr + + + + + + + Persian_fantasy + + + Persian_square + + + Tabassom + + + Fantezi + + + Kamran + + + Homa + + + + + + + Persian_square + + + Persian_serif + + + Sina + + + Nasim + + + Farnaz + + + Elham + + + Arshia + + + + + + + + Elham + + + farsiweb + + + + + + Homa + + + farsiweb + + + + + + Koodak + + + farsiweb + + + + + + Nazli + + + farsiweb + + + + + + Roya + + + farsiweb + + + + + + Terafik + + + farsiweb + + + + + + Titr + + + farsiweb + + + + + + + + + + TURNED-OFF + + + farsiweb + + + + roman + + + + roman + + + + + matrix + 1-0.2 + 01 + + + + + + oblique + + + + + + + + + farsiweb + + + false + + + false + + + false + + + + + + + + + serif + + Nazli + Lotoos + Mitra + Ferdosi + Badr + Zar + + + + + + sans-serif + + Roya + Koodak + Terafik + + + + + + monospace + + + Terafik + + + + + + + + + + serif + + + 200 + + + 24 + + + Titr + + + + + + + sans-serif + + + 200 + + + 24 + + + Titr + + + + + + + Persian_sansserif_default + + + 200 + + + 24 + + + Titr + + + + + + + + + Persian_sansserif_default + + + Roya + + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/65-nonlatin.conf b/system/players/VideoPlayer/etc/fonts/conf.d/65-nonlatin.conf new file mode 100644 index 0000000..f8dbb64 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/65-nonlatin.conf @@ -0,0 +1,38 @@ + + + + + serif + + Frank Ruehl + MgOpen Canonica + Kochi Mincho + AR PL SungtiL GB + AR PL Mingti2L Big5 + MS 明朝 + Baekmuk Batang + + + + sans-serif + + Nachlieli + MgOpen Modata + Kochi Gothic + AR PL KaitiM GB + AR PL KaitiM Big5 + MS ゴシック + Baekmuk Dotum + SimSun + + + + monospace + + Miriam Mono + Kochi Gothic + AR PL KaitiM GB + Baekmuk Dotum + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/69-unifont.conf b/system/players/VideoPlayer/etc/fonts/conf.d/69-unifont.conf new file mode 100644 index 0000000..a784af9 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/69-unifont.conf @@ -0,0 +1,24 @@ + + + + + serif + + FreeSerif + Code2000 + + + + sans-serif + + FreeSans + Arial Unicode MS + + + + monospace + + FreeMono + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/80-delicious.conf b/system/players/VideoPlayer/etc/fonts/conf.d/80-delicious.conf new file mode 100644 index 0000000..701429b --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/80-delicious.conf @@ -0,0 +1,20 @@ + + + + + + + + + + Delicious + + + Heavy + + + heavy + + + + diff --git a/system/players/VideoPlayer/etc/fonts/conf.d/90-synthetic.conf b/system/players/VideoPlayer/etc/fonts/conf.d/90-synthetic.conf new file mode 100644 index 0000000..9550c93 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/conf.d/90-synthetic.conf @@ -0,0 +1,64 @@ + + + + + + + + + roman + + + + roman + + + + + matrix + 10.2 + 01 + + + + + + oblique + + + + false + + + + + + + + + medium + + + + medium + + + + true + + + + bold + + + diff --git a/system/players/VideoPlayer/etc/fonts/fonts.conf b/system/players/VideoPlayer/etc/fonts/fonts.conf new file mode 100644 index 0000000..9e2067c --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/fonts.conf @@ -0,0 +1,156 @@ + + + + + + + + + + + media/Fonts + ../../media/Fonts + ~/.fonts + + + + WINDOWSTEMPDIR_FONTCONFIG_CACHE + ~/.fontconfig + + + + + mono + + + monospace + + + + + + + sans serif + + + sans-serif + + + + + + + sans + + + sans-serif + + + + + conf.d + + + + + 0x0020 + 0x00A0 + 0x00AD + 0x034F + 0x0600 + 0x0601 + 0x0602 + 0x0603 + 0x06DD + 0x070F + 0x115F + 0x1160 + 0x1680 + 0x17B4 + 0x17B5 + 0x180E + 0x2000 + 0x2001 + 0x2002 + 0x2003 + 0x2004 + 0x2005 + 0x2006 + 0x2007 + 0x2008 + 0x2009 + 0x200A + 0x200B + 0x200C + 0x200D + 0x200E + 0x200F + 0x2028 + 0x2029 + 0x202A + 0x202B + 0x202C + 0x202D + 0x202E + 0x202F + 0x205F + 0x2060 + 0x2061 + 0x2062 + 0x2063 + 0x206A + 0x206B + 0x206C + 0x206D + 0x206E + 0x206F + 0x3000 + 0x3164 + 0xFEFF + 0xFFA0 + 0xFFF9 + 0xFFFA + 0xFFFB + + + + 30 + + + + diff --git a/system/players/VideoPlayer/etc/fonts/fonts.dtd b/system/players/VideoPlayer/etc/fonts/fonts.dtd new file mode 100644 index 0000000..d323a38 --- /dev/null +++ b/system/players/VideoPlayer/etc/fonts/fonts.dtd @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3