Skip to content

Commit

Permalink
Added missing table column for add-ons. Changed HTML arrow code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Davis authored and Luke Davis committed Jul 20, 2023
1 parent 155883b commit db0bbbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions addon/globalPlugins/versionCollector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def createStructuredList(
) -> str:
"""Takes a generator of _AppData records, and returns their data in a structured way."""
if useHTML:
lineStart = "<tr><TD>&rarrtl;</TD>"
lineStart = "<tr><TD>&#8611;</TD>"
fieldStart = "<td>"
fieldEnd = "</td>"
lineEnd = "</tr>\n"
Expand Down Expand Up @@ -319,7 +319,7 @@ def showHTMLReport(self) -> None:
output += self.getStructuredAppList(True)
output += """</table><br>
<h1>Detected NVDA Add-ons:</h1>\n<table>
<tr><TH>&nbsp;</TH><TH>NAME</TH> <TH>VERSION</TH> <TH>STATUS</TH> <TH>AUTHOR/PUBLISHER</TH></tr>
<tr><TH>&nbsp;</TH><TH>NAME</TH> <TH>VERSION</TH> <TH>STATUS</TH> <TH>AUTHOR/PUBLISHER</TH> <TH>Add-on ID</TH></tr>
"""
output += self.getStructuredAddonList(True)
output += "</table><br>\n<p>"
Expand Down
2 changes: 1 addition & 1 deletion buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _(arg):
"addon_description": _("""Keeps a record of all software names and versions used while running NVDA.
Provides a list that can be copied/exported for diagnostics and support."""),
# version
"addon_version": "23.00.057",
"addon_version": "23.00.058",
# Author(s)
"addon_author": "Luke Davis <XLTechie@newanswertech.com>",
# URL for the add-on documentation support
Expand Down

0 comments on commit db0bbbc

Please sign in to comment.