Skip to content

Commit 6e509f6

Browse files
committed
Updating stable to incorporate doc and comment changes from master
1 parent 12eaf48 commit 6e509f6

File tree

4 files changed

+2
-17
lines changed

4 files changed

+2
-17
lines changed

addon/globalPlugins/debugHelper.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,14 @@
1414

1515
# This add-on is intended to make debugging tasks easier for developers. If you make frequent use of the NVDA log, this may provide features that help you.
1616
# Other things are planned, but currently the only implemented feature is:
17-
# Press NVDA+shift+F1, to insert a sequentially numbered line in the log. (Can be remapped under Tools in Gesture Settings.)
17+
# Press NVDA+shift+F1, to insert a sequentially numbered line in the log. (Can be remapped under Tools in Input Gesture settings.)
1818
# This makes it easier to find where you were last, before or after you performed a certain action.
1919
# The lines are modeled after the old Linux Syslog mark lines, and look like this:
2020
# -- MARK 1 --
2121
# They are currently logged at the info loglevel.
2222

23-
# See readme for release history, and git log for changes.
24-
2523
from __future__ import unicode_literals
2624
from globalCommands import SCRCAT_TOOLS
27-
# Disabled because of desired compatibility with 2017.3
28-
#from scriptHandler import script
2925
from configobj import ConfigObj
3026
import config
3127
import globalPluginHandler, globalVars
@@ -82,13 +78,6 @@ def terminate(self):
8278
pass
8379

8480
# Script to insert a numbered mark line in the log, and announce the insertion and number to the user.
85-
# Disabled because of desired compatibility with 2017.3
86-
#@script(
87-
#gesture="kb:nvda+shift+F1",
88-
## Translators: input help message for a Debug Helper command
89-
#description=_("Inserts a mark line in the log to aid in debugging"),
90-
#category=SCRCAT_TOOLS
91-
#)
9281
def script_logAMarkLine(self, gesture):
9382
import ui
9483
from logHandler import log
@@ -103,7 +92,6 @@ def script_logAMarkLine(self, gesture):
10392
log.info(message)
10493
globalVars.debugHelperMarkCount += 1 # Increase the sequence number for next time
10594

106-
# Needed because @script is disabled for 2017.3 compatibility
10795
script_logAMarkLine.category=SCRCAT_TOOLS
10896
# Translators: input help message for a Debug Helper command
10997
script_logAMarkLine.__doc__ = _("Inserts a mark line in the log to aid in debugging")

buildVars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
2020
"addon_description" : _("""Makes debugging tasks easier for developers and others trying to solve problems.
2121
Inserts sequentially numbered mark lines in the log when you press NVDA+shift+F1, to make it easy to search for things, by "tagging" them.
22-
Let me know if you like the add-on, and especially features you want added."""),
22+
Contact me if you find it useful, and especially if you have feature requests."""),
2323
# version
2424
"addon_version" : "1.0",
2525
# Author(s)

debugHelper-1.0.nvda-addon

-6.93 KB
Binary file not shown.

readme.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,3 @@ Under the Settings section of NVDA Preferences, you will find a "Debug Helper" c
4545

4646
* Version 1.0 (22 August, 2019): Initial stable release.
4747
* Version 0.6-dev1 (8 August, 2019): Candidate submitted for community review.
48-
49-
[1]: https://github.com/XLTechie/debugHelper/raw/1.0/debugHelper-1.0.nvda-addon
50-
[2]: https://github.com/XLTechie/debugHelper/raw/0.6-dev2/debugHelper-0.6-dev2.nvda-addon

0 commit comments

Comments
 (0)