Skip to content
Closed
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 77 files
+0 −3 .gitignore
+1 −3 .travis.yml
+3 −3 .travis/after_success/mingw.sh
+2 −2 .travis/before_install/mingw.sh
+3 −4 .travis/script/mingw.sh
+50 −73 ANNOUNCEMENT
+0 −2 AUTHORS
+1 −1 HACKING
+1 −84 NEWS
+1 −3 README
+24 −24 configure.ac
+21 −21 doc/liblouis.texi
+1 −2 extra/generate-display-names/display-names
+137 −134 liblouis/compileTranslationTable.c
+11 −13 liblouis/internal.h
+9 −9 liblouis/lou_translateString.c
+36 −1 liblouis/pattern.c
+2 −3 tables/Makefile.am
+0 −0 tables/chardefs.cti
+0 −17 tables/de-de-comp8.ctb
+1 −3 tables/en-GB-g2.ctb
+1 −1 tables/en-in-g1.ctb
+401 −444 tables/en-ueb-chardefs.uti
+6 −7 tables/en-ueb-g2.ctb
+75 −118 tables/en-us-comp6.ctb
+97 −0 tables/en-us-compbrl.ctb
+0 −69 tables/en-us-compbrl.uti
+1 −2 tables/en-us-g1.ctb
+1 −1 tables/en-us-interline.ctb
+1 −1 tables/en-us-mathtext.ctb
+2 −1 tables/en_US-comp8-ext.tbl
+1 −1 tables/ethio-g1.ctb
+6 −36 tables/fr-bfu-comp6.utb
+2 −5 tables/hu-hu-comp8.ctb
+1 −7 tables/hu-hu-g1.ctb
+0 −104 tables/hu-hu-g1_braille_input.cti
+0 −2 tables/hu-hu-g2.ctb
+1 −1 tables/ko-2006.cti
+1 −1 tables/ko.cti
+1 −1 tables/mn-MN-common.cti
+84 −54 tables/nl-chardefs.uti
+8 −24 tables/nl-g0.uti
+1 −1 tables/ru-compbrl.ctb
+1 −1 tables/ru-litbrl.ctb
+1 −1 tables/ru-ru-g1.utb
+869 −2,572 tables/zh-tw.ctb
+2 −8 tests/Makefile.am
+3 −5 tests/braille-specs/Makefile.am
+0 −20 tests/braille-specs/de-de-comp8.yaml
+0 −15 tests/braille-specs/en-GB-g2_backward.yaml
+3 −19 tests/braille-specs/en-ueb-g1_harness.yaml
+0 −1 tests/braille-specs/en-ueb-g2-dictionary_harness.yaml
+51 −72 tests/braille-specs/en-ueb-g2_backward.yaml
+0 −66 tests/braille-specs/en-us-comp6.yaml
+1 −1 tests/braille-specs/en-us-g2.yaml
+0 −100 tests/braille-specs/fr-bfu-comp6.yaml
+27 −29 tests/braille-specs/nl-g0_harness.yaml
+0 −435 tests/braille-specs/no_typeform_harness.yaml
+3 −0 tests/braille-specs/spaces.dis
+24 −4 tests/braille-specs/spaces.yaml
+31 −93 tests/braille-specs/ta-ta-g1_harness.yaml
+161 −2,185 tests/braille-specs/zh-tw.yaml
+0 −4 tests/yaml/Makefile.am
+0 −42 tests/yaml/computer_braille.yaml
+1 −1 tests/yaml/emphasis-full.yaml
+1 −1 tests/yaml/emphasis-no-context.yaml
+0 −129 tests/yaml/issue-332.yaml
+0 −2 tests/yaml/issue-332_hyph.dic
+0 −387 tests/yaml/multipass-vs-match.yaml
+5 −5 tests/yaml/multipass.yaml
+1 −19 tools/gnulib/Makefile.am
+1 −2 tools/gnulib/m4/gnulib-cache.m4
+0 −14 tools/gnulib/m4/gnulib-comp.m4
+0 −79 tools/gnulib/m4/realloc.m4
+0 −79 tools/gnulib/realloc.c
+54 −136 tools/lou_checkyaml.c
+1 −1 windows/include/config.h
3 changes: 0 additions & 3 deletions nvdaHelper/liblouis/sconscript
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ env = env.Clone()
if 'analyze' in env['nvdaHelperDebugFlags']:
env.Append(CCFLAGS='/analyze-')

# Ignore some warnings as the code is not ours
env.Replace(CCFLAGS='/W2')

env.Append(CPPDEFINES=[
# The Visual C++ C Runtime deprecates several standard library functions in
# preference for _s variants that are specific to Visual C++. This removes
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ For reference, the following dependencies are included in Git submodules:
* [Sonic](https://github.com/waywardgeek/sonic), commit 4f8c1d11
* [IAccessible2](http://www.linuxfoundation.org/collaborate/workgroups/accessibility/iaccessible2), commit 21bbb176
* [ConfigObj](https://github.com/DiffSK/configobj), commit 5b5de48
* [liblouis](http://www.liblouis.org/), version 3.10.0
* [liblouis](http://www.liblouis.org/), version 3.9.0
* [Unicode Common Locale Data Repository (CLDR)](http://cldr.unicode.org/) Emoji Annotations, version 35.0
* NVDA images and sounds
* System dlls not present on many systems: mfc90.dll, msvcp90.dll, msvcr90.dll, Microsoft.VC90.CRT.manifest
Expand Down