Skip to content

Commit

Permalink
pushing the default JOV_SCAN_DEVICES back to off
Browse files Browse the repository at this point in the history
  • Loading branch information
Amorano committed Feb 7, 2025
1 parent f306bbc commit c5448ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]" }]
Expand Down
1 change: 0 additions & 1 deletion sup/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c5448ab

Please sign in to comment.