This repository has been archived by the owner on Dec 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
21 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: 2 | ||
updates: | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
groups: | ||
actions-minor: | ||
update-types: | ||
- minor | ||
- patch |
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 |
---|---|---|
|
@@ -18,17 +18,16 @@ on: | |
|
||
jobs: | ||
buildAndUpload: | ||
continue-on-error: true | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- id: checkoutCode | ||
name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v4 | ||
uses: actions/checkout@v4 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.8 | ||
python-version: 3.11 | ||
- name: Install dependencies | ||
run: | | ||
pip install scons markdown | ||
|
@@ -52,7 +51,7 @@ jobs: | |
git config --global user.name github-actions | ||
git config --global user.email [email protected] | ||
git commit -a -m "Update buildVars" | ||
git push origin HEAD:main | ||
git push | ||
- id: import_gpg | ||
if: ${{ inputs.signAddOn }} | ||
name: Import GPG key | ||
|
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": _("""When this add-on is installed, NVDA can report the text typed in protected controls such as passwords."""), | ||
# version | ||
"addon_version": "11.1.0", | ||
"addon_version": "18.0.0", | ||
# Author(s) | ||
"addon_author": u"Noelia Ruiz Martínez <[email protected]>", | ||
# URL for the add-on documentation support | ||
|
@@ -29,7 +29,7 @@ | |
# Minimum NVDA version supported (e.g. "2018.3") | ||
"addon_minimumNVDAVersion": "2023.2", | ||
# Last NVDA version supported/tested (e.g. "2018.4", ideally more recent than minimum version) | ||
"addon_lastTestedNVDAVersion": "2024.1.0", | ||
"addon_lastTestedNVDAVersion": "2024.3.0", | ||
# Add-on update channel (default is stable or None) | ||
"addon_updateChannel": None, | ||
} | ||
|