diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f2b5068..e0a2b00 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -327,7 +327,7 @@ jobs: done - name: Test VST2 plugins run: | - for p in $(ls bin/ | grep -e vst.so -e '.*\.vst/.*\.so'); do \ + for p in $(find bin/ | grep -e vst.so -e '.*\.vst/.*\.so'); do \ env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ valgrind \ --error-exitcode=255 \ diff --git a/dpf b/dpf index 9236640..5d7fd17 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit 923664009361100bba378c6cfb94d68e39575476 +Subproject commit 5d7fd17f6a634ccd648a264743319c145928a27c diff --git a/plugins/ProM/DistrhoUIProM.cpp b/plugins/ProM/DistrhoUIProM.cpp index b3162a5..44190ac 100644 --- a/plugins/ProM/DistrhoUIProM.cpp +++ b/plugins/ProM/DistrhoUIProM.cpp @@ -1,6 +1,6 @@ /* * DISTRHO ProM Plugin - * Copyright (C) 2015-2021 Filipe Coelho + * Copyright (C) 2015-2022 Filipe Coelho * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/plugins/ProM/DistrhoUIProM.hpp b/plugins/ProM/DistrhoUIProM.hpp index 98e1ba6..42e3c45 100644 --- a/plugins/ProM/DistrhoUIProM.hpp +++ b/plugins/ProM/DistrhoUIProM.hpp @@ -1,6 +1,6 @@ /* * DISTRHO ProM Plugin - * Copyright (C) 2015-2021 Filipe Coelho + * Copyright (C) 2015-2022 Filipe Coelho * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/plugins/ProM/ResizeHandle.hpp b/plugins/ProM/ResizeHandle.hpp index 7ad0c60..88ee117 100644 --- a/plugins/ProM/ResizeHandle.hpp +++ b/plugins/ProM/ResizeHandle.hpp @@ -1,6 +1,6 @@ /* * Resize handle for DPF - * Copyright (C) 2021 Filipe Coelho + * Copyright (C) 2021-2022 Filipe Coelho * * Permission to use, copy, modify, and/or distribute this software for any purpose with * or without fee is hereby granted, provided that the above copyright notice and this @@ -45,7 +45,8 @@ public: resetArea(); } - /** Set the handle size, minimum 16. */ + /** Set the handle size, minimum 16. + * Scale factor is automatically applied on top of this size as needed */ void setHandleSize(const uint size) { handleSize = std::max(16u, size);