mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-06 19:40:10 +02:00
Remove spurious underscores from socket files
This commit is contained in:
@@ -33,6 +33,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
- Fixed an obscure issue with VST3 plugins crashing in **Ardour** on
|
||||
Arch/Manjaro because of misreported parameter queue lengths.
|
||||
- Some of yabridge's socket file names contained extremely aesthetically
|
||||
unpleasing trailing underscores. Begone pesky underscores!
|
||||
|
||||
### Packaging notes
|
||||
|
||||
|
||||
@@ -354,7 +354,7 @@ class Vst2Sockets final : public Sockets {
|
||||
(base_dir_ / "host_vst_dispatch.sock").string(),
|
||||
listen),
|
||||
vst_host_callback_(io_context,
|
||||
(base_dir_ / "vst_host_callback_.sock").string(),
|
||||
(base_dir_ / "vst_host_callback.sock").string(),
|
||||
listen),
|
||||
host_vst_parameters_(
|
||||
io_context,
|
||||
@@ -365,7 +365,7 @@ class Vst2Sockets final : public Sockets {
|
||||
(base_dir_ / "host_vst_process_replacing.sock").string(),
|
||||
listen),
|
||||
host_vst_control_(io_context,
|
||||
(base_dir_ / "host_vst_control_.sock").string(),
|
||||
(base_dir_ / "host_vst_control.sock").string(),
|
||||
listen) {}
|
||||
|
||||
~Vst2Sockets() noexcept override { close(); }
|
||||
|
||||
@@ -315,10 +315,10 @@ class Vst3Sockets final : public Sockets {
|
||||
bool listen)
|
||||
: Sockets(endpoint_base_dir),
|
||||
host_vst_control_(io_context,
|
||||
(base_dir_ / "host_vst_control_.sock").string(),
|
||||
(base_dir_ / "host_vst_control.sock").string(),
|
||||
listen),
|
||||
vst_host_callback_(io_context,
|
||||
(base_dir_ / "vst_host_callback_.sock").string(),
|
||||
(base_dir_ / "vst_host_callback.sock").string(),
|
||||
listen),
|
||||
io_context_(io_context) {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user