-
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
25 changed files
with
2,051 additions
and
1,268 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. |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# earwurm | ||
# Earwurm Changelog | ||
|
||
## 0.5.2 | ||
|
||
|
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,9 @@ | ||
# Earwurm migration guide | ||
|
||
## 0.6.0 | ||
|
||
For more details on the released changes, please see [🐛 Various bug fixes](https://github.com/beefchimi/earwurm/pull/50). | ||
|
||
- Rename all instances of `statechange` to `state`. | ||
- Example: `manager.on('statechange', () => {})` | ||
- Replace any instances of `LibraryKeys` with the equivalent `StackIds[]`. |
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
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
Oops, something went wrong.