Compare commits

...

12 Commits
v1.0.0 ... dev

Author SHA1 Message Date
e565283827 upd tag pattern 2025-02-18 11:25:00 +00:00
2d194e8e67 upd build_addon workflow 2025-02-18 11:24:02 +00:00
3aab5922ab rename build command to avoid overriding built-in 2025-02-14 23:33:34 +00:00
1fb435416f run scons with pdm 2025-02-14 14:32:53 +00:00
40aaeb4c54 add ignore 2025-02-14 11:57:43 +00:00
17cdd84c51 add Taskfile
invoke tasks from pdm
2025-02-14 11:44:52 +00:00
43379f1b09 fix path in release step 2025-01-24 01:41:40 +00:00
dc9ac5ddc3 add name to download action 2025-01-24 01:31:27 +00:00
9764b9d827 upd workflow 2025-01-24 01:05:57 +00:00
d95a2280c6 minor bump
update README with example bits in config
2025-01-24 00:49:55 +00:00
5534381981 reduce min supported version to 2022.1.0 (unsure if this is earliest it will work so we'll see) 2025-01-24 00:49:41 +00:00
0522b69420 read bits from config, defaults to cdll.BITS
reflect change in script_announce_voicemeeter_version
2025-01-24 00:48:59 +00:00
10 changed files with 70 additions and 81 deletions

View File

@ -1,10 +1,9 @@
name: build addon name: Build Addon
on: on:
push: push:
tags: ["*"] tags:
# To build on main/master branch, uncomment the following line: - 'v*.*.*'
# branches: [ main , master ]
pull_request: pull_request:
branches: [ main, master ] branches: [ main, master ]
@ -13,52 +12,48 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - name: Checkout code
uses: actions/checkout@v4
- run: echo -e "pre-commit\nscons\nmarkdown">requirements.txt - name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
pdm sync -d -G build
- name: Set up Python - name: Build addon
uses: actions/setup-python@v4 run: pdm run scons
with:
python-version: 3.9
cache: 'pip'
- name: Install dependencies - name: Upload build artifacts
run: | if: success()
python -m pip install --upgrade pip wheel uses: actions/upload-artifact@v4
pip install -r requirements.txt with:
sudo apt-get update -y name: packaged_addon
sudo apt-get install -y gettext path: ./*.nvda-addon
- name: Code checks
run: export SKIP=no-commit-to-branch; pre-commit run --all
- name: building addon
run: scons
- uses: actions/upload-artifact@v3
with:
name: packaged_addon
path: ./*.nvda-addon
upload_release: upload_release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') }} if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: ["build"] needs: build
steps: steps:
- uses: actions/checkout@v3 - name: Download releases files
- name: download releases files
uses: actions/download-artifact@v4.1.7 uses: actions/download-artifact@v4.1.7
with:
name: packaged_addon
- name: Display structure of downloaded files - name: Display structure of downloaded files
run: ls -R run: tree
- name: Release - name: Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
files: packaged_addon/*.nvda-addon files: ./*.nvda-addon
fail_on_unmatched_files: true fail_on_unmatched_files: true
prerelease: ${{ contains(github.ref, '-') }} prerelease: ${{ contains(github.ref, '-') }}

View File

@ -85,6 +85,7 @@ example:
```json ```json
{ {
"voicemeeter": "banana", "voicemeeter": "banana",
"bits": 64,
"keybinds": { "keybinds": {
"NVDA+alt+k": "strip_mode", "NVDA+alt+k": "strip_mode",
"NVDA+alt+l": "bus_mode", "NVDA+alt+l": "bus_mode",
@ -120,6 +121,7 @@ example:
Would make the following changes: Would make the following changes:
- load the plugin in `banana` mode (default is potato) - load the plugin in `banana` mode (default is potato)
- override the bits of Voicemeeter GUI to 64 (default is 32)
- change the `strip_mode` and `bus_mode` binds to `NVDA+alt+k` and `NVDA+alt+l` respectively - change the `strip_mode` and `bus_mode` binds to `NVDA+alt+k` and `NVDA+alt+l` respectively
- change the `announce_voicemeeter_version` bind to `NVDA+shift+z` - change the `announce_voicemeeter_version` bind to `NVDA+shift+z`
- changes the bus assignment binds to `NVDA+control+number` - changes the bus assignment binds to `NVDA+control+number`

26
Taskfile.yml Normal file
View File

@ -0,0 +1,26 @@
version: '3'
vars:
SHELL: pwsh
tasks:
default:
desc: Build the addon
cmds:
- task: build
copy:
desc: Copy sources files to scratchpad directory
platforms: [windows]
vars:
SOURCE: addon\globalPlugins\voicemeeter
DEST: ${env:appdata}\nvda\scratchpad\globalPlugins\voicemeeter\
cmds:
- "{{.SHELL}} -Command 'robocopy {{.SOURCE}} {{.DEST}} /NDL'"
ignore_error: true
build:
desc: Build the addon
platforms: [windows]
cmds:
- '{{.SHELL}} -Command "pdm run scons"'

View File

@ -43,7 +43,4 @@ dll_path = vm_parent.joinpath(DLL_NAME)
if not dll_path.is_file(): if not dll_path.is_file():
raise VMError(f'Could not find {dll_path}') raise VMError(f'Could not find {dll_path}')
if BITS == 64: libc = ct.WinDLL(str(dll_path))
libc = ct.CDLL(str(dll_path))
else:
libc = ct.WinDLL(str(dll_path))

View File

@ -8,7 +8,7 @@ class CommandsMixin:
### ANNOUNCEMENTS ### ### ANNOUNCEMENTS ###
def script_announce_voicemeeter_version(self, _): def script_announce_voicemeeter_version(self, _):
ui.message(f'Running Voicemeeter {self.kind} {self.controller.version}') ui.message(f'Running Voicemeeter {self.kind} {self.controller.version} {self.controller.bits} bit')
def script_announce_controller(self, _): def script_announce_controller(self, _):
ui.message(f'Controller for {self.controller.ctx.strategy} {self.controller.ctx.index + 1}') ui.message(f'Controller for {self.controller.ctx.strategy} {self.controller.ctx.index + 1}')

View File

@ -2,6 +2,7 @@ import ctypes as ct
from logHandler import log from logHandler import log
from . import config
from .binds import Binds from .binds import Binds
from .cdll import BITS from .cdll import BITS
from .context import Context, StripStrategy from .context import Context, StripStrategy
@ -11,6 +12,7 @@ from .kinds import KindId
class Controller(Binds): class Controller(Binds):
def __init__(self): def __init__(self):
self.ctx = Context(StripStrategy(self, 0)) self.ctx = Context(StripStrategy(self, 0))
self.bits = config.get('bits', BITS)
def login(self): def login(self):
retval = self.call(self.bind_login, ok=(0, 1)) retval = self.call(self.bind_login, ok=(0, 1))
@ -40,8 +42,8 @@ class Controller(Binds):
def run_voicemeeter(self, kind_id): def run_voicemeeter(self, kind_id):
val = kind_id.value val = kind_id.value
if val == 3 and BITS == 64: if self.bits == 64:
val = 6 val += 3
self.call(self.bind_run_voicemeeter, val) self.call(self.bind_run_voicemeeter, val)
def __clear(self): def __clear(self):

View File

@ -14,11 +14,6 @@ class KindId(Enum):
@dataclass @dataclass
class KindMapClass: class KindMapClass:
name: str name: str
ins: tuple
outs: tuple
vban: tuple
asio: tuple
insert: int
@property @property
def phys_in(self) -> int: def phys_in(self) -> int:
@ -50,7 +45,6 @@ class KindMapClass:
@dataclass @dataclass
class BasicMap(KindMapClass): class BasicMap(KindMapClass):
name: str
ins: tuple = (2, 1) ins: tuple = (2, 1)
outs: tuple = (1, 1) outs: tuple = (1, 1)
vban: tuple = (4, 4, 1, 1) vban: tuple = (4, 4, 1, 1)
@ -60,7 +54,6 @@ class BasicMap(KindMapClass):
@dataclass @dataclass
class BananaMap(KindMapClass): class BananaMap(KindMapClass):
name: str
ins: tuple = (3, 2) ins: tuple = (3, 2)
outs: tuple = (3, 2) outs: tuple = (3, 2)
vban: tuple = (8, 8, 1, 1) vban: tuple = (8, 8, 1, 1)
@ -70,7 +63,6 @@ class BananaMap(KindMapClass):
@dataclass @dataclass
class PotatoMap(KindMapClass): class PotatoMap(KindMapClass):
name: str
ins: tuple = (5, 3) ins: tuple = (5, 3)
outs: tuple = (5, 3) outs: tuple = (5, 3)
vban: tuple = (8, 8, 1, 1) vban: tuple = (8, 8, 1, 1)

View File

@ -1,25 +0,0 @@
param (
[switch]$build
)
function Copy-FilesToScratchpad {
$source = Join-Path $PSScriptRoot "addon" "globalPlugins" "voicemeeter"
$target = Join-Path $env:appdata "nvda" "scratchpad" "globalPlugins" "voicemeeter"
Robocopy $source $target | Out-Null
}
function Build-Addon {
"Building add-on" | Write-Host
scons
}
function Main {
"Copying updated files to Scratchpad" | Write-Host
Copy-FilesToScratchpad
if ($build) {
Build-Addon
}
}
if ($MyInvocation.InvocationName -ne '.') { Main }

View File

@ -28,7 +28,7 @@ addon_info = {
The add-on requires Voicemeeter to be installed.""" The add-on requires Voicemeeter to be installed."""
), ),
# version # version
'addon_version': '1.0.0', 'addon_version': '1.1.0',
# Author(s) # Author(s)
'addon_author': 'onyx-and-iris <code@onyxandiris.online>', 'addon_author': 'onyx-and-iris <code@onyxandiris.online>',
# URL for the add-on documentation support # URL for the add-on documentation support
@ -38,7 +38,7 @@ The add-on requires Voicemeeter to be installed."""
# Documentation file name # Documentation file name
'addon_docFileName': 'readme.html', 'addon_docFileName': 'readme.html',
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional) # Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
'addon_minimumNVDAVersion': '2024.4.0', 'addon_minimumNVDAVersion': '2022.1.0',
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version) # Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
'addon_lastTestedNVDAVersion': '2024.4.2', 'addon_lastTestedNVDAVersion': '2024.4.2',
# Add-on update channel (default is None, denoting stable releases, # Add-on update channel (default is None, denoting stable releases,

View File

@ -1,6 +1,6 @@
[project] [project]
name = "nvda-addon-voicemeeter" name = "nvda-addon-voicemeeter"
version = "1.0.0" version = "1.1.0"
description = "A GUI-less NVDA Addon for Voicemeeter using the Remote API" description = "A GUI-less NVDA Addon for Voicemeeter using the Remote API"
authors = [ authors = [
{name = "Onyx and Iris", email = "code@onyxandiris.online"}, {name = "Onyx and Iris", email = "code@onyxandiris.online"},
@ -20,8 +20,8 @@ build = [
distribution = false distribution = false
[tool.pdm.scripts] [tool.pdm.scripts]
copy = "pwsh build.ps1" copy = "task copy"
build = "pwsh build.ps1 -build" release = "task build"
[tool.ruff] [tool.ruff]
exclude = [ exclude = [
@ -51,8 +51,8 @@ exclude = [
line-length = 120 line-length = 120
indent-width = 4 indent-width = 4
# Assume Python 3.10 # Assume Python 3.11
target-version = "py310" target-version = "py311"
[tool.ruff.lint] [tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default. # Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.