diff --git a/include/liblouis b/include/liblouis index f41b38d5934..48633b86de7 160000 --- a/include/liblouis +++ b/include/liblouis @@ -1 +1 @@ -Subproject commit f41b38d59346b60c69cdfe43d777aaa730db01d5 +Subproject commit 48633b86de7d4dc86e5aa21855f1974ede1b0c26 diff --git a/readme.md b/readme.md index 6c67c6d311d..9bfb44ce9c8 100644 --- a/readme.md +++ b/readme.md @@ -89,7 +89,7 @@ For reference, the following run time dependencies are included in Git submodule * [IAccessible2](https://wiki.linuxfoundation.org/accessibility/iaccessible2/start), commit cbc1f29631780 * [ConfigObj](https://github.com/DiffSK/configobj), commit f9a265c * [Six](https://pypi.python.org/pypi/six), version 1.12.0, required by wxPython and ConfigObj -* [liblouis](http://www.liblouis.org/), version 3.15.0 +* [liblouis](http://www.liblouis.org/), version 3.16.1 * [Unicode Common Locale Data Repository (CLDR)](http://cldr.unicode.org/) Emoji Annotations, version 38.0 * NVDA images and sounds * [Adobe Acrobat accessibility interface, version XI](https://download.macromedia.com/pub/developer/acrobat/AcrobatAccess.zip) diff --git a/source/brailleTables.py b/source/brailleTables.py index 2b9e5203222..60ea2a37baa 100644 --- a/source/brailleTables.py +++ b/source/brailleTables.py @@ -81,6 +81,7 @@ def listTables(): "no-no.ctb":"no-no-8dot.utb", "no-no-comp8.ctb":"no-no-8dot.utb", "ru-compbrl.ctb":"ru.ctb", + "ru-ru-g1.utb": "ru-litbrl-detailed.utb", "sk-sk-g1.utb":"sk-g1.ctb", "UEBC-g1.ctb":"en-ueb-g1.ctb", "UEBC-g2.ctb":"en-ueb-g2.ctb", @@ -104,6 +105,9 @@ def listTables(): addTable("as-in-g1.utb", _("Assamese grade 1")) # Translators: The name of a braille table displayed in the # braille settings dialog. +addTable("ba.utb", _("Bashkir grade 1"), input=False) +# Translators: The name of a braille table displayed in the +# braille settings dialog. addTable("be-in-g1.utb", _("Bengali grade 1")) # Translators: The name of a braille table displayed in the # braille settings dialog. @@ -113,6 +117,9 @@ def listTables(): addTable("ckb-g1.ctb", _("Central Kurdish grade 1")) # Translators: The name of a braille table displayed in the # braille settings dialog. +addTable("cop-eg-comp8.utb", _("Coptic 8 dot computer braille"), input=False) +# Translators: The name of a braille table displayed in the +# braille settings dialog. addTable("cy-cy-g1.utb", _("Welsh grade 1")) # Translators: The name of a braille table displayed in the # braille settings dialog. @@ -380,7 +387,10 @@ def listTables(): addTable("ru.ctb", _("Russian computer braille")) # Translators: The name of a braille table displayed in the # braille settings dialog. -addTable("ru-ru-g1.utb", _("Russian grade 1")) +addTable("ru-litbrl.ctb", _("Russian literary braille"), input=False) +# Translators: The name of a braille table displayed in the +# braille settings dialog. +addTable("ru-litbrl-detailed.utb", _("Russian literary braille (detailed)"), input=False) # Translators: The name of a braille table displayed in the # braille settings dialog. addTable("sa-in-g1.utb", _("Sanskrit grade 1")) diff --git a/user_docs/en/changes.t2t b/user_docs/en/changes.t2t index cab268536ad..7098c87376b 100644 --- a/user_docs/en/changes.t2t +++ b/user_docs/en/changes.t2t @@ -19,7 +19,12 @@ What's New in NVDA == Changes == -- Updated liblouis braille translator to version 3.15.0 +- Updated liblouis braille translator to version 3.16.1: + - Addresses multiple crashes + - Adds Bashkir grade 1 Braille table + - adds Coptic 8 dot computer braille table + - Adds Russian literary braille and Russian literary braille (detailed) tables. + - Removes the Russian grade 1 Braille table - When reading with say all in browse mode, the find next and find previous commands do not stop reading anymore if Allow skim reading option is enabled; say all rather resumes from after the next or previous found term. (#11563) - For HIMS braille displays F3 has been remapped to Space + dots 148. (#11710) - Improvements to the UX of the "braille message timeout" and "Show messages indefinitely" options. (#11602) @@ -60,6 +65,7 @@ What's New in NVDA - When using Outlook (French locale), the shortcut for 'Reply all' (control+shift+R) works again. (#11196) - In Visual Studio, IntelliSense tool tips that provide additional details about the currently selected IntelliSense item are now only reported once. (#11611) - In Windows 10 Calculator, NVDA will not announce progress of calculations if speak typed characters is disabled. (#9428) +- NVDA no longer crashes when using English US grade 2 and expand to computer Braille at the cursor is on, when displaying certain content such as a URL in Braille. (#11754) == Changes for Developers ==