Perform lower case comparison of add-on names when updating, and make sure not to remove the previous add-on when the current add-on fails installation#9334
Merged
Conversation
added 2 commits
March 18, 2019 11:10
feerrenrut
reviewed
Mar 28, 2019
Contributor
feerrenrut
left a comment
There was a problem hiding this comment.
I wonder what would be required to use a separate ID for the addons. There may be some UX concerns anyway to have multiple addons installed with the same name.
Collaborator
Author
|
Yes, I think it is. It looks like everyone assumes that the name of the add-on and the folder in which it resides are equal. Regardless, NVDA only compares the name from the manifest when installing, and this logic really should be case insensitive as this pr ensures. |
Contributor
|
I just tested this, and to clarify; the convention is that the name of the folder matches the name of the addon, during installation of the addon nvda creates the folder to match the name of the addon. If the folder name is changed, the addon is still loaded. |
feerrenrut
approved these changes
May 9, 2019
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Link to issue number:
None
Steps to reproduce lowercase comparison issue
TESTtestExpected
TESTandtestare considered the same add-onActual
testis not the same asTEST, sotestinstalls without removingTESTDescription of how this pull request fixes the issue:
When trying to find an existing add-on with the same name, use lower case string matching.
Steps to reproduce failing add-on update issue
Expected
The old version of test remains on the system
Actual
Neither the old nor the new version of test will be available after restarting NVDA, since the old version was marked for removal.
Description of how this pull request fixes the issue:
Mark the previous add-on for removal when the new version has been installed successfully.
Testing performed:
Tested the steps to reproduce above
Known issues with pull request:
None
Change log entry: