Skip to content

Commit

Permalink
Merge pull request #18 from mwylde/0.2
Browse files Browse the repository at this point in the history
Release 0.2
  • Loading branch information
mwylde authored Nov 15, 2021
2 parents cf69387 + 6d6608c commit fd79848
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 24 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion loopers-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loopers-common"
version = "0.1.2"
version = "0.2.0"
edition = "2018"
authors = ["Micah Wylde <[email protected]>"]
description = "Common code for loopers project. See loopers-jack for for the main project."
Expand Down
4 changes: 2 additions & 2 deletions loopers-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loopers-engine"
version = "0.1.2"
version = "0.2.0"
edition = "2018"
authors = ["Micah Wylde <[email protected]>"]
description = "Core engine for loopers project. See loopers-jack for for the main project."
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions loopers-gui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loopers-gui"
version = "0.1.2"
version = "0.2.0"
edition = "2018"
authors = ["Micah Wylde <[email protected]>"]
description = "Gui for loopers project. See loopers-jack for for the main project."
Expand Down Expand Up @@ -31,4 +31,4 @@ crossbeam-channel = "0.5"

[dependencies.loopers-common]
path = "../loopers-common"
version = "0.1.2"
version = "^0.2.0"
8 changes: 4 additions & 4 deletions loopers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loopers"
version = "0.1.2"
version = "0.2.0"
authors = ["Micah Wylde <[email protected]>"]
description = "Loopers is graphical live looper, designed for ease of use and rock-solid stability"
homepage = "https://github.com/mwylde/loopers"
Expand Down Expand Up @@ -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 = []
10 changes: 0 additions & 10 deletions loopers/src/loopers_jack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Gui>,
Expand Down

0 comments on commit fd79848

Please sign in to comment.