Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/better-jokes-camp.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/dry-cars-accept.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fast-bears-sin.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/lazy-chefs-swim.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/silent-bananas-move.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/silly-jars-fix.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/sixty-clocks-lie.md

This file was deleted.

2 changes: 1 addition & 1 deletion apps/timecode-toolbox-desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
39 changes: 39 additions & 0 deletions apps/timecode-toolbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/timecode-toolbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arcanewizards/timecode-toolbox",
"version": "0.1.4",
"version": "0.1.5",
"private": false,
"license": "MIT",
"repository": {
Expand Down
10 changes: 10 additions & 0 deletions packages/artnet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/artnet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arcanewizards/artnet",
"version": "0.1.3",
"version": "0.1.4",
"private": false,
"license": "MIT",
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions packages/sigil/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @arcanewizards/sigil

## 0.1.7

### Patch Changes

- 858eb09: Allow using hint with sigilColorUsage

## 0.1.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sigil/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading