From 050856168627b91470f8e02ca319701300d3bfff Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Mon, 18 Mar 2024 17:13:50 +0200 Subject: [PATCH] main: set application.version on the core This allows seeing wireplumber's version in pw-dump and such --- src/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.c b/src/main.c index 59b9ca42..afdcdf9b 100644 --- a/src/main.c +++ b/src/main.c @@ -167,6 +167,7 @@ main (gint argc, gchar **argv) /* prepare core properties */ properties = wp_properties_new ( PW_KEY_APP_NAME, "WirePlumber", + PW_KEY_APP_VERSION, WIREPLUMBER_VERSION, "wireplumber.daemon", "true", "wireplumber.profile", profile, NULL);