Skip to content

Commit f5fde18

Browse files
authored
Merge e57c785 into 325be94
2 parents 325be94 + e57c785 commit f5fde18

4 files changed

Lines changed: 20 additions & 4 deletions

File tree

include/liblouis

Submodule liblouis updated 100 files

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ For reference, the following run time dependencies are included in Git submodule
8989
* [IAccessible2](https://wiki.linuxfoundation.org/accessibility/iaccessible2/start), commit cbc1f29631780
9090
* [ConfigObj](https://github.com/DiffSK/configobj), commit f9a265c
9191
* [Six](https://pypi.python.org/pypi/six), version 1.12.0, required by wxPython and ConfigObj
92-
* [liblouis](http://www.liblouis.org/), version 3.15.0
92+
* [liblouis](http://www.liblouis.org/), version 3.16.1
9393
* [Unicode Common Locale Data Repository (CLDR)](http://cldr.unicode.org/) Emoji Annotations, version 38.0
9494
* NVDA images and sounds
9595
* [Adobe Acrobat accessibility interface, version XI](https://download.macromedia.com/pub/developer/acrobat/AcrobatAccess.zip)

source/brailleTables.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ def listTables():
8181
"no-no.ctb":"no-no-8dot.utb",
8282
"no-no-comp8.ctb":"no-no-8dot.utb",
8383
"ru-compbrl.ctb":"ru.ctb",
84+
"ru-ru-g1.utb": "ru-litbrl-detailed.utb",
8485
"sk-sk-g1.utb":"sk-g1.ctb",
8586
"UEBC-g1.ctb":"en-ueb-g1.ctb",
8687
"UEBC-g2.ctb":"en-ueb-g2.ctb",
@@ -104,6 +105,9 @@ def listTables():
104105
addTable("as-in-g1.utb", _("Assamese grade 1"))
105106
# Translators: The name of a braille table displayed in the
106107
# braille settings dialog.
108+
addTable("ba.utb", _("Bashkir grade 1"), input=False)
109+
# Translators: The name of a braille table displayed in the
110+
# braille settings dialog.
107111
addTable("be-in-g1.utb", _("Bengali grade 1"))
108112
# Translators: The name of a braille table displayed in the
109113
# braille settings dialog.
@@ -113,6 +117,9 @@ def listTables():
113117
addTable("ckb-g1.ctb", _("Central Kurdish grade 1"))
114118
# Translators: The name of a braille table displayed in the
115119
# braille settings dialog.
120+
addTable("cop-eg-comp8.utb", _("Coptic 8 dot computer braille"), input=False)
121+
# Translators: The name of a braille table displayed in the
122+
# braille settings dialog.
116123
addTable("cy-cy-g1.utb", _("Welsh grade 1"))
117124
# Translators: The name of a braille table displayed in the
118125
# braille settings dialog.
@@ -380,7 +387,10 @@ def listTables():
380387
addTable("ru.ctb", _("Russian computer braille"))
381388
# Translators: The name of a braille table displayed in the
382389
# braille settings dialog.
383-
addTable("ru-ru-g1.utb", _("Russian grade 1"))
390+
addTable("ru-litbrl.ctb", _("Russian literary braille"), input=False)
391+
# Translators: The name of a braille table displayed in the
392+
# braille settings dialog.
393+
addTable("ru-litbrl-detailed.utb", _("Russian literary braille (detailed)"), input=False)
384394
# Translators: The name of a braille table displayed in the
385395
# braille settings dialog.
386396
addTable("sa-in-g1.utb", _("Sanskrit grade 1"))

user_docs/en/changes.t2t

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ What's New in NVDA
1919

2020

2121
== Changes ==
22-
- Updated liblouis braille translator to version 3.15.0
22+
- Updated liblouis braille translator to version 3.16.1:
23+
- Addresses multiple crashes
24+
- Adds Bashkir grade 1 Braille table
25+
- adds Coptic 8 dot computer braille table
26+
- Adds Russian literary braille and Russian literary braille (detailed) tables.
27+
- Removes the Russian grade 1 Braille table
2328
- 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)
2429
- For HIMS braille displays F3 has been remapped to Space + dots 148. (#11710)
2530
- Improvements to the UX of the "braille message timeout" and "Show messages indefinitely" options. (#11602)
@@ -61,6 +66,7 @@ What's New in NVDA
6166
- In Visual Studio, IntelliSense tool tips that provide additional details about the currently selected IntelliSense item are now only reported once. (#11611)
6267
- In Windows 10 Calculator, NVDA will not announce progress of calculations if speak typed characters is disabled. (#9428)
6368
- It is again possible to report formatting information for the focused Excel cell using NVDA+F. (#11914)
69+
- 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)
6470

6571

6672
== Changes for Developers ==

0 commit comments

Comments
 (0)