From d0f8744d74e9174a1f24ad5cef5303f0b07d2071 Mon Sep 17 00:00:00 2001 From: Puneeth Chaganti Date: Fri, 15 May 2020 17:08:58 +0530 Subject: [PATCH] provision: Switch to fonts-freefont-ttf from fonts-liberation. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some UTF-8 characters (★ for example) are not displayed correctly, with fonts-liberation. Puppeteer recommends[1] installing fonts-freefont-ttf in their docs on running Puppeteer in docker. Provisioning forward is sufficient. There's no need to remove the new font and replace it with the old font, I think. [1]: https://github.com/puppeteer/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker --- tools/lib/provision.py | 2 +- version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/lib/provision.py b/tools/lib/provision.py index 663b67d93a..603d24e651 100755 --- a/tools/lib/provision.py +++ b/tools/lib/provision.py @@ -129,7 +129,7 @@ COMMON_DEPENDENCIES = [ "libxcb-dri3-0", "libgbm1", "libxss1", - "fonts-liberation", + "fonts-freefont-ttf", "libappindicator1", "xdg-utils" # Puppeteer dependencies end here. diff --git a/version.py b/version.py index f852ede715..c869d621cf 100644 --- a/version.py +++ b/version.py @@ -44,4 +44,4 @@ API_FEATURE_LEVEL = 8 # historical commits sharing the same major version, in which case a # minor version bump suffices. -PROVISION_VERSION = '83.0' +PROVISION_VERSION = '83.1'