Browse Source

Fix VST2 validation check; Misc changes

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 3 years ago
parent
commit
a05719c152
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
5 changed files with 7 additions and 6 deletions
  1. +1
    -1
      .github/workflows/build.yml
  2. +1
    -1
      dpf
  3. +1
    -1
      plugins/ProM/DistrhoUIProM.cpp
  4. +1
    -1
      plugins/ProM/DistrhoUIProM.hpp
  5. +3
    -2
      plugins/ProM/ResizeHandle.hpp

+ 1
- 1
.github/workflows/build.yml View File

@@ -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 \


+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit 923664009361100bba378c6cfb94d68e39575476
Subproject commit 5d7fd17f6a634ccd648a264743319c145928a27c

+ 1
- 1
plugins/ProM/DistrhoUIProM.cpp View File

@@ -1,6 +1,6 @@
/*
* DISTRHO ProM Plugin
* Copyright (C) 2015-2021 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2015-2022 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public


+ 1
- 1
plugins/ProM/DistrhoUIProM.hpp View File

@@ -1,6 +1,6 @@
/*
* DISTRHO ProM Plugin
* Copyright (C) 2015-2021 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2015-2022 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public


+ 3
- 2
plugins/ProM/ResizeHandle.hpp View File

@@ -1,6 +1,6 @@
/*
* Resize handle for DPF
* Copyright (C) 2021 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
*
* 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);


Loading…
Cancel
Save