prepare for initial release
This commit is contained in:
parent
04b7884854
commit
6a5de60f19
3 changed files with 4 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1456,7 +1456,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "timeurs"
|
name = "timeurs"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-channel",
|
"async-channel",
|
||||||
"gtk4",
|
"gtk4",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "timeurs"
|
name = "timeurs"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
|
@ -11,7 +11,7 @@ use state::{Cmd, State};
|
||||||
fn main() -> glib::ExitCode {
|
fn main() -> glib::ExitCode {
|
||||||
// Create a new application
|
// Create a new application
|
||||||
let app = Application::builder()
|
let app = Application::builder()
|
||||||
.application_id("org.gtk_rs.HelloWorld2")
|
.application_id("org.gtk_rs.timeurs")
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
let (send, rec) = mpsc::channel();
|
let (send, rec) = mpsc::channel();
|
||||||
|
@ -99,7 +99,7 @@ fn build_ui(app: &Application, cmd: Sender<Cmd>) {
|
||||||
|
|
||||||
let window = ApplicationWindow::builder()
|
let window = ApplicationWindow::builder()
|
||||||
.application(app)
|
.application(app)
|
||||||
.title("My GTK App")
|
.title("Timeu.rs")
|
||||||
.child(&container)
|
.child(&container)
|
||||||
.build();
|
.build();
|
||||||
window.present();
|
window.present();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue