diff --git a/Cargo.lock b/Cargo.lock index 0595382..cc03b0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1456,7 +1456,7 @@ dependencies = [ [[package]] name = "timeurs" -version = "0.1.0" +version = "1.0.0" dependencies = [ "async-channel", "gtk4", diff --git a/Cargo.toml b/Cargo.toml index 86f54f4..15f4151 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timeurs" -version = "0.1.0" +version = "1.0.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/main.rs b/src/main.rs index 8ad9661..5af0539 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,7 +11,7 @@ use state::{Cmd, State}; fn main() -> glib::ExitCode { // Create a new application let app = Application::builder() - .application_id("org.gtk_rs.HelloWorld2") + .application_id("org.gtk_rs.timeurs") .build(); let (send, rec) = mpsc::channel(); @@ -99,7 +99,7 @@ fn build_ui(app: &Application, cmd: Sender) { let window = ApplicationWindow::builder() .application(app) - .title("My GTK App") + .title("Timeu.rs") .child(&container) .build(); window.present();