-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from subalterngames/play_state
Reduced CPU usage
- Loading branch information
Showing
61 changed files
with
1,357 additions
and
1,615 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
members = ["audio", "common", "input", "io", "render", "text"] | ||
|
||
[workspace.package] | ||
version = "0.1.4" | ||
version = "0.2.0" | ||
authors = ["Esther Alter <[email protected]>"] | ||
description = "A minimalist and ergonomic MIDI sequencer" | ||
documentation = "https://github.com/subalterngames/cacophony" | ||
|
@@ -13,7 +13,6 @@ serde_json = "1.0" | |
rust-ini = "0.18" | ||
directories = "5.0.1" | ||
midir = "0.9.1" | ||
crossbeam-channel = "0.5.8" | ||
csv = "1.2.1" | ||
cpal = "0.13.1" | ||
hound = "3.5.0" | ||
|
@@ -70,8 +69,8 @@ features = [] | |
[workspace.dependencies.oxisynth] | ||
version = "0.0.3" | ||
features = [] | ||
git = "https://github.com/PolyMeilex/OxiSynth.git" | ||
branch = "master" | ||
git = "https://github.com/subalterngames/OxiSynth.git" | ||
branch = "midi_event_copy_clone" | ||
|
||
[workspace.dependencies.tts] | ||
version = "0.25.6" | ||
|
@@ -85,7 +84,7 @@ speech_dispatcher_0_9 = ["text/speech_dispatcher_0_9"] | |
|
||
[package] | ||
name = "cacophony" | ||
version = "0.1.4" | ||
version = "0.2.0" | ||
authors = ["Esther Alter <[email protected]>"] | ||
description = "A minimalist and ergonomic MIDI sequencer" | ||
documentation = "https://github.com/subalterngames/cacophony" | ||
|
@@ -121,7 +120,7 @@ path = "text" | |
name = "Cacophony" | ||
identifier = "com.subalterngames.cacophony" | ||
icon = ["icon/32.png", "icon/64.png", "icon/128.png", "icon/256.png"] | ||
version = "0.1.4" | ||
version = "0.2.0" | ||
resources = ["data/*"] | ||
copyright = "Copyright (c) Subaltern Games LLC 2023. All rights reserved." | ||
short_description = "A minimalist and ergonomic MIDI sequencer." | ||
|
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.