-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a script to update version in the buildVars.py automatically if it as not been changed but is confirmed in a commit. this can be used manually, or automatically with a post commit hook. updated sconstruct to generate the required json file for the add-on store. Currently this add-on is not in the add-on store, but I prefer to use the same workflow for all my add-ons. updated buildVars to be compatible with the new sconstruct. now *.json files are ignored. fix the update function to check for the correct asset first, in case of more than one asset in the release.
- Loading branch information
Showing
6 changed files
with
263 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
addon/doc/*.css | ||
addon/doc/en/ | ||
addon/synthDrivers/ibmtts | ||
*_docHandler.py | ||
*.html | ||
*.ini | ||
*.mo | ||
*.py[co] | ||
*.nvda-addon | ||
*.code-workspace | ||
setup.cfg | ||
.sconsign.dblite | ||
*.code-workspace | ||
*.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager | ||
"addon_description" : _("""This is the IBMTTS synthesizer driver for NVDA."""), | ||
# version | ||
"addon_version" : "v23.02.1", | ||
"addon_version" : "23.5.2", | ||
# Author(s) | ||
"addon_author" : u"David CM <[email protected]>, x0 and others", | ||
# URL for the add-on documentation support | ||
|
@@ -32,6 +32,12 @@ | |
"addon_lastTestedNVDAVersion" : "2023.1.0", | ||
# Add-on update channel (default is stable or None) | ||
"addon_updateChannel" : None, | ||
# Add-on license such as GPL 2 | ||
"addon_license": "GPL 2", | ||
# URL for the license document the ad-on is licensed under | ||
"addon_licenseURL": "https://www.gnu.org/licenses/old-licenses/gpl-2.0.html", | ||
# URL for the add-on repository where the source code can be found | ||
"addon_sourceURL": "https://github.com/davidacm/NVDA-IBMTTS-Driver", | ||
} | ||
|
||
|
||
|
@@ -50,3 +56,14 @@ | |
# Files that will be ignored when building the nvda-addon file | ||
# Paths are relative to the addon directory, not to the root directory of your addon sources. | ||
excludedFiles = [] | ||
|
||
|
||
# Base language for the NVDA add-on | ||
baseLanguage = "en" | ||
|
||
# Markdown extensions for add-on documentation | ||
# Most add-ons do not require additional Markdown extensions. | ||
# If you need to add support for markup such as tables, fill out the below list. | ||
# Extensions string must be of the form "markdown.extensions.extensionName" | ||
# e.g. "markdown.extensions.tables" to add tables. | ||
markdownExtensions = [] |
Oops, something went wrong.