diff --git a/Cargo.lock b/Cargo.lock index 0e8cd64..78df83e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -734,7 +734,7 @@ dependencies = [ [[package]] name = "loopers" -version = "0.1.2" +version = "0.2.0" dependencies = [ "bytes 0.4.12", "chrono", @@ -758,7 +758,7 @@ dependencies = [ [[package]] name = "loopers-common" -version = "0.1.2" +version = "0.2.0" dependencies = [ "arrayvec", "bytes 1.0.1", @@ -774,7 +774,7 @@ dependencies = [ [[package]] name = "loopers-engine" -version = "0.1.2" +version = "0.2.0" dependencies = [ "atomic", "bytes 1.0.1", @@ -800,7 +800,7 @@ dependencies = [ [[package]] name = "loopers-gui" -version = "0.1.2" +version = "0.2.0" dependencies = [ "bytes 1.0.1", "chrono", diff --git a/README.md b/README.md index 668ab7f..b58b87e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Loopers ![master status](https://github.com/mwylde/loopers/workflows/Rust/badge.svg?branch=master) -[![Crate](https://img.shields.io/crates/v/loopers-jack.svg)](https://crates.io/crates/loopers-jack) +[![Crate](https://img.shields.io/crates/v/loopers.svg)](https://crates.io/crates/loopers) Loopers is a graphical [live looper](http://www.livelooping.org/), written in Rust, designed for ease of use and rock-solid stability. It diff --git a/loopers-common/Cargo.toml b/loopers-common/Cargo.toml index b5b153c..69fc4d4 100644 --- a/loopers-common/Cargo.toml +++ b/loopers-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loopers-common" -version = "0.1.2" +version = "0.2.0" edition = "2018" authors = ["Micah Wylde "] description = "Common code for loopers project. See loopers-jack for for the main project." diff --git a/loopers-engine/Cargo.toml b/loopers-engine/Cargo.toml index edf5c87..ac70f4e 100644 --- a/loopers-engine/Cargo.toml +++ b/loopers-engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loopers-engine" -version = "0.1.2" +version = "0.2.0" edition = "2018" authors = ["Micah Wylde "] description = "Core engine for loopers project. See loopers-jack for for the main project." @@ -27,7 +27,7 @@ itertools = "0.10" [dependencies.loopers-common] path = "../loopers-common" -version = "0.1.2" +version = "^0.2.0" [dev-dependencies] tempfile = "3.1.0" diff --git a/loopers-gui/Cargo.toml b/loopers-gui/Cargo.toml index 79ff7be..27f780b 100644 --- a/loopers-gui/Cargo.toml +++ b/loopers-gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loopers-gui" -version = "0.1.2" +version = "0.2.0" edition = "2018" authors = ["Micah Wylde "] description = "Gui for loopers project. See loopers-jack for for the main project." @@ -31,4 +31,4 @@ crossbeam-channel = "0.5" [dependencies.loopers-common] path = "../loopers-common" -version = "0.1.2" +version = "^0.2.0" diff --git a/loopers/Cargo.toml b/loopers/Cargo.toml index 3309447..a2bdf20 100644 --- a/loopers/Cargo.toml +++ b/loopers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loopers" -version = "0.1.2" +version = "0.2.0" authors = ["Micah Wylde "] description = "Loopers is graphical live looper, designed for ease of use and rock-solid stability" homepage = "https://github.com/mwylde/loopers" @@ -35,15 +35,15 @@ coreaudio-rs = {version = "0.10.0"} [dependencies.loopers-common] path = "../loopers-common" -version = "0.1.2" +version = "^0.2.0" [dependencies.loopers-engine] path = "../loopers-engine" -version = "0.1.2" +version = "^0.2.0" [dependencies.loopers-gui] path = "../loopers-gui" -version = "0.1.2" +version = "^0.2.0" [features] fail-on-warnings = [] diff --git a/loopers/src/loopers_jack.rs b/loopers/src/loopers_jack.rs index cdb7e78..c582cd9 100644 --- a/loopers/src/loopers_jack.rs +++ b/loopers/src/loopers_jack.rs @@ -147,16 +147,6 @@ impl jack::NotificationHandler for Notifications { warn!("JACK: xrun occurred"); jack::Control::Continue } - - fn latency(&mut self, _: &jack::Client, mode: jack::LatencyType) { - info!( - "JACK: {} latency has changed", - match mode { - jack::LatencyType::Capture => "capture", - jack::LatencyType::Playback => "playback", - } - ); - } } pub fn jack_main(gui: Option,