-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
'earwurm': minor | ||
--- | ||
|
||
Fix issue "stopping" a `Sound` that was never "started". | ||
Include a `neverStarted: boolean;` property in the `SoundEndedEvent`. | ||
New `volume` change event for `Earwurm`, `Stack`, and `Sound`. | ||
New `mute` change event for `Earwurm`, `Stack`, and `Sound`. | ||
New `library` change event for `Earwurm`. | ||
New `queue` change event for `Stack`. | ||
New `speed` change event for `Sound`. | ||
`speed` Setter now clamps the value between `0.25` and `4`. | ||
New `progress` change event. | ||
New `progress` Getter. | ||
New `state > ending` value. | ||
Renamed all `statechange` events to `state`. | ||
No longer setting `mute = false` when "pausing". | ||
Avoid re-initializing an existing `Stack` when `.add()` is passed an identical `id + path`. | ||
Removed `LibraryKeys` type, instead using `StackIds[]` directly. | ||
Now exporting `tokens` object with some usual values. | ||
Updated `docs/api.md` to include details on all the newly added / changed code. |