Skip to content

Commit 09ce145

Browse files
authored
Merge 6cfd15e into f6977fe
2 parents f6977fe + 6cfd15e commit 09ce145

5 files changed

Lines changed: 9 additions & 7 deletions

File tree

include/espeak

Submodule espeak updated 350 files

nvdaHelper/espeak/sconscript

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ env.Append(
101101
# errors when winsock2 is included by espeak\src\include\compat\endian.h
102102
'/DWIN32_LEAN_AND_MEAN',
103103
# Preprocessor definitions. Espeak Features
104-
'/DINCLUDE_SPEECHPLAYER=1',
105-
'/DINCLUDE_KLATT=1',
104+
'/DUSE_SPEECHPLAYER=1',
105+
'/DUSE_KLATT=1',
106106
'/DHAVE_SONIC_H=1',
107107
])
108108

@@ -395,6 +395,7 @@ espeakLib=env.SharedLibrary(
395395
"espeak_api.c",
396396
"ieee80.c",
397397
"intonation.c",
398+
"langopts.c",
398399
"klatt.c", # we do use KLATT, this is a compile option in espeak
399400
# "mbrowrap.c", # we don't use MBROLA, this is a compile option in espeak
400401
"mnemonics.c",

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ If you aren't sure, run `git submodule update` after every git pull, merge or ch
8888

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

91-
* [eSpeak NG](https://github.com/espeak-ng/espeak-ng), version 1.52-dev commit `b17ed2d6`
91+
* [eSpeak NG](https://github.com/espeak-ng/espeak-ng), version 1.52-dev commit `a51235aa`
9292
* [Sonic](https://github.com/waywardgeek/sonic), commit 1d705135
9393
* [IAccessible2](https://wiki.linuxfoundation.org/accessibility/iaccessible2/start), commit cbc1f29631780
9494
* [liblouis](http://www.liblouis.org/), version 3.23.0

source/synthDrivers/espeak.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,7 @@ def speak(self, speechSequence: SpeechSequence): # noqa: C901
334334
textList.append(langChangeXML)
335335
langChanged = True
336336
elif isinstance(item, BreakCommand):
337-
# Break commands are ignored at the start of speech unless strength is specified.
338-
# Refer to eSpeak issue: https://github.com/espeak-ng/espeak-ng/issues/1232
339-
textList.append(f'<break time="{item.time}ms" strength="1" />')
337+
textList.append(f'<break time="{item.time}ms" />')
340338
elif type(item) in self.PROSODY_ATTRS:
341339
if prosody:
342340
# Close previous prosody tag.

user_docs/en/changes.t2t

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ This can be used with text editors that do not support paragraph navigation nati
2424
== Changes ==
2525
- Updated Sonic rate boost library to commit ``1d70513``. (#14180)
2626
- CLDR has been updated to version 42.0. (#14273)
27+
- eSpeak NG has been updated to 1.52-dev commit ``a51235aa``. (#14281)
28+
- Fixed reporting of large numbers. (#14241)
29+
-
2730
- Java applications with controls using the selectable state will now announce when an item is not selected rather than when the item is selected. (#14336)
2831
-
2932

0 commit comments

Comments
 (0)