From 527d11737a7dbfe3024edd6101f19a0ea497f260 Mon Sep 17 00:00:00 2001 From: "Alexander G. Morano" Date: Sun, 2 Mar 2025 02:32:45 -0500 Subject: [PATCH] adjusted js import paths --- README.md | 3 +++ pyproject.toml | 2 +- web/widget_vector.js | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3b81598..7dcb498 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,9 @@ Please consider sponsoring me if you enjoy the results of my work, code or docum ## UPDATES +**2025/03/02** @1.1.14: +* adjusted js import paths + **2025/03/01** @1.1.13: * fixed all the year dates in readme since I have been writing 2024! =D diff --git a/pyproject.toml b/pyproject.toml index 0adbd3f..28e1cdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "jovi_glsl" description = "ComfyUI Nodes that integrate GLSL shader support." -version = "1.1.13" +version = "1.1.14" license = { file = "LICENSE" } readme = "README.md" authors = [{ name = "Alexander G. Morano", email = "amorano@gmail.com" }] diff --git a/web/widget_vector.js b/web/widget_vector.js index 8eaf8b6..58b89d1 100644 --- a/web/widget_vector.js +++ b/web/widget_vector.js @@ -3,8 +3,8 @@ */ -import { app } from "../../../scripts/app.js" -import { $el } from "../../../scripts/ui.js" +import { app } from "../../scripts/app.js" +import { $el } from "../../scripts/ui.js" import { widgetToInput, widgetToWidget, domInnerValueChange } from './util_jov.js' /** @import { IWidget, LGraphCanvas } from '../../types/litegraph/litegraph.d.ts' */