-
Notifications
You must be signed in to change notification settings - Fork 1
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
3 changed files
with
95 additions
and
17 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,12 @@ | ||
# Changelog | ||
|
||
## 0.2.0 | ||
|
||
* Add "Add", "Subtract", "Multiply" and "Non-Linear" modules | ||
* Add trigger-only pattern sequencer | ||
* Allow "slide" notes in sequencer | ||
* Create modules in center of screen instead of fixed location on workspace (#10) | ||
|
||
## 0.1.0 | ||
|
||
* Initial release |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "s-rack" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2021" | ||
repository = "https://github.com/sharph/s-rack" | ||
authors = ["Sharp Hall <[email protected]>"] | ||
|
@@ -33,7 +33,7 @@ rmp-serde = "1.3.0" | |
|
||
# native: | ||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
env_logger = "0.10" | ||
env_logger = "0.11.5" | ||
futures = "0.3.30" | ||
|
||
# web: | ||
|
@@ -42,7 +42,7 @@ wasm-bindgen-futures = "0.4" | |
|
||
# to access the DOM (to hide the loading text) | ||
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys] | ||
version = "0.3.4" | ||
version = "0.3.70" | ||
|
||
# The profile that 'cargo dist' will build with | ||
[profile.dist] | ||
|