|
Addon update: Calibre accessibility enhancements 2.7.1
Hello. If you're using the latest version of Calibre, you may have noticed that the library search edit box doesn't work quite right. It's the addon's fault. The developer of Calibre has fixed the acc
Hello. If you're using the latest version of Calibre, you may have noticed that the library search edit box doesn't work quite right. It's the addon's fault. The developer of Calibre has fixed the acc
|
By
Javi Domínguez
· #21997
·
|
|
Using a Python module not included in NVDA in an addon
Hello. I would like to use a standard Python module in an addon, specifically the csv module, but it is not included in NVDA. How should I do it? Thanks
Hello. I would like to use a standard Python module in an addon, specifically the csv module, but it is not included in NVDA. How should I do it? Thanks
|
By
Javi Domínguez
· #20740
·
|
|
Mostly for Javi (proposal): incorporating Explorer Enhancements to Windows App Essentils ad-don
Hello, Joseph. I really had this addon a little abandoned. You can take code that you find useful and add it to Windows App Essentials if you want. Greetings Javi Domínguez github.com/javidominguez PG
Hello, Joseph. I really had this addon a little abandoned. You can take code that you find useful and add it to Windows App Essentials if you want. Greetings Javi Domínguez github.com/javidominguez PG
|
By
Javi Domínguez
· #20083
·
|
|
Braille configuration key error in last alpha
Hello, Cyrille. Yes, that is exactly what has happened, but from point 2. First I runned alpha and the warning appeared, then I downgraded to 2022.4beta3 and later I upgraded to alpha again. All with
Hello, Cyrille. Yes, that is exactly what has happened, but from point 2. First I runned alpha and the warning appeared, then I downgraded to 2022.4beta3 and later I upgraded to alpha again. All with
|
By
Javi Domínguez
· #19886
·
|
|
Braille configuration key error in last alpha
Hello, Cyrille. Thanks for the clarification. I will adapt my addons to be compatible with this change. This warn appeared on a clean copy of alpha, however when upgrading a copy from 2022.4beta3 to a
Hello, Cyrille. Thanks for the clarification. I will adapt my addons to be compatible with this change. This warn appeared on a clean copy of alpha, however when upgrading a copy from 2022.4beta3 to a
|
By
Javi Domínguez
· #19884
·
|
|
Braille configuration key error in last alpha
Hello. I have this problem with the latest alpha, 27190,85efa6d7 (2023.1.0.27190) in one of my addons: self.brailleMessageTimeout = config.conf["braille"]["noMessageTimeout"] File "config\__init__.pyc
Hello. I have this problem with the latest alpha, 27190,85efa6d7 (2023.1.0.27190) in one of my addons: self.brailleMessageTimeout = config.conf["braille"]["noMessageTimeout"] File "config\__init__.pyc
|
By
Javi Domínguez
· #19875
·
|
|
Question about config in addons
Hello. I don't understand what happens with configuration values that unexpectedly they change their type. I'm goin to describing the problem: I have this definition: confspec = { "folder":"string(d
Hello. I don't understand what happens with configuration values that unexpectedly they change their type. I'm goin to describing the problem: I have this definition: confspec = { "folder":"string(d
|
By
Javi Domínguez
· #19790
·
|
|
TesseractOCR add-on : error in the NVDA log
Sorry I was wrong. The correct syntax is: super(GlobalPlugin, self).terminate() This would also be valid: super(self.__class__, self).terminate() Although I don't notice a difference between using sup
Sorry I was wrong. The correct syntax is: super(GlobalPlugin, self).terminate() This would also be valid: super(self.__class__, self).terminate() Although I don't notice a difference between using sup
|
By
Javi Domínguez
· #19657
·
|
|
TesseractOCR add-on : error in the NVDA log
Hello. I have also noticed this bug. It doesn't seem important but it's a bit inconvenient when you're in debug mode and you hear the error sound every time you reload addons or reboot. I think the co
Hello. I have also noticed this bug. It doesn't seem important but it's a bit inconvenient when you're in debug mode and you hear the error sound every time you reload addons or reboot. I think the co
|
By
Javi Domínguez
· #19654
·
|
|
Mozilla 1.17 broke thunderbird 60 compatibility
Hello. I try to maintain compatibility with older versions but there comes a time when it is impossible. It is highly recommended to update, as you have been told. If you really have a good reason not
Hello. I try to maintain compatibility with older versions but there comes a time when it is impossible. It is highly recommended to update, as you have been told. If you really have a good reason not
|
By
Javi Domínguez
· #19635
·
|
|
#AddonRelease Mozilla Apps Enhancements 1.17
#addonrelease
Hello. I've just released the update of the addon Mozilla Apps Enhancements 1.17 New in this version: * Fixed what was broken with the Thunderbird 102.0 update * Again correctly reads message headers.
Hello. I've just released the update of the addon Mozilla Apps Enhancements 1.17 New in this version: * Fixed what was broken with the Thunderbird 102.0 update * Again correctly reads message headers.
|
By
Javi Domínguez
· #19534
·
|
|
Solved Re: [nvda-addons] wx.FileDialog and scripts
Hi! Checked. With gui.runScriptModalDialog it works perfectly. Thanks again. def script_loadFile(self, gesture): dlg = wx.FileDialog(gui.mainFrame, "Select a file", os.getenv('USERPROFILE'), "", "All
Hi! Checked. With gui.runScriptModalDialog it works perfectly. Thanks again. def script_loadFile(self, gesture): dlg = wx.FileDialog(gui.mainFrame, "Select a file", os.getenv('USERPROFILE'), "", "All
|
By
Javi Domínguez
· #19533
·
|
|
wx.FileDialog and scripts
Hello, Abdel. Thanks. My code is very similar to this and in the console it works fine. The problem is that if I put that in a script NVDA crashes. I think DaVid has given me the solution: use gui.run
Hello, Abdel. Thanks. My code is very similar to this and in the console it works fine. The problem is that if I put that in a script NVDA crashes. I think DaVid has given me the solution: use gui.run
|
By
Javi Domínguez
· #19531
·
|
|
wx.FileDialog and scripts
Hello. I know how launch a file dialog from the configuration settings and there it works fine for me but when i try to launch it from a script it crashes. I think the solution is in gui.runScriptModa
Hello. I know how launch a file dialog from the configuration settings and there it works fine for me but when i try to launch it from a script it crashes. I think the solution is in gui.runScriptModa
|
By
Javi Domínguez
· #19530
·
|
|
wx.FileDialog and scripts
Hello. Does anyone know why I can't use a wx.FileDialog in a globalPlugin script? NVDA crashes. However, elsewhere, for example calling it from the NVDA menu it works perfectly. Thanks
Hello. Does anyone know why I can't use a wx.FileDialog in a globalPlugin script? NVDA crashes. However, elsewhere, for example calling it from the NVDA menu it works perfectly. Thanks
|
By
Javi Domínguez
· #19527
·
|
|
Braille Extender update dialog and NVDA portable instalation
Hello. This has happened to me several times: when I update my portable copy of NVDA, if there is a pending update of Braille Extender, two dialog boxes are displayed, one for Braille Extender Update
Hello. This has happened to me several times: when I update my portable copy of NVDA, if there is a pending update of Braille Extender, two dialog boxes are displayed, one for Braille Extender Update
|
By
Javi Domínguez
· #19504
·
|
|
Mozilla Inhancment add-on
Hello, Rui. That is fixed in this commit but not included in the latest released build yet.Compile the addon yourself from this branch or wait for the next release. I'll do it soon. I'll announce it h
Hello, Rui. That is fixed in this commit but not included in the latest released build yet.Compile the addon yourself from this branch or wait for the next release. I'll do it soon. I'll announce it h
|
By
Javi Domínguez
· #19503
·
|
|
New version of tesseractOCR
Hello. Thanks. It works great but you have set a resolution of 300 dpi. With that resolution my scanner, which is a bit old, is very slow. 150 dpi is enough for a good OCR result. I would reduce resol
Hello. Thanks. It works great but you have set a resolution of 300 dpi. With that resolution my scanner, which is a bit old, is very slow. 150 dpi is enough for a good OCR result. I would reduce resol
|
By
Javi Domínguez
· #19498
·
|
|
Mozilla Inhancment add-on
Hello. Yes, I've released development builds here that fix what stopped working in Thunderbird 102.0 and later. Soon I will release a stable version. Greetings Javi Domínguez github.com/javidominguez
Hello. Yes, I've released development builds here that fix what stopped working in Thunderbird 102.0 and later. Soon I will release a stable version. Greetings Javi Domínguez github.com/javidominguez
|
By
Javi Domínguez
· #19497
·
|
|
I request testers for an update of the Command Helper addon
Hello. Thanks for the feedback. Please try this previous version and tell me if it works well for you with AZERTY keyboard. https://github.com/javidominguez/commandHelper/releases/download/dev20220402
Hello. Thanks for the feedback. Please try this previous version and tell me if it works well for you with AZERTY keyboard. https://github.com/javidominguez/commandHelper/releases/download/dev20220402
|
By
Javi Domínguez
· #19343
·
|