Problem Description
TeleNVDA and RemoteNVDA share gesture settings. i.e.
[globalPlugins.remoteClient.GlobalPlugin]
This leads to a problem if the user is using TeleNVDA and changes some of TeleNVDA's gestures like script_sendKeys. If the user switches from TeleNVDA to NVDARemote, these gestures will still work in NVDARemote, especially script_sendKeys (NVDARemote does not support changing this gesture).
Although TeleNVDA is better than NVDARemote so people rarely fall back to NVDARemote. However we have to take this possibility into account for the user.
Possible difficulties
If you simply change the name of the function that defines the gesture to another name, it may cause problems:
- The user's previous custom gesture settings will be lost in the new version.
- NVDARemote's
script sendKeys may have been modified and cannot be easily restored.
Problem Description
TeleNVDA and RemoteNVDA share gesture settings. i.e.
[globalPlugins.remoteClient.GlobalPlugin]This leads to a problem if the user is using TeleNVDA and changes some of TeleNVDA's gestures like
script_sendKeys. If the user switches from TeleNVDA to NVDARemote, these gestures will still work in NVDARemote, especiallyscript_sendKeys(NVDARemote does not support changing this gesture).Although TeleNVDA is better than NVDARemote so people rarely fall back to NVDARemote. However we have to take this possibility into account for the user.
Possible difficulties
If you simply change the name of the function that defines the gesture to another name, it may cause problems:
script sendKeysmay have been modified and cannot be easily restored.