simple-carla 1.5.0__tar.gz → 1.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {simple_carla-1.5.0 → simple_carla-1.5.1}/PKG-INFO +1 -1
- {simple_carla-1.5.0 → simple_carla-1.5.1}/pyproject.toml +1 -1
- {simple_carla-1.5.0 → simple_carla-1.5.1}/simple_carla/__init__.py +22 -1
- {simple_carla-1.5.0 → simple_carla-1.5.1}/.gitignore +0 -0
- {simple_carla-1.5.0 → simple_carla-1.5.1}/LICENSE +0 -0
- {simple_carla-1.5.0 → simple_carla-1.5.1}/README.md +0 -0
- {simple_carla-1.5.0 → simple_carla-1.5.1}/simple_carla/plugin_dialog.py +0 -0
- {simple_carla-1.5.0 → simple_carla-1.5.1}/simple_carla/qt.py +0 -0
- {simple_carla-1.5.0 → simple_carla-1.5.1}/simple_carla/scripts/__init__.py +0 -0
- {simple_carla-1.5.0 → simple_carla-1.5.1}/simple_carla/scripts/sc_plugin_def.py +0 -0
- {simple_carla-1.5.0 → simple_carla-1.5.1}/tests/carla.py +0 -0
- {simple_carla-1.5.0 → simple_carla-1.5.1}/tests/qt_carla.py +0 -0
@@ -18,7 +18,7 @@ build-backend = "flit_core.buildapi"
|
|
18
18
|
sc-plugin-def = "simple_carla.scripts.sc_plugin_def:main"
|
19
19
|
|
20
20
|
[bumpver]
|
21
|
-
current_version = "1.5.
|
21
|
+
current_version = "1.5.1"
|
22
22
|
version_pattern = "MAJOR.MINOR.PATCH"
|
23
23
|
commit_message = "Bump version {old_version} -> {new_version}"
|
24
24
|
commit = true
|
@@ -234,7 +234,7 @@ from carla_backend import (
|
|
234
234
|
)
|
235
235
|
|
236
236
|
|
237
|
-
__version__ = "1.5.
|
237
|
+
__version__ = "1.5.1"
|
238
238
|
|
239
239
|
|
240
240
|
# -------------------------------------------------------------------
|
@@ -2972,6 +2972,27 @@ class Plugin(PatchbayClient):
|
|
2972
2972
|
"""
|
2973
2973
|
return len(self.output_parameters())
|
2974
2974
|
|
2975
|
+
@property
|
2976
|
+
def peak_mono(self):
|
2977
|
+
"""
|
2978
|
+
Returns (float) an estimated volume peak for mono plugins
|
2979
|
+
"""
|
2980
|
+
return Carla.instance.get_input_peak_value(self.plugin_id, True)
|
2981
|
+
|
2982
|
+
@property
|
2983
|
+
def peak_left(self):
|
2984
|
+
"""
|
2985
|
+
Returns (float) an estimated volume peak for the left channel
|
2986
|
+
"""
|
2987
|
+
return Carla.instance.get_input_peak_value(self.plugin_id, True)
|
2988
|
+
|
2989
|
+
@property
|
2990
|
+
def peak_right(self):
|
2991
|
+
"""
|
2992
|
+
Returns (float) an estimated volume peak for the left channel
|
2993
|
+
"""
|
2994
|
+
return Carla.instance.get_input_peak_value(self.plugin_id, False)
|
2995
|
+
|
2975
2996
|
def input_parameters(self):
|
2976
2997
|
"""
|
2977
2998
|
Returns a list of Parameter objects.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|