Cap max volume at 100%; bump to v1.2.0
parent
916541d815
commit
f1fa3080b5
2
PKGBUILD
2
PKGBUILD
|
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Sean Doran <sdoran35@gmail.com>
|
||||
# AUR updates are automated via GitHub Actions on version tag push
|
||||
pkgname=turn-up-arch
|
||||
pkgver=1.1.0
|
||||
pkgver=1.2.0
|
||||
pkgrel=1
|
||||
pkgdesc="USB serial knob/button mixer daemon for PipeWire/PulseAudio on Linux"
|
||||
arch=('any')
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "turnup"
|
||||
version = "1.1.0"
|
||||
version = "1.2.0"
|
||||
description = "USB serial knob/button mixer daemon for PipeWire/PulseAudio on Linux"
|
||||
readme = "README.md"
|
||||
license = { text = "MIT" }
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
"""Turn Up — USB serial mixer daemon for PipeWire/PulseAudio."""
|
||||
|
||||
__version__ = "1.1.0"
|
||||
__version__ = "1.2.0"
|
||||
|
|
|
|||
|
|
@ -33,8 +33,8 @@ log = logging.getLogger("turnupd")
|
|||
|
||||
# Maximum raw ADC value reported by the hardware.
|
||||
KNOB_MAX: int = 1012
|
||||
# Maximum output volume multiplier (1.5 = 150 %).
|
||||
VOLUME_MAX: float = 1.5
|
||||
# Maximum output volume multiplier (1.0 = 100 %).
|
||||
VOLUME_MAX: float = 1.0
|
||||
# Number of physical knobs (and therefore LED groups).
|
||||
NUM_KNOBS: int = 5
|
||||
# Number of LEDs per knob.
|
||||
|
|
|
|||
Loading…
Reference in New Issue