Skip to content

Commit

Permalink
MIDI Enum missed in enum update
Browse files Browse the repository at this point in the history
  • Loading branch information
Amorano committed Oct 15, 2024
1 parent 3ead3b2 commit a3e7cbe
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 @@ -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))

Expand Down
1 change: 0 additions & 1 deletion core/device_midi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
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.2.43"
version = "1.2.44"
license = { file = "LICENSE" }
dependencies = [
"aenum>=3.1.15,<4",
Expand Down

0 comments on commit a3e7cbe

Please sign in to comment.