mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 04:06:45 +01:00
merge tek_jack into tek_core
This commit is contained in:
parent
a659062dbc
commit
278b3caad3
23 changed files with 285 additions and 456 deletions
|
|
@ -5,7 +5,6 @@ version = "0.1.0"
|
|||
|
||||
[dependencies]
|
||||
tek_core = { path = "../tek_core" }
|
||||
tek_jack = { path = "../tek_jack" }
|
||||
|
||||
[lib]
|
||||
path = "src/lib.rs"
|
||||
|
|
|
|||
|
|
@ -27,12 +27,12 @@ impl Arranger {
|
|||
arr.transport = Some(Arc::new(RwLock::new(TransportToolbar::new(None))));
|
||||
}
|
||||
if let Some(tracks) = args.tracks {
|
||||
for track in 0..tracks {
|
||||
for _ in 0..tracks {
|
||||
arr.track_add(None)?;
|
||||
}
|
||||
}
|
||||
if let Some(scenes) = args.scenes {
|
||||
for scene in 0..scenes {
|
||||
for _ in 0..scenes {
|
||||
arr.scene_add(None)?;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ pub(crate) use tek_core::*;
|
|||
pub(crate) use tek_core::ratatui::prelude::*;
|
||||
pub(crate) use tek_core::crossterm::event::{KeyCode, KeyModifiers};
|
||||
pub(crate) use tek_core::midly::{num::u7, live::LiveEvent, MidiMessage};
|
||||
pub(crate) use tek_jack::{*, jack::*};
|
||||
pub(crate) use tek_core::jack::*;
|
||||
pub(crate) use std::sync::{Arc, RwLock};
|
||||
|
||||
submod! {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue