diff --git a/Cargo.lock b/Cargo.lock index 62755bf..34eaa57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1534,18 +1534,6 @@ name = "unicode-xid" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "universal-piano-roll" -version = "0.1.0" -dependencies = [ - "cpal 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_more 0.99.7 (registry+https://github.com/rust-lang/crates.io-index)", - "druid 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "generational-arena 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "meval 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "nalgebra 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "version_check" version = "0.9.2" @@ -1641,6 +1629,18 @@ dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "xenharmonic-piano-roll" +version = "0.1.0" +dependencies = [ + "cpal 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.99.7 (registry+https://github.com/rust-lang/crates.io-index)", + "druid 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "generational-arena 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "meval 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "nalgebra 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "xi-unicode" version = "0.2.0" diff --git a/Cargo.toml b/Cargo.toml index a25f0fe..eee0adc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "universal-piano-roll" +name = "xenharmonic-piano-roll" version = "0.1.0" authors = ["Azorlogh "] edition = "2018" diff --git a/src/main.rs b/src/main.rs index a15802f..c363e94 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,7 +24,7 @@ fn main() -> Result<(), Box> { to_server.send(server::Event::SetTempo(state.sheet_editor.tempo)).unwrap(); let main_window = WindowDesc::new(|| ui::build()) - .title(LocalizedString::new("Universal Piano Roll")) + .title(LocalizedString::new("Xenharmonic Piano Roll")) .window_size(Size::new(800.0, 500.0)); let delegate = Delegate { to_server };