Skip to content

Commit

Permalink
stream reader hint update
Browse files Browse the repository at this point in the history
  • Loading branch information
Amorano committed Feb 10, 2025
1 parent b5e7668 commit 092726f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ You can colorize nodes via their `title background`, `node body` or `title text`

## UPDATES

**2024/02/10** @1.7.12:
**2024/02/10** @1.7.13:
* cleared serialization bug
* better "docker" environment check
* cleaner type hints
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.12"
version = "1.7.13"
license = { file = "LICENSE" }
readme = "README.md"
authors = [{ name = "Alexander G. Morano", email = "[email protected]" }]
Expand Down
2 changes: 1 addition & 1 deletion web/nodes/stream_reader.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ app.registerExtension({
}
nodeFitHeight(self);
}
setTimeout(source.callback(), 10);
setTimeout(() => { source.callback(); }, 10);
return me;
}
}
Expand Down

0 comments on commit 092726f

Please sign in to comment.