Skip to content

Commit df80af6

Browse files
committed
updated the supported NVDA versions to 2023.1
updated github workflow to support the new release system. updated copyright in the readme.
1 parent 8d60d3a commit df80af6

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
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
# Enhanced phonetic reading NVDA Add-on #
22
This add-on add some features to phonetic reading like delayed character descriptions and instant character descriptions.
33

4-
Copyright (C) 2022 David CM <dhf360@gmail.com>
4+
Copyright (C) 2022 - 2023 David CM <dhf360@gmail.com>
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
@@ -31,7 +31,7 @@
3131
# Minimum NVDA version supported (e.g. "2018.3.0")
3232
"addon_minimumNVDAVersion" : "2018.3.0",
3333
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
34-
"addon_lastTestedNVDAVersion" : "2022.2",
34+
"addon_lastTestedNVDAVersion" : "2023.1",
3535
# Add-on update channel (default is stable or None)
3636
"addon_updateChannel": "stable",
3737
}

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## Changes for 1.1.3 ##
22

3-
* Updated manifest to add compatibility with NVDA 2022.2.
3+
* Updated manifest to add compatibility with NVDA 2023.1.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Enhanced phonetic reading NVDA Add-on #
22
This add-on add some features to phonetic reading like delayed character descriptions and instant character descriptions.
33

4-
Copyright (C) 2022 David CM <dhf360@gmail.com>
4+
Copyright (C) 2022 - 2023 David CM <dhf360@gmail.com>
55

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

0 commit comments

Comments
 (0)