From df08b15227ef7c8fe82e70852d39bc8dcd09dab4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Noelia=20Ruiz=20Mart=C3=ADnez?= Date: Sat, 6 Apr 2024 05:26:29 +0200 Subject: [PATCH 1/4] Show review URL for installed add-ons --- source/addonStore/models/addon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/addonStore/models/addon.py b/source/addonStore/models/addon.py index dead3aed6d8..76f204f887e 100644 --- a/source/addonStore/models/addon.py +++ b/source/addonStore/models/addon.py @@ -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), ) From 6bfa015a106b2e8bf23195a1fd2a4829032e71e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Noelia=20Ruiz=20Mart=C3=ADnez?= Date: Sat, 6 Apr 2024 06:02:32 +0200 Subject: [PATCH 2/4] Update changelog --- user_docs/en/changes.t2t | 1 + 1 file changed, 1 insertion(+) diff --git a/user_docs/en/changes.t2t b/user_docs/en/changes.t2t index 027979a9101..a66ec9c4088 100644 --- a/user_docs/en/changes.t2t +++ b/user_docs/en/changes.t2t @@ -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) From d7c464465307761140a3bbb8c871a25921d4d973 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Noelia=20Ruiz=20Mart=C3=ADnez?= Date: Sat, 6 Apr 2024 06:04:36 +0200 Subject: [PATCH 3/4] Update user guide --- user_docs/en/userGuide.t2t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_docs/en/userGuide.t2t b/user_docs/en/userGuide.t2t index 162f1dc5e06..d3b6beb8b20 100644 --- a/user_docs/en/userGuide.t2t +++ b/user_docs/en/userGuide.t2t @@ -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. Also, it may be helpful to other users to provide feedback about add-ons you have tried. -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. From 97120f75487553d44c4f6d088bc06c477665b66b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Noelia=20Ruiz=20Mart=C3=ADnez?= Date: Sat, 6 Apr 2024 11:26:02 +0200 Subject: [PATCH 4/4] Apply suggestions from code review Co-authored-by: Luke Davis <8139760+XLTechie@users.noreply.github.com> --- user_docs/en/userGuide.t2t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_docs/en/userGuide.t2t b/user_docs/en/userGuide.t2t index d3b6beb8b20..ceaebd11970 100644 --- a/user_docs/en/userGuide.t2t +++ b/user_docs/en/userGuide.t2t @@ -3016,8 +3016,8 @@ Just like when you install or remove add-ons, you need to restart NVDA in order You can also enable or disable multiple add-ons at once by selecting multiple add-ons in the available add-ons tab, then activating the context menu on the selection and choosing the appropriate action. +++ Reviewing add-ons and reading reviews +++[AddonStoreReviews] -Before installing an add-on, you may want to read reviews by others. -Also, it may be helpful to other users to provide feedback about add-ons you have tried. +You may want to read reviews by other users who have experienced an add-on, for example before you install it, or as you are learning to use it. +Also, it is helpful to other users to provide feedback about add-ons you have tried. 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.