From 98f4afdbe124630c1df9cf76883833e40e9d21de Mon Sep 17 00:00:00 2001 From: "arcane-wizards-familiar[bot]" <276715144+arcane-wizards-familiar[bot]@users.noreply.github.com> Date: Sat, 25 Apr 2026 15:16:48 +0000 Subject: [PATCH] Version Packages --- .changeset/better-jokes-camp.md | 5 --- .changeset/dry-cars-accept.md | 9 ----- .changeset/fast-bears-sin.md | 5 --- .changeset/lazy-chefs-swim.md | 10 ------ .changeset/silent-bananas-move.md | 12 ------- .changeset/silly-jars-fix.md | 14 -------- .changeset/sixty-clocks-lie.md | 10 ------ apps/timecode-toolbox-desktop/package.json | 2 +- apps/timecode-toolbox/CHANGELOG.md | 39 ++++++++++++++++++++++ apps/timecode-toolbox/package.json | 2 +- packages/artnet/CHANGELOG.md | 10 ++++++ packages/artnet/package.json | 2 +- packages/sigil/CHANGELOG.md | 6 ++++ packages/sigil/package.json | 2 +- 14 files changed, 59 insertions(+), 69 deletions(-) delete mode 100644 .changeset/better-jokes-camp.md delete mode 100644 .changeset/dry-cars-accept.md delete mode 100644 .changeset/fast-bears-sin.md delete mode 100644 .changeset/lazy-chefs-swim.md delete mode 100644 .changeset/silent-bananas-move.md delete mode 100644 .changeset/silly-jars-fix.md delete mode 100644 .changeset/sixty-clocks-lie.md diff --git a/.changeset/better-jokes-camp.md b/.changeset/better-jokes-camp.md deleted file mode 100644 index 1f23dcc..0000000 --- a/.changeset/better-jokes-camp.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@arcanewizards/timecode-toolbox': patch ---- - -Correct some input/output mis-labelling diff --git a/.changeset/dry-cars-accept.md b/.changeset/dry-cars-accept.md deleted file mode 100644 index 3bb67ef..0000000 --- a/.changeset/dry-cars-accept.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@arcanewizards/artnet': patch ---- - -Return nextFrameTimeMillis when sending frames - -Make it possible for clients to more accurately time sending of artnet packets -and avoid frame drift by returning information on when the next frame send -should be. diff --git a/.changeset/fast-bears-sin.md b/.changeset/fast-bears-sin.md deleted file mode 100644 index e952320..0000000 --- a/.changeset/fast-bears-sin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@arcanewizards/sigil': patch ---- - -Allow using hint with sigilColorUsage diff --git a/.changeset/lazy-chefs-swim.md b/.changeset/lazy-chefs-swim.md deleted file mode 100644 index 6018a89..0000000 --- a/.changeset/lazy-chefs-swim.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@arcanewizards/timecode-toolbox': patch ---- - -Make it more obvious when output/input is paused/disabled - -Replace the timecode display with a pause icon when an input/output is disabled, -making it very clear when a timecode won't be sending/receiving a signal. - -Fixes #31 diff --git a/.changeset/silent-bananas-move.md b/.changeset/silent-bananas-move.md deleted file mode 100644 index 7175f1c..0000000 --- a/.changeset/silent-bananas-move.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@arcanewizards/timecode-toolbox': patch ---- - -Clearly display when an output is linked to something - -Previously, it wasn't obvious when an output was connected to an input or -generator, and which input or generator was linked. - -This is now prominently displayed underneath the output type & name. - -Fixes #55 diff --git a/.changeset/silly-jars-fix.md b/.changeset/silly-jars-fix.md deleted file mode 100644 index 946c27a..0000000 --- a/.changeset/silly-jars-fix.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'@arcanewizards/timecode-toolbox': patch ---- - -Fix Art-Net Drift - -The previous implementation of our artnet timecode broadcast would regularly be -out by about 1 frame, due to us not timing sending of the packets appropriately, -and rounding down to the nearest frame when converting millisecond timecodes -to frame timecodes. - -We now schedule appropriate timeouts based on when the next frame starts. - -Fixes #30 diff --git a/.changeset/sixty-clocks-lie.md b/.changeset/sixty-clocks-lie.md deleted file mode 100644 index de5db1c..0000000 --- a/.changeset/sixty-clocks-lie.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@arcanewizards/timecode-toolbox': patch ---- - -Display errors & warnings prominently - -Display any errors and warnings for inputs / outputs -(such as network / connectivity issues) - -Fixes #59 diff --git a/apps/timecode-toolbox-desktop/package.json b/apps/timecode-toolbox-desktop/package.json index 2637c16..fa35ff4 100644 --- a/apps/timecode-toolbox-desktop/package.json +++ b/apps/timecode-toolbox-desktop/package.json @@ -3,7 +3,7 @@ "productName": "Timecode Toolbox Desktop", "description": "Monitor, generate and convert timecodes easily", "author": "Arcane Wizards Ltd.", - "version": "0.1.4", + "version": "0.1.5", "private": true, "main": "dist/main.js", "repository": { diff --git a/apps/timecode-toolbox/CHANGELOG.md b/apps/timecode-toolbox/CHANGELOG.md index f001880..75ccc20 100644 --- a/apps/timecode-toolbox/CHANGELOG.md +++ b/apps/timecode-toolbox/CHANGELOG.md @@ -1,5 +1,44 @@ # @arcanewizards/timecode-toolbox +## 0.1.5 + +### Patch Changes + +- 858eb09: Correct some input/output mis-labelling +- 4fdb9d6: Make it more obvious when output/input is paused/disabled + + Replace the timecode display with a pause icon when an input/output is disabled, + making it very clear when a timecode won't be sending/receiving a signal. + + Fixes #31 + +- 858eb09: Clearly display when an output is linked to something + + Previously, it wasn't obvious when an output was connected to an input or + generator, and which input or generator was linked. + + This is now prominently displayed underneath the output type & name. + + Fixes #55 + +- 6d025db: Fix Art-Net Drift + + The previous implementation of our artnet timecode broadcast would regularly be + out by about 1 frame, due to us not timing sending of the packets appropriately, + and rounding down to the nearest frame when converting millisecond timecodes + to frame timecodes. + + We now schedule appropriate timeouts based on when the next frame starts. + + Fixes #30 + +- e342d52: Display errors & warnings prominently + + Display any errors and warnings for inputs / outputs + (such as network / connectivity issues) + + Fixes #59 + ## 0.1.4 ### Patch Changes diff --git a/apps/timecode-toolbox/package.json b/apps/timecode-toolbox/package.json index ead1966..7f2eda8 100644 --- a/apps/timecode-toolbox/package.json +++ b/apps/timecode-toolbox/package.json @@ -1,6 +1,6 @@ { "name": "@arcanewizards/timecode-toolbox", - "version": "0.1.4", + "version": "0.1.5", "private": false, "license": "MIT", "repository": { diff --git a/packages/artnet/CHANGELOG.md b/packages/artnet/CHANGELOG.md index 6b44dba..433be36 100644 --- a/packages/artnet/CHANGELOG.md +++ b/packages/artnet/CHANGELOG.md @@ -1,5 +1,15 @@ # @arcanewizards/artnet +## 0.1.4 + +### Patch Changes + +- 6d025db: Return nextFrameTimeMillis when sending frames + + Make it possible for clients to more accurately time sending of artnet packets + and avoid frame drift by returning information on when the next frame send + should be. + ## 0.1.3 ### Patch Changes diff --git a/packages/artnet/package.json b/packages/artnet/package.json index a8f820a..1fae4a2 100644 --- a/packages/artnet/package.json +++ b/packages/artnet/package.json @@ -1,6 +1,6 @@ { "name": "@arcanewizards/artnet", - "version": "0.1.3", + "version": "0.1.4", "private": false, "license": "MIT", "type": "module", diff --git a/packages/sigil/CHANGELOG.md b/packages/sigil/CHANGELOG.md index 77a99f2..d63de58 100644 --- a/packages/sigil/CHANGELOG.md +++ b/packages/sigil/CHANGELOG.md @@ -1,5 +1,11 @@ # @arcanewizards/sigil +## 0.1.7 + +### Patch Changes + +- 858eb09: Allow using hint with sigilColorUsage + ## 0.1.6 ### Patch Changes diff --git a/packages/sigil/package.json b/packages/sigil/package.json index f145501..5c794f5 100644 --- a/packages/sigil/package.json +++ b/packages/sigil/package.json @@ -1,7 +1,7 @@ { "name": "@arcanewizards/sigil", "description": "Application framework for A/V applications, built on-top of arcanejs", - "version": "0.1.6", + "version": "0.1.7", "private": false, "license": "MIT", "type": "module",