|
From: Derek S. R. <Der...@co...> - 2017-06-03 17:03:22
|
Guys, I have an NVDA addon which is vastly improved on a github repo under https://github.com/derekriemer/latex-access-matrix I actually thought this project was dead, because noone responded to me asking if you guys want my changes back, and how we go about doing this. I'd be happy to contribute the back, and I'm planning to make this plugin and the routing stuff work, which means I'll be getting rid of using COM altogether since it doesn't support getting routing incexes. Thanks. On Sat, Jun 3, 2017 at 4:35 AM, <ala...@us...> wrote: > Revision: 495 > http://sourceforge.net/p/latex-access/code/495 > Author: alastair-irving > Date: 2017-06-03 10:35:00 +0000 (Sat, 03 Jun 2017) > Log Message: > ----------- > Bug fix with read line function in NVDA plugin not working when processing > is off. > > Modified Paths: > -------------- > nvda/latex_access.py > > Modified: nvda/latex_access.py > =================================================================== > --- nvda/latex_access.py 2015-03-13 19:58:35 UTC (rev 494) > +++ nvda/latex_access.py 2017-06-03 10:35:00 UTC (rev 495) > @@ -118,7 +118,7 @@ > speech.speakMessage (spokenLine) > braille.handler.message (brailledLine) > else: > - speech.speakTextInfo(info, > unit=textInfos.UNIT_LINE,reason=speech.REASON_CARET) > + speech.speakTextInfo(info, > unit=textInfos.UNIT_LINE,reason=controlTypes.REASON_CARET) > else: > speech.speakSpelling(info.text) > script_reportCurrentLine.__doc__ = _("If latex-access translation > is on, Translates the current line into nemeth braille and speech. If > translation is turned off, the current line is spoken as normal. If this > keystroke is pressed twice, the current line is spellt out.") > > This was sent by the SourceForge.net collaborative development platform, > the world's largest Open Source development site. > > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Latex-access-devel mailing list > Lat...@li... > https://lists.sourceforge.net/lists/listinfo/latex-access-devel > -- Derek Riemer: Improving the world one byte at a time! - University of Colorado Boulder Department of computer science, 4th year undergraduate student. - Accessibility enthusiast. - Proud user of the NVDA screen reader. - Open source enthusiast. - Skier. Personal website <http://derekriemer.com> |