File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,16 @@ name: Upload on new tags
3
3
on :
4
4
push :
5
5
tags :
6
- ' *'
6
+ [ '*']
7
7
8
8
jobs :
9
9
buildAndUpload :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout code
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v3
14
14
- name : Set up Python 3.8
15
- uses : actions/setup-python@v2
15
+ uses : actions/setup-python@v3.1.2
16
16
with :
17
17
python-version : 3.8
18
18
- name : Install dependencies
30
30
f.seek(0)
31
31
f.write(text)
32
32
f.truncate()
33
- shell : python
33
+ shell : python
34
34
- name : Build add-on
35
35
run : scons
36
36
- name : Calculate sha256
Original file line number Diff line number Diff line change 1
1
# Enhanced phonetic reading NVDA Add-on #
2
2
This add-on add some features to phonetic reading like delayed character descriptions and instant character descriptions.
3
3
4
- Copyright (C) 2022 David CM < dhf360@gmail.com >
4
+ Copyright (C) 2022 - 2023 David CM < dhf360@gmail.com >
5
5
6
6
This package is distributed under the terms of the GNU General Public License, version 2 or later.
7
7
Original file line number Diff line number Diff line change 31
31
# Minimum NVDA version supported (e.g. "2018.3.0")
32
32
"addon_minimumNVDAVersion" : "2018.3.0" ,
33
33
# 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 " ,
35
35
# Add-on update channel (default is stable or None)
36
36
"addon_updateChannel" : "stable" ,
37
37
}
Original file line number Diff line number Diff line change 1
1
## Changes for 1.1.3 ##
2
2
3
- * Updated manifest to add compatibility with NVDA 2022.2 .
3
+ * Updated manifest to add compatibility with NVDA 2023.1 .
Original file line number Diff line number Diff line change 1
1
# Enhanced phonetic reading NVDA Add-on #
2
2
This add-on add some features to phonetic reading like delayed character descriptions and instant character descriptions.
3
3
4
- Copyright (C) 2022 David CM < dhf360@gmail.com >
4
+ Copyright (C) 2022 - 2023 David CM < dhf360@gmail.com >
5
5
6
6
This package is distributed under the terms of the GNU General Public License, version 2 or later.
7
7
You can’t perform that action at this time.
0 commit comments