Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Liblouis to 3.28.0 #15876

Merged
merged 1 commit into from Dec 4, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/liblouis
Submodule liblouis updated 70 files
+2 −2 .github/workflows/check-format.yml
+3 −3 .github/workflows/check-table-license.yml
+2 −2 .github/workflows/cifuzz.yml
+5 −5 .github/workflows/codeql.yml
+4 −4 .github/workflows/emscripten.yml
+8 −8 .github/workflows/fuzzing.yml
+3 −3 .github/workflows/macro.yml
+3 −3 .github/workflows/main.yml
+3 −3 .github/workflows/metadata.yml
+10 −10 .github/workflows/mingw.yml
+3 −3 .github/workflows/sanitizer.yml
+5 −5 .github/workflows/scorecards.yml
+2 −0 .gitignore
+66 −42 ANNOUNCEMENT
+1 −0 AUTHORS
+2 −2 Dockerfile.win32
+2 −2 Dockerfile.win64
+75 −0 NEWS
+2 −17 configure.ac
+24 −5 doc/liblouis.texi
+1 −0 extra/generate-display-names/display-names
+1 −1 extra/generate-display-names/go.mod
+2 −2 extra/generate-display-names/go.sum
+0 −1 gnulib/Makefile.am
+0 −2 gnulib/m4/gnulib-cache.m4
+0 −5 gnulib/m4/gnulib-comp.m4
+0 −243 gnulib/m4/manywarnings-c++.m4
+0 −209 gnulib/m4/manywarnings.m4
+0 −110 gnulib/m4/warnings.m4
+96 −39 liblouis/compileTranslationTable.c
+89 −67 liblouis/lou_translateString.c
+1 −1 liblouis/metadata.c
+0 −6 tables/Lv-Lv-g1.utb
+1 −0 tables/Makefile.am
+4 −11 tables/bel.utb
+2 −2 tables/da-dk-g28.ctb
+4 −2 tables/en-ueb-chardefs.uti
+8 −1 tables/en-ueb-g1.ctb
+116 −25 tables/en-ueb-g2.ctb
+491 −0 tables/fil-g2.ctb
+1 −13 tables/ga-g1.utb
+148 −2 tables/hu-backtranslate-word-corrections.cti
+88 −1 tables/hu-exceptionwords.cti
+2 −9 tables/kk.utb
+2 −3 tables/lg-ug-g1.utb
+37 −47 tables/ru-litbrl.ctb
+17 −12 tables/ru-ru-g1.ctb
+3 −13 tables/uk.utb
+1 −7 tables/vi-saigon-g1.ctb
+3 −9 tests/Makefile.am
+3 −9 tests/braille-specs/Makefile.am
+23 −7 tests/braille-specs/de-blista-dictionary.yaml
+0 −181 tests/braille-specs/en-ueb-02-stand_alone.yaml
+0 −243 tests/braille-specs/en-ueb-03-symbols.yaml
+0 −150 tests/braille-specs/en-ueb-05-grade_1_mode.yaml
+0 −243 tests/braille-specs/en-ueb-06-numeric_mode.yaml
+0 −212 tests/braille-specs/en-ueb-08-capitalization.yaml
+0 −291 tests/braille-specs/en-ueb-09-typeforms.yaml
+0 −1,706 tests/braille-specs/en-ueb-10-07-contractions.yaml
+0 −424 tests/braille-specs/en-ueb-10-13-contractions.yaml
+0 −3 tests/braille-specs/en-ueb-computer-code.yaml
+28,095 −26,451 tests/braille-specs/en-ueb-g2-dictionary_harness.yaml
+3,406 −0 tests/braille-specs/en-ueb-rueb.yaml
+54 −0 tests/braille-specs/fil.yaml
+285 −9 tests/braille-specs/hu-hu-g1_dictionary_special_consonants.yaml
+61 −17 tests/yaml/case-sensitivity.yaml
+1 −4 tests/yaml/letterDefTest_harness.yaml
+9 −11 tests/yaml/precedence.yaml
+111 −15 tools/lou_translate.c
+1 −1 windows/include/config.h
2 changes: 1 addition & 1 deletion projectDocs/dev/createDevEnvironment.md
Expand Up @@ -69,7 +69,7 @@ For reference, the following run time dependencies are included in Git submodule
* [eSpeak NG](https://github.com/espeak-ng/espeak-ng), version 1.52-dev commit `530bf0abf4174dc9ca28dbacc11bd5e9ae6152cd`
* [Sonic](https://github.com/waywardgeek/sonic), commit `8694c596378c24e340c09ff2cd47c065494233f1`
* [IAccessible2](https://wiki.linuxfoundation.org/accessibility/iaccessible2/start), commit `3d8c7f0b833453f761ded6b12d8be431507bfe0b`
* [liblouis](http://www.liblouis.io/), version 3.27.0
* [liblouis](http://www.liblouis.io/), version 3.28.0
* [Unicode Common Locale Data Repository (CLDR)](http://cldr.unicode.org/), version 44.0
* NVDA images and sounds
* [Adobe Acrobat accessibility interface, version XI](https://download.macromedia.com/pub/developer/acrobat/AcrobatAccess.zip)
Expand Down
3 changes: 3 additions & 0 deletions source/brailleTables.py
Expand Up @@ -275,6 +275,9 @@ def listTables():
addTable("fi-fi-8dot.ctb", _("Finnish 8 dot computer braille"))
# Translators: The name of a braille table displayed in the
# braille settings dialog.
addTable("fil-g2.ctb", _("Filipino grade 2"), contracted=True)
# Translators: The name of a braille table displayed in the
# braille settings dialog.
addTable("fr-bfu-comp6.utb", _("French (unified) 6 dot computer braille"))
# Translators: The name of a braille table displayed in the
# braille settings dialog.
Expand Down
4 changes: 2 additions & 2 deletions user_docs/en/changes.t2t
Expand Up @@ -19,8 +19,8 @@ When speech is on-demand, NVDA does not speak automatically (e.g. when moving th
- NVDA no longer supports Windows 7 and Windows 8.
Windows 8.1 is the minimum Windows version supported. (#15544)
- Component updates:
- Updated LibLouis braille translator to 3.27.0. (#15435, @codeofdusk)
- Added new Thai and Romanian Braille tables.
- Updated LibLouis braille translator to 3.28.0. (#15435, #15876, @codeofdusk)
- Added new Thai, Romanian, and Filipino Braille tables.
-
- eSpeak NG has been updated to 1.52-dev commit ``530bf0abf``. (#15036)
- CLDR emoji and symbol annotations has been updated to version 44.0. (#15712, @OzancanKaratas)
Expand Down