Skip to content

Commit 76c9d40

Browse files
committed
Rename from devHelper to devBox
1 parent 96ff490 commit 76c9d40

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def flush_spaces_buffer():
5858

5959

6060
class GlobalPlugin(globalPluginHandler.GlobalPlugin):
61-
scriptCategory = "Dev Helper"
61+
scriptCategory = "Dev Box"
6262

6363
def __init__(self, *args, **kwargs):
6464
super().__init__(*args, **kwargs)

addon/globalPlugins/devHelper/media/diffLineDeleted.wav renamed to addon/globalPlugins/devBox/media/diffLineDeleted.wav

File renamed without changes.

addon/globalPlugins/devHelper/media/diffLineInserted.wav renamed to addon/globalPlugins/devBox/media/diffLineInserted.wav

File renamed without changes.

buildVars.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ def _(arg):
1616
# Add-on information variables
1717
addon_info = {
1818
# add-on Name/identifier, internal for NVDA
19-
"addon_name": "devHelper",
19+
"addon_name": "devBox",
2020
# Add-on summary, usually the user visible name of the addon.
21-
"addon_summary": "Dev Helper",
21+
"addon_summary": "Dev Box",
2222
# Add-on description
2323
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
2424
"addon_description": _("""Adds useful features for developers."""),
@@ -29,7 +29,7 @@ def _(arg):
2929
# URL for the add-on documentation support
3030
"addon_url": None,
3131
# URL for the add-on repository where the source code can be found
32-
"addon_sourceURL": "https://github.com/addonWorkshop/devHelper",
32+
"addon_sourceURL": "https://github.com/addonWorkshop/devBox",
3333
# Documentation file name
3434
"addon_docFileName": "readme.html",
3535
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
@@ -54,7 +54,7 @@ def _(arg):
5454
# pythonSources = ["addon/globalPlugins/*.py"]
5555
# For more information on SCons Glob expressions please take a look at:
5656
# https://scons.org/doc/production/HTML/scons-user/apd.html
57-
pythonSources = ["addon/globalPlugins/devHelper/*.py"]
57+
pythonSources = ["addon/globalPlugins/devBox/*.py"]
5858

5959
# Files that contain strings for translation. Usually your python sources
6060
i18nSources = pythonSources + ["buildVars.py"]

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Dev Helper
1+
# Dev Box
22

33
This addon contains some features that are primarily useful for software developers, but may also be useful for other users who work with text.
44

0 commit comments

Comments
 (0)