From 8b044f33323c1208086dda27b1bb1a70ab5414dd Mon Sep 17 00:00:00 2001 From: "Ward Nakchbandi (Cosmic Fusion)" Date: Sat, 1 Jul 2023 02:27:03 +0300 Subject: [PATCH] initial release --- Cargo.toml | 2 +- debian/changelog | 2 +- src/main.rs | 6 ++++-- src/style.css | 7 ------- 4 files changed, 6 insertions(+), 11 deletions(-) delete mode 100644 src/style.css diff --git a/Cargo.toml b/Cargo.toml index 260b776..556d330 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pika-drivers" -version = "0.1.2" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/debian/changelog b/debian/changelog index d5dc79e..00cdb1a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -pika-drivers (0.1.2-99pika1.lunar) lunar; urgency=medium +pika-drivers (0.2.0-99pika1.lunar) lunar; urgency=medium * initial release diff --git a/src/main.rs b/src/main.rs index 78e479a..7afb97b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -261,7 +261,7 @@ fn build_ui(app: &Application) { .build(); let credits_label = gtk::Label::builder() - .label("Pika Drivers") + .label("Pika Drivers\nMade by: Cosmo") .margin_top(12) .margin_bottom(12) .margin_start(12) @@ -273,14 +273,16 @@ fn build_ui(app: &Application) { .margin_bottom(12) .margin_start(12) .margin_end(12) - .label_align(Align::Center) .build(); + credits_frame.set_label_align(0.5); + credits_frame.set_label(Some(PROJECT_VERSION)); let credits_window = gtk::Window::builder() .child(&credits_window_box) .transient_for(&window) + .resizable(false) .build(); credits_window_box.append(&credits_icon); diff --git a/src/style.css b/src/style.css deleted file mode 100644 index 691218e..0000000 --- a/src/style.css +++ /dev/null @@ -1,7 +0,0 @@ -.midLabel { - font-size: 14px; -} - -.startLabel { - font-size: 14px; -}