diff --git a/.vscode/settings.json b/.vscode/settings.json index fd7516a6..9b1d545e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -74,7 +74,6 @@ "rustflags", "rustup", "scancode", - "sfload", "signum", "soundfont", "splitn", diff --git a/Cargo.lock b/Cargo.lock index 3b308e95..d1717689 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1047,7 +1047,7 @@ dependencies = [ [[package]] name = "fluid-xenth" -version = "0.4.0" +version = "0.5.0" dependencies = [ "hound", "oxisynth", diff --git a/fluid-xenth/Cargo.toml b/fluid-xenth/Cargo.toml index 033445e4..3777d3fd 100644 --- a/fluid-xenth/Cargo.toml +++ b/fluid-xenth/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluid-xenth" -version = "0.4.0" +version = "0.5.0" authors = ["Woyten "] description = "Stop making music with notes. Use pitches." repository = "https://github.com/Woyten/tune/tree/master/fluid-xenth" diff --git a/fluid-xenth/src/lib.rs b/fluid-xenth/src/lib.rs index a8a8fe69..a8f7a2ff 100644 --- a/fluid-xenth/src/lib.rs +++ b/fluid-xenth/src/lib.rs @@ -152,7 +152,7 @@ impl AotXenthControl { /// /// `fluid-xenth` will map the provided `xen_channel` to the internal real channels of the [`oxisynth::Synth`] instance. /// - /// Be aware that calling the "wrong" function (e.g. `sfload`) can put load on the audio thread! + /// Be aware that calling the "wrong" function (e.g. `add_font`) can put load on the audio thread! pub fn send_command( &mut self, xen_channel: u8, @@ -199,7 +199,7 @@ impl JitXenthControl { /// /// `fluid-xenth` will map the provided `xen_channel` to the internal real channels of the [`oxisynth::Synth`] instance. /// - /// Be aware that calling the "wrong" function (e.g. `sfload`) can put load on the audio thread! + /// Be aware that calling the "wrong" function (e.g. `add_font`) can put load on the audio thread! pub fn send_command( &mut self, xen_channel: u8, diff --git a/microwave/Cargo.toml b/microwave/Cargo.toml index 15bbc53d..ea89b2d9 100644 --- a/microwave/Cargo.toml +++ b/microwave/Cargo.toml @@ -19,7 +19,7 @@ async-std = { version = "1.10.0", features = ["unstable"] } chrono = "0.4.15" clap = { version = "3.0.6", features = ["derive", "env"] } cpal = "0.13.1" -fluid-xenth = { version = "0.4.0", path = "../fluid-xenth" } +fluid-xenth = { version = "0.5.0", path = "../fluid-xenth" } hound = "3.4.0" magnetron = { version = "0.1.0", path = "../magnetron" } midir = "0.8.0"