File tree 6 files changed +10
-10
lines changed 6 files changed +10
-10
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
# -*- coding: UTF-8 -*-
2
2
# Synth ring settings selector: This add-on allows the user to select which settings should appear on the synth settings ring.
3
- # Copyright (C) 2019 David CM
3
+ # Copyright (C) 2019 - 2023 David CM
4
4
# Author: David CM <dhf360@gmail.com>
5
5
# Released under GPL 2
6
6
#globalPlugins/synthRingSettingsSelector.py
Original file line number Diff line number Diff line change 1
1
#Synth settings ring selector NVDA Add-on #
2
2
This add-on allows the user to select which settings should appear on the synth settings ring.
3
3
4
- Copyright (C) 2022 David CM < dhf360@gmail.com >
4
+ Copyright (C) 2019 - 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 19
19
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
20
20
"addon_description" : _ ("""This add-on allows the user to select which settings should appear on the synth settings ring.""" ),
21
21
# version
22
- "addon_version" : ,
22
+ "addon_version" : "1.1" ,
23
23
# Author(s)
24
24
"addon_author" : u"David CM <dhf360@gmail.com>" ,
25
25
# URL for the add-on documentation support
29
29
# Minimum NVDA version supported (e.g. "2018.3.0")
30
30
"addon_minimumNVDAVersion" : "2018.3.0" ,
31
31
# 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 " ,
33
33
# Add-on update channel (default is stable or None)
34
34
"addon_updateChannel" : None ,
35
35
}
Original file line number Diff line number Diff line change 1
1
## Changes for 1.0 ##
2
- Updated manifest to add compatibility with NVDA 2021.3 .1.
2
+ Updated manifest to add compatibility with NVDA 2023 .1.
3
3
Updated readme files.
Original file line number Diff line number Diff line change 1
1
#Synth settings ring selector NVDA Add-on #
2
2
This add-on allows the user to select which settings should appear on the synth settings ring.
3
3
4
- Copyright (C) 2022 David CM < dhf360@gmail.com >
4
+ Copyright (C) 2019 - 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