Skip to content

Commit

Permalink
updated the spanish fix for the IBMTTS too.
Browse files Browse the repository at this point in the history
Updated english readme with some instructions to report issues.
  • Loading branch information
davidacm committed Dec 6, 2022
1 parent 5ad7070 commit 917c1a6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion addon/synthDrivers/ibmeci.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@
re.compile(br'(\d{13,})(\xaa)'): br'\1 \2',
}
spanish_ibm_anticrash = {
re.compile(br'(0{1,12})(\xaa)'): br'\1 \2'
re.compile(br'(0{1,12})(\xaa)'): br'\1 \2',
re.compile(br'(\d{12,}[123679])(\xaa)'): br'\1 \2',
}
german_fixes = {
# Crash words.
Expand Down
6 changes: 6 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ add-on, the driver will update the ini library paths automatically. So you can u
* scons and gettext tools on this project are compatible with python 3 only. Doesn't work with python 2.7.
* You can put the extra IBMTTS required files in the add-on (for personal use only). Just copy them in "addon\synthDrivers\ibmtts" folder. Adjust the default library name in "settingsDB.py" if necessary.

## Reporting issues:

If you find a security issue with some of the libraries that are compatible with this driver, please do not open a github issue nor comment it on forums before the issue is solved. Please report the issue on [this form.](https://docs.google.com/forms/d/123gSqayOAsIQLx1NiI98fEqr46oiJRZ9nNq0_KIF9WU/edit)

If the issue doesn't crash the driver or the screen reader, then open an [github issue here.](https://github.com/davidacm/NVDA-IBMTTS-Driver/issues)

## References.
This driver is based on the IBM tts sdk, the documentation is available on:
[this link](http://web.archive.org/web/20191125091344/http://www.wizzardsoftware.com/docs/tts.pdf)
Expand Down

0 comments on commit 917c1a6

Please sign in to comment.