That sounds like the cache version should have been be bumped. Would this warrant a bug report for fontconfig upstream? As I understand, this will reach Ubuntu at some point too, probably around 20.* time frame.
As I understand it, they didnāt bump the cache version because:
- the file format did not change, and
- the file names for UUID and MD5-directory-name based cache files would never collide, due to the different lengths and extra dashes.
Further more, if the 2.13 libfontconfig encountered a read-only directory without a UUID file, it would fall back to checking for an MD5 cache file.
Looking at the 2.13.91 source, it looks like it will also be able to reuse existing valid UUID based cache files, but will attempt to remove UUID files from writeable directories.
So, can you give me some workaround for this issue pls (Arch linux)?
Part of my snap-apps canāt start
user@thinkpad$ libreoffice.writer
Fontconfig warning: FcPattern object weight does not accept value [40 210)
Application Error
and the other part starts without lettersā¦
BTW, code
(VSCode) and telegram
work pretty wellā¦ Maybe they use some internal fontconfig.
If it is important for anyone in future, here is my solution:
sudo rm /var/cache/fontconfig/*
rm ~/.cache/fontconfig/*
Is deleting the font cache the only workaround?
Donāt know, but it has fixed my issues
I still have this rectangle boxes instead of text issue with snap-store. I am running 5.4.13-arch1-1.
I have Opera installed from snap without issues.
I have tried the following with no avail:
sudo rm /var/cache/fontconfig/*
rm ~/.cache/fontconfig/*
fc-cache -r
Any new updates on this issue?
I am having the same issue with Cherrytree on Manjaro KDE and the above steps did not fix it, any good workaround to fix this.
Hello!
Thank you for all the comments and workarounds provided.
We are developing an application in Electron.js, the app works great in Ubuntu, but in Fedora, only the main views characters are rendered well, the dialogs show squares instead of letters:
Electron dialog in Fedora:
we did deleted the fontcofig cache, but just to check if it works, but it didnāt work.
we are using the default configuration of https://www.electron.build/configuration/snap to generate the snap build. are we missing something? is there anything we can include before creating the snap to make the app able to read the fontconfig and not require our users to apply workarounds ?
Thank you in advance!
Iāve bisected libfontconfig versions between 2.12.6 (which we know to work), and current master (2.13.92+). Iāve made sure that there is only one source of fontconfig cache under /var/cache/fontconfig
and no other location can be written to inside the snap.
The commit that broke it was correctly identified by @jamesh before:
If we want to get it working, we need to have a way of ensuring that the generated font cache is comptible with whatever the libfontconfig version is used by the snap (be it the core* one, or Gnome runtime one).
As I mentioned on IRC, it is quite possible that the breakage is earlier than this commit. The difference is that commits from this one on produce cache files that Bionicās fontconfig can see (i.e. based on the MD5 of the file name), and the ones just before it donāt (i.e. a UUID matching the $dir/.uuid
file).
It would probably be possible to bisect further back by generating a cache and then symlinking the UUID cache file to the equivalent MD5 name and see if the snap is still broken.
Having worked around the UUID thing, I was able to narrow it down to this single commit.
https://gitlab.freedesktop.org/fontconfig/fontconfig/commit/0f9bbbcf8f6f8264efb0a2ded4d8d05f3b10f7a4
Reverting the commit in full and regenerating the cache, made the fonts works again. In your view, what is the best way to proceed with the upstream?
Debugging this further. The fonts work on Focal and Debian 10, both using libfontconfig 2.13.1. Iāve pulled the actual libfontconfig.so.1.12.0
binary from Debian and font files. Also mounted an empty tmpfs over /etc/fonts
(and then /etc/fonts/conf.d
) to make sure weāre using a vanilla config. Then symlinked the MD5-named cache file expected by gnome-3-28-1804
is symlinked to the right UUID-name file as expected by the Debian version.
In the end fonts were still rendering as boxes, suggesting that perhaps problem is somewhere else in the stack. I need to consult with @jamesh on how to proceed with debugging this.
Clearing fontconfig cache fixed this problem for me on Arch Linux. I use infinality patched font BTW
Once you do fc-cache -f
on the host, and then run the snap again, the font should be broken in snaps again. I havenāt been able to do it yet, but the next step is probably dissecting the cache file generated by 2.13.1 and 2.13.92+ to check the differences.
Hi, had the same issue with CherryTree.
My fix was:
sudo rm /var/cache/fontconfig/*
rm ~/.cache/fontconfig/*
fc-cache -r
Thanks @vgm106
Thank you for that fix. It makes one wonder why there is still font caching in Linux at all considering it takes about 600ms for fc-cache to run so why does it even exist? Seems like some relic of the Xfree86 days, as in 1986 presumably(?)
Could you test mattermost-desktop? Maybe this is an issue with the electron-builder tooling. The mattermost-desktop snap uses electron but not the electron-builder tooling.
This is a great test case, which is very difficult to reproduce. Could you please test the inkscape snap? Thereās been a proposed fix for fontconfig mismatches in the inkscape snap and we would love to get confirmation that it works in cases like yourās.
Thanks!
Thatās great info!
It is pretty hard to reproduce, if you arenāt a daily Fedora user. I just did a fresh install of Fedora 32 earlier this week and couldnāt reproduce the font issue. Iāve tried this a number of times with different versions of Fedora in the past and never reproduced it myself. Itās all related to the version of fontconfig that was used to generate cache files on the host. How recent was your fresh install? Was your homedir preserved from a previous install?
Thanks for the info!
@ted ^^ confirmation the snap private font caches seem to fix the issue, thanks for being a guinea pig.