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