Skip to content

Commit

Permalink
* fixed import bug in widget_vector
Browse files Browse the repository at this point in the history
* cleaner akashic output
* valid types for specific node inputs
* updated value node to return [0] (list) instead of just an int when empty
  • Loading branch information
Amorano committed Feb 25, 2025
1 parent 8919e19 commit 4900212
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@ You can colorize nodes via their `title background`, `node body` or `title text`
<img src="https://github.com/user-attachments/assets/4459855c-c4e6-4739-811e-a6c90aa5a90c" alt="TICK Node Batch Support Output" width="384"/>
</div>

**2024/02/25** @1.7.28:
* fixed import bug in widget_vector
* cleaner akashic output
* valid types for specific node inputs
* updated value node to return [0] (list) instead of just an int when empty

**2024/02/23** @1.7.26:
* vector fields can now be reset by clicking on the header of the field

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.26"
version = "1.7.28"
license = { file = "LICENSE" }
readme = "README.md"
authors = [{ name = "Alexander G. Morano", email = "[email protected]" }]
Expand Down
4 changes: 2 additions & 2 deletions web/widget/widget_vector.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
* File: widget_vector.js
*/


import { app } from "../../../scripts/app.js"
import { $el } from "../../../scripts/ui.js"
import { widgetToInput, widgetToWidget, domInnerValueChange } from './util_jov.js'
import { widgetToInput, widgetToWidget } from '../util/util_widget.js'
import { domInnerValueChange } from '../util/util.js'
/** @import { IWidget, LGraphCanvas } from '../../types/litegraph/litegraph.d.ts' */

function isVersionLess(v1, v2) {
Expand Down

0 comments on commit 4900212

Please sign in to comment.