From ee366446b60e313a17fc2a754a17bb451a33d36c Mon Sep 17 00:00:00 2001 From: Julian Bouzas Date: Mon, 4 Mar 2024 07:33:36 -0500 Subject: [PATCH] conf: fix settings schema typos Fixes #583 --- src/config/wireplumber.conf | 6 +++--- tests/scripts/config/wireplumber.conf | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/config/wireplumber.conf b/src/config/wireplumber.conf index 758fef6e..c43b33e0 100644 --- a/src/config/wireplumber.conf +++ b/src/config/wireplumber.conf @@ -736,7 +736,7 @@ wireplumber.settings.schema = { type = "bool" default = false } - node.eatures.audio.monitor-ports = { + node.features.audio.monitor-ports = { description = "Whether to enable monitor ports on audio nodes or not" type = "bool" default = true @@ -756,14 +756,14 @@ wireplumber.settings.schema = { type = "bool" default = true } - node.default-playback-volume = { + node.stream.default-playback-volume = { description = "The default volume for playback nodes" type = "float" default = 1.0 min = 0.0 max = 1.0 } - node.default-capture-volume = { + node.stream.default-capture-volume = { description = "The default volume for capture nodes" type = "float" default = 1.0 diff --git a/tests/scripts/config/wireplumber.conf b/tests/scripts/config/wireplumber.conf index c8597e52..70aaa0d0 100644 --- a/tests/scripts/config/wireplumber.conf +++ b/tests/scripts/config/wireplumber.conf @@ -74,7 +74,7 @@ wireplumber.settings.schema = { type = "bool" default = false } - node.eatures.audio.monitor-ports = { + node.features.audio.monitor-ports = { description = "Whether to enable monitor ports on audio nodes or not" type = "bool" default = true @@ -94,14 +94,14 @@ wireplumber.settings.schema = { type = "bool" default = true } - node.default-playback-volume = { + node.stream.default-playback-volume = { description = "The default volume for playback nodes" type = "float" default = 1.0 min = 0.0 max = 1.0 } - node.default-capture-volume = { + node.stream.default-capture-volume = { description = "The default volume for capture nodes" type = "float" default = 1.0