Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make add-on reviews available from all tabs of the store #16368

Merged
merged 4 commits into from Apr 7, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/addonStore/models/addon.py
Expand Up @@ -303,7 +303,7 @@ def _createInstalledStoreModelFromData(addon: Dict[str, Any]) -> InstalledAddonS
sha256=addon["sha256"],
minNVDAVersion=MajorMinorPatch(**addon["minNVDAVersion"]),
lastTestedVersion=MajorMinorPatch(**addon["lastTestedVersion"]),
reviewURL=addon.get("reviewUrl"),
reviewURL=addon.get("reviewURL"),
legacy=addon.get("legacy", False),
)

Expand Down
1 change: 1 addition & 0 deletions user_docs/en/changes.t2t
Expand Up @@ -58,6 +58,7 @@ What's New in NVDA
- Fixed a bug where audio coordinates would be played while the application is in sleep mode when "Play audio coordinates when mouse moves" is enabled. (#8059, @hwf1324)
- Add-on Store:
- When pressing ``ctrl+tab``, focus properly moves to the new current tab title. (#14986, @ABuffEr)
- The community reviews action will be available, and the reviews webpage will be shown in the details panel, in all tabs of the store (#16179, @nvdaes)
-
- In Adobe Reader, NVDA no longer ignores alternative text set on formulas in PDFs. (#12715)
- Changed several gestures for BrailleSense devices to avoid conflicts with characters of the French braille table. (#15306)
Expand Down
2 changes: 1 addition & 1 deletion user_docs/en/userGuide.t2t
Expand Up @@ -3018,7 +3018,7 @@ You can also enable or disable multiple add-ons at once by selecting multiple ad
+++ Reviewing add-ons and reading reviews +++[AddonStoreReviews]
Before installing an add-on, you may want to read reviews by others.
nvdaes marked this conversation as resolved.
Show resolved Hide resolved
Also, it may be helpful to other users to provide feedback about add-ons you have tried.
nvdaes marked this conversation as resolved.
Show resolved Hide resolved
To read reviews for an add-on, select an add-on from the Available or Updatable add-ons tab, and use the "Community reviews" action.
To read reviews for an add-on, select it, and use the "Community reviews" action.
This links to a GitHub Discussion webpage, where you will be able to read and write reviews for the add-on.
Please be aware that this doesn't replace direct communication with add-on developers.
Instead, the purpose of this feature is to share feedback to help users decide if an add-on may be useful for them.
Expand Down