aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS5
-rw-r--r--src/jalv.c3
2 files changed, 5 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index d22aa6a..eec1c30 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,10 @@
jalv (1.6.5) unstable;
- * Support port events for ui:showInterface UIs
* Add a command line argument to select a specific UI
+ * Explicitly support lv2:inPlaceBroken
+ * Support port events for ui:showInterface UIs
- -- David Robillard <d@drobilla.net> Sun, 05 Apr 2020 11:14:53 +0000
+ -- David Robillard <d@drobilla.net> Sun, 11 Oct 2020 10:16:00 +0000
jalv (1.6.4) stable;
diff --git a/src/jalv.c b/src/jalv.c
index 7905b20..08d9003 100644
--- a/src/jalv.c
+++ b/src/jalv.c
@@ -128,7 +128,8 @@ static const LV2_Feature static_features[] = {
static bool
feature_is_supported(Jalv* jalv, const char* uri)
{
- if (!strcmp(uri, "http://lv2plug.in/ns/lv2core#isLive")) {
+ if (!strcmp(uri, "http://lv2plug.in/ns/lv2core#isLive") ||
+ !strcmp(uri, "http://lv2plug.in/ns/lv2core#inPlaceBroken")) {
return true;
}