Skip to content
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdaes committed Sep 1, 2024
2 parents 0c23665 + ab53a7f commit b6909f3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
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
11 changes: 5 additions & 6 deletions .github/workflows/manualRelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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,
}
Expand Down

0 comments on commit b6909f3

Please sign in to comment.