Skip to content

Commit d800866

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 and code.
1 parent 45d20cd commit d800866

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
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

addon/globalPlugins/synthRingSettingsSelector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: UTF-8 -*-
22
# 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
44
# Author: David CM <dhf360@gmail.com>
55
# Released under GPL 2
66
#globalPlugins/synthRingSettingsSelector.py

addonReadme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Synth settings ring selector NVDA Add-on #
22
This add-on allows the user to select which settings should appear on the synth settings ring.
33

4-
Copyright (C) 2022 David CM <dhf360@gmail.com>
4+
Copyright (C) 2019 - 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
2020
"addon_description" : _("""This add-on allows the user to select which settings should appear on the synth settings ring."""),
2121
# version
22-
"addon_version" : ,
22+
"addon_version" : "1.1",
2323
# Author(s)
2424
"addon_author" : u"David CM <dhf360@gmail.com>",
2525
# URL for the add-on documentation support
@@ -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
}

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## 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.
33
Updated readme files.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Synth settings ring selector NVDA Add-on #
22
This add-on allows the user to select which settings should appear on the synth settings ring.
33

4-
Copyright (C) 2022 David CM <dhf360@gmail.com>
4+
Copyright (C) 2019 - 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)