Skip to content

Commit

Permalink
added future note for colorpicker in FF
Browse files Browse the repository at this point in the history
updates by webfiltered
  • Loading branch information
Amorano committed Dec 4, 2024
1 parent 4d8bbfd commit 0a4cb8b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ If those nodes have descriptions written in HTML or Markdown, they will be conve

## UPDATES

**2024/12/04** @1.2.52:
* vector widget updated to use new events by (webfiltered)[https://github.com/webfiltered]
* colorpicker updated to pop in place (Chrome only atm) by (webfiltered)[https://github.com/webfiltered]

**2024/12/04** @1.2.51:
* attempt to fix string field length being shrunk `AKASHIC` node.
* version up requirements for aiohttp, glfw, matplotlib, mss, pillow, pywin32, scikit-learn
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.51"
version = "1.2.52"
license = { file = "LICENSE" }
dependencies = [
"aenum>=3.1.15,<4",
Expand Down
4 changes: 4 additions & 0 deletions web/widget/widget_vector.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ const VectorWidget = (app, inputName, options, initial, desc='') => {
}

if (!picker) {
// firefox?
//position: "absolute", // Use absolute positioning for consistency
//left: `${eUp.pageX}px`, // Use pageX for more consistent placement
//top: `${eUp.pageY}px`,
picker = $el("input", {
type: "color",
parent: document.body,
Expand Down

0 comments on commit 0a4cb8b

Please sign in to comment.