Skip to content

Commit ab6c100

Browse files
committed
updated NVDA compatibility versions.
updated github workflow to support the new release system. updated copyright in the readme.
1 parent 4645510 commit ab6c100

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/upload-on-tag.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ name: Upload on new tags
33
on:
44
push:
55
tags:
6-
'*'
6+
['*']
77

88
jobs:
99
buildAndUpload:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
- name: Set up Python 3.8
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v3.1.2
1616
with:
1717
python-version: 3.8
1818
- name: Install dependencies
@@ -30,7 +30,7 @@ jobs:
3030
f.seek(0)
3131
f.write(text)
3232
f.truncate()
33-
shell: python
33+
shell: python
3434
- name: Build add-on
3535
run: scons
3636
- name: Calculate sha256

addonReadme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Beep keyboard NVDA Add-on #
22
This add-on allows the user to configure NVDA to beeps with some keyboard events.
33

4-
Copyright (C) 2019 David CM <[email protected]>
4+
Copyright (C) 2019 - 2023 David CM <[email protected]>
55

66
This package is distributed under the terms of the GNU General Public License, version 2 or later.
77

buildVars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# Minimum NVDA version supported (e.g. "2018.3.0")
3030
"addon_minimumNVDAVersion" : "2018.3.0",
3131
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
32-
"addon_lastTestedNVDAVersion" : "2022.1.0",
32+
"addon_lastTestedNVDAVersion" : "2023.1",
3333
# Add-on update channel (default is stable or None)
3434
"addon_updateChannel" : None,
3535
}

0 commit comments

Comments
 (0)