From c6eb55dc6d5efc4744ca36a45d780439adb62a78 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 28 Nov 2020 13:08:49 +0100 Subject: [PATCH] Rename libyabridge to libyabridge-vst2 --- README.md | 2 ++ meson.build | 10 +++++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ffbd1919..782c7021 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,8 @@ imcomplete list of things that still have to be done before this can be used: - Update yabridgectl to handle buth VST2 and VST3 plugins. - Update all documentation to refer to VST2 and VST3 support separately, and figure out how to do this in the least confusing way possible. +- Mention that this update will break all existing symlinks and that the old + `libyabridge.so` file should be removed when upgrading. - Update all the AUR packages. ![yabridge screenshot](https://raw.githubusercontent.com/robbert-vdh/yabridge/master/screenshot.png) diff --git a/meson.build b/meson.build index 9e1eddcf..fab572d3 100644 --- a/meson.build +++ b/meson.build @@ -71,13 +71,13 @@ xcb_dep = dependency('xcb') include_dir = include_directories('src/include') -# The application consists of a VST plugin (yabridge) that calls a winelib -# program (yabridge-host) that can host Windows VST plugins. More information -# about the way these two components work together can be found in the readme -# file. +# The application consists of a plugin (`libyabridge-{vst2,vst3}.so`) that calls +# a Winelib application (`yabridge-{host,group}{,-32}.exe`) that can host +# Windows VST plugins. More information about the way these two components work +# together can be found in `docs/architecture.md`. shared_library( - 'yabridge', + 'yabridge-vst2', [ 'src/common/configuration.cpp', 'src/common/logging.cpp',