From 63635644cd6be478de5bf1852488ff3a39499686 Mon Sep 17 00:00:00 2001 From: Thibaud Colas Date: Fri, 7 Jun 2019 18:13:04 +0100 Subject: [PATCH] Add release notes for #5359 (#5363) --- CHANGELOG.txt | 1 + docs/releases/2.6.rst | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 1869ddc7de..49682869b3 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -38,6 +38,7 @@ Changelog * Fix: Prevent text from overlapping in focal point editing UI (Beth Menzies) * Fix: Screen readers now announce "Dashboard" for the main nav’s logo link instead of Wagtail’s version number (Thibaud Colas) * Fix: Screen readers now treat page-level action dropdowns as navigation instead of menus (Helen Chapman) + * Fix: Make icon font implementation more screen-reader-friendly (Thibaud Colas) 2.5.1 (07.05.2019) diff --git a/docs/releases/2.6.rst b/docs/releases/2.6.rst index e66208cfb0..7e7b5130d3 100644 --- a/docs/releases/2.6.rst +++ b/docs/releases/2.6.rst @@ -51,6 +51,7 @@ Bug fixes * Prevent text from overlapping in focal point editing UI (Beth Menzies) * Screen readers now announce "Dashboard" for the main nav’s logo link instead of Wagtail’s version number (Thibaud Colas) * Screen readers now treat page-level action dropdowns as navigation instead of menus (Helen Chapman) + * Make icon font implementation more screen-reader-friendly (Thibaud Colas) Upgrade considerations @@ -60,3 +61,13 @@ Removed support for Python 3.4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Python 3.4 is no longer supported as of this release; please upgrade to Python 3.5 or above before upgrading Wagtail. + +Icon font implementation changes +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The icon font implementation has been changed to be invisible, by switching to using `Private Use Areas `_ Unicode code points. All of the icon classes (``icon-user``, ``icon-search``, etc) should still work the same, except for two which have been removed because they were duplicates: + + * ``icon-picture`` is removed. Use ``icon-image`` instead (same visual). + * ``icon-file-text-alt`` is removed. Use ``icon-doc-full`` instead (same visual). + +For a list of all available icons, please see the :ref:`styleguide`.