diff --git a/README.md b/README.md index d4c991f..d7f1ab4 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,9 @@ If those nodes have descriptions written in HTML or Markdown, they will be conve ## UPDATES +**2024/10/13** @1.2.44: +* Updated MIDI to use new ENUMs (thanks for the bug report bframes!) + **2024/10/13** @1.2.43: * Attempt to patch MacOS for STREAMREADER to capture windows (ref: [Issue 60](https://github.com/Amorano/Jovimetrix/issues/60)) diff --git a/core/device_midi.py b/core/device_midi.py index 2a5bcf8..b542b9d 100644 --- a/core/device_midi.py +++ b/core/device_midi.py @@ -195,7 +195,6 @@ def run(self, **kw) -> Tuple[bool]: value: str = parse_param(kw, Lexicon.VALUE, EnumConvertType.STRING, "")[0] normal: str = parse_param(kw, Lexicon.NORMALIZE, EnumConvertType.STRING, "")[0] - note_on = MIDINoteOnFilter[note_on] if note_on != MIDINoteOnFilter.IGNORE: if note_on == MIDINoteOnFilter.NOTE_ON and message.note_on != True: return message, False, diff --git a/pyproject.toml b/pyproject.toml index 432bd8a..5f22937 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.2.43" +version = "1.2.44" license = { file = "LICENSE" } dependencies = [ "aenum>=3.1.15,<4",