FS#63205 - [ttf-droid] CJK text appears like boxes
Attached to Project:
Community Packages
Opened by tgn-ff (tgn-ff) - Monday, 15 July 2019, 21:19 GMT
Last edited by Buggy McBugFace (bugbot) - Saturday, 25 November 2023, 20:00 GMT
Opened by tgn-ff (tgn-ff) - Monday, 15 July 2019, 21:19 GMT
Last edited by Buggy McBugFace (bugbot) - Saturday, 25 November 2023, 20:00 GMT
|
Details
STR:
0) Make sure you have installed the latest (20121017-7) version of the ttf-droid package. 1) Visit https://zh.wikipedia.org/wiki/%E6%B1%89%E8%AF%AD 2) Observe the text in the window manager's titlebar. The chinese text appears like boxes in the titlebar with the latest version, but correctly with the previous one (20121017-6). |
This task depends upon
Closed by Buggy McBugFace (bugbot)
Saturday, 25 November 2023, 20:00 GMT
Reason for closing: Moved
Additional comments about closing: https://gitlab.archlinux.org/archlinux/p ackaging/packages/ttf-droid/issues/1
Saturday, 25 November 2023, 20:00 GMT
Reason for closing: Moved
Additional comments about closing: https://gitlab.archlinux.org/archlinux/p ackaging/packages/ttf-droid/issues/1
1. A config reordering change, but it would have to be due to the alphabetic part, since the numbers stayed the same
2. A result of removing one of the dependencies
3. Something to do with installing in `/usr/share/fonts/droid` instead of `/usr/share/fonts/TTF`
4. Something to do with using symlinks instead of copying the files
I'll keep on investigating.
<match target="scan">
<test name="lang" compare="eq">
<string>zh-cn</string>
</test>
<test name="lang" compare="eq">
<string>zh-sg</string>
</test>
<test name="lang" compare="eq">
<string>zh-hk</string>
</test>
<test name="lang" compare="eq">
<string>zh-tw</string>
</test>
<test name="lang" compare="eq">
<string>zh</string>
</test>
<test name="fullname">
<string>Droid Sans Japanese</string>
</test>
<edit name="family">
<string>Droid Sans</string>
</edit>
<edit name="fullname">
<string>Droid Sans</string>
</edit>
<edit name="fontversion">
<int>1</int>
</edit>
</match>
My guess is that some of these (there are a lot) eventually result in promoting a font without CJK glyphs incorrectly. Indeed, if I do the following then glyphs display correctly again even on pkgrel 7:
rm /etc/fonts/conf.d/*droid*
Is it still valid?