Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/liblouis
Submodule liblouis updated 100 files
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 11 additions & 1 deletion source/brailleTables.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -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"))
Expand Down
8 changes: 7 additions & 1 deletion user_docs/en/changes.t2t
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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 ==
Expand Down