diff --git a/README.md b/README.md index 6242dc2..acf9f56 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,9 @@ You can colorize nodes via their `title background`, `node body` or `title text` ## UPDATES +**2024/02/07** @1.7.08: +* `JOV_SCAN_DEVICES` reset to default off. + **2024/02/06** @1.7.06: * `RESIZE_MATTE` option updated to allow transparent mattes diff --git a/pyproject.toml b/pyproject.toml index 13ac623..3d694db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "jovimetrix" description = "Integrates Webcam, MIDI, Spout and GLSL shader support. Animation via tick. Parameter manipulation with wave generator. Math operations with Unary and Binary support. Value conversion for all major types (int, string, list, dict, Image, Mask). Shape mask generation, image stacking and channel ops, batch splitting, merging and randomizing, load images and video from anywhere, dynamic bus routing with a single node, export support for GIPHY, save output anywhere! flatten, crop, transform; check colorblindness, make stereogram or stereoscopic images, or liner interpolate values and more." -version = "1.7.06" +version = "1.7.08" license = { file = "LICENSE" } readme = "README.md" authors = [{ name = "Alexander G. Morano", email = "amorano@gmail.com" }] diff --git a/sup/stream.py b/sup/stream.py index 255b77d..0112975 100644 --- a/sup/stream.py +++ b/sup/stream.py @@ -53,7 +53,6 @@ class StreamMissingException(Exception): pass # ============================================================================== cfg = ConfigParser() -JOV_SCAN_DEVICES = True JOV_SCAN_DEVICES = os.getenv("JOV_SCAN_DEVICES", "True").lower() in ['1', 'true', 'on'] JOV_STREAM_HOST = os.getenv("JOV_STREAM_HOST", '') JOV_STREAM_PORT = 7227