liblouis / liblouis-java

Java bindings for liblouis
GNU Lesser General Public License v3.0
4 stars 8 forks source link

Provide choice between "unicode" and "default" braille encoding #13

Closed bertfrees closed 5 years ago

bertfrees commented 5 years ago

Until the translation and display phases are completely separated (https://github.com/liblouis/liblouis/issues/307) a good intermediary solution is to implement the display phase in Java but only the very minimum (Unicode or the default). The option needs to passed to the translate/backTranslate function so in that sense it's still not completely separated from the translation phase. I'm going to implement it using the "dotsIO" mode. The alternative is to prepend tables with "unicode.dis," on the fly, but with dotsIO is nicer.

bertfrees commented 5 years ago

Should be fixed. @joeha480 could you give it a whirl?

bertfrees commented 5 years ago

Fixed in 5cfbc54