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 eSpeak to cb62d93f for 2024.2 #16298

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/espeak
Submodule espeak updated 47 files
+1 −1 .github/workflows/ci.yml
+2 −2 .github/workflows/dist.yml
+2 −0 .github/workflows/fuzzing.yml
+1 −1 .github/workflows/windows.yml
+1 −0 ChangeLog.md
+5 −1 Makefile.am
+36 −7 android/build.gradle
+1 −0 android/gradle.properties
+ android/gradle/wrapper/gradle-wrapper.jar
+2 −2 android/gradle/wrapper/gradle-wrapper.properties
+17 −12 android/gradlew
+10 −10 android/gradlew.bat
+2 −1 cmake/data.cmake
+1 −1 dictsource/en_list
+39 −3 dictsource/extra/ru_listx
+69 −2 dictsource/it_list
+16 −9 dictsource/it_listx
+3 −1 dictsource/it_rules
+0 −17 dictsource/pl_rules
+4 −2 dictsource/ru_list
+18 −9 dictsource/ru_rules
+1,824 −0 dictsource/ti_emoji
+40 −0 dictsource/ti_list
+429 −0 dictsource/ti_rules
+5 −0 espeak-ng-data/lang/sem/ti
+140 −0 phsource/ph_tigrinya
+3 −0 phsource/phonemes
+4 −0 src/libespeak-ng/dictionary.c
+1 −1 src/libespeak-ng/readclause.c
+14 −4 src/libespeak-ng/synthdata.c
+1 −0 src/libespeak-ng/translate.c
+12 −8 src/libespeak-ng/voices.c
+6 −3 src/libespeak-ng/wavegen.c
+1 −0 tests/CMakeLists.txt
+69 −59 tests/common
+17 −0 tests/crash.test
+1 −0 tests/crash_vectors/cve-2023-49990.txt
+1 −0 tests/crash_vectors/cve-2023-49991.txt
+ tests/crash_vectors/cve-2023-49992.txt
+ tests/crash_vectors/cve-2023-49993.txt
+1 −0 tests/crash_vectors/cve-2023-49994.txt
+1 −1 tests/language-numbers-cardinal.test
+1 −1 tests/language-numbers-ordinal.test
+1 −0 tests/language-phonemes.test
+12 −31 tests/language-replace.test
+17 −11 tests/ssml.test
+1 −1 tests/translate.test
1 change: 1 addition & 0 deletions nvdaHelper/espeak/sconscript
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ espeakDictionaryCompileList: typing.Dict[
"sw_dict": ("sw", ["sw_list", "sw_rules", ]),
"ta_dict": ("ta", ["ta_list", "ta_rules", ]),
"te_dict": ("te", ["te_list", "te_rules", ]),
"ti_dict": ("ti", ["ti_list", "ti_rules", ]),
"th_dict": ("th", ["th_list", "th_rules", ]),
seanbudd marked this conversation as resolved.
Show resolved Hide resolved
"tk_dict": ("tk", ["tk_listx", "tk_list", "tk_rules"]),
"tn_dict": ("tn", ["tn_list", "tn_rules", ]),
Expand Down
2 changes: 1 addition & 1 deletion projectDocs/dev/createDevEnvironment.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ If you aren't sure, run `git submodule update` after every git pull, merge or ch

For reference, the following run time dependencies are included in Git submodules:

* [eSpeak NG](https://github.com/espeak-ng/espeak-ng), version 1.52-dev commit `530bf0abf4174dc9ca28dbacc11bd5e9ae6152cd`
* [eSpeak NG](https://github.com/espeak-ng/espeak-ng), version 1.52-dev commit `cb62d93fd7b61d8593b9ae432e6e2a78e3711a77`
* [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.29.0
Expand Down
11 changes: 8 additions & 3 deletions user_docs/en/changes.t2t
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,15 @@ What's New in NVDA
- Add-on Store:
- The minimum and the last tested NVDA version for an add-on are now displayed in the "other details" area. (#15776, @Nael-Sayegh)
-
- Padding dots commonly used in tables of contents are not reported anymore at low punctuation levels. (#15845, @CyrilleB79)
- Updated LibLouis Braille translator to [3.29.0 https://github.com/liblouis/liblouis/releases/tag/v3.29.0]. (#16259, @codeofdusk)
- Added new detailed (with capital letters indicated) Belarusian and Ukrainian Braille tables.
- Component updates:
- Updated LibLouis Braille translator to [3.29.0 https://github.com/liblouis/liblouis/releases/tag/v3.29.0]. (#16259, @codeofdusk)
- Added new detailed (with capital letters indicated) Belarusian and Ukrainian Braille tables.
-
- eSpeak NG has been updated to 1.52-dev commit ``cb62d93fd7``. (#15913)
- Added new language Tigrinya.
-
-
- Padding dots commonly used in tables of contents are not reported anymore at low punctuation levels. (#15845, @CyrilleB79)
-

== Bug Fixes ==
Expand Down