Find a file
George Kiagiadakis 7668f4c6c9 core: add methods to work with pw_core_info data and pw_core properties
- pw_core_info has data that represent the remote core
- pw_core properties are the properties of its pw_client,
initially inherited from the pw_context, which can be updated either
when calling pw_context_connect() or later at runtime (the pw_core
calls pw_client_update_properties() on its pw_client)

wp_core_update_properties() is made in such a way so that we can do:
```
clone = wp_core_clone(core);
wp_core_update_properties(clone, ...);
wp_core_connect(clone);
```
and get clone to have different properties than the original core,
while they still share the same pw_context underneath
2020-06-15 17:50:03 +03:00
docs doc/contributing: add a note about rebasing merge requests 2020-06-15 11:36:15 +03:00
lib core: add methods to work with pw_core_info data and pw_core properties 2020-06-15 17:50:03 +03:00
modules m-config-static-objects: use a local core for all objects 2020-06-12 15:04:36 -04:00
src m-monitor: allow the monitor module to create multiple devices 2020-06-11 13:50:02 -04:00
subprojects wptoml: add new library to parse TOML files 2019-12-04 16:38:35 -05:00
tests properties: const-ify the pw_properties in _new_wrap() 2020-06-15 17:20:10 +03:00
tools wpctl: actually print the endpoint description also on links 2020-06-02 18:25:34 +03:00
.editorconfig docs: enable building html documentation with hotdoc 2020-01-22 17:06:01 +02:00
.gitignore add .gitignore 2019-12-23 18:24:06 +02:00
.gitlab-ci.yml ci: actually create the "public" directory in the pages job 2020-05-18 23:21:23 +03:00
LICENSE Relicense to MIT 2019-05-31 12:13:12 +03:00
Makefile config: refactor wireplumber's configuration 2019-12-17 17:16:53 +02:00
meson.build Add version requirement >= 2.60 for the GLib family of libraries 2020-06-15 11:18:17 +03:00
meson_options.txt docs: enable building html documentation with hotdoc 2020-01-22 17:06:01 +02:00
NEWS.md add NEWS.md 2020-06-03 11:41:25 +03:00
README.md docs: improve documentation 2020-05-19 17:54:10 +03:00

WirePlumber

WirePlumber is a modular session / policy manager for PipeWire and a GObject-based high-level library that wraps PipeWire's API, providing convenience for writing the daemon's modules as well as external tools for managing PipeWire.

Getting Started

Please refer to the documentation, which is available online here