initial release

This commit is contained in:
Ward Nakchbandi (Cosmic Fusion) 2023-07-01 02:27:03 +03:00
parent 0c69371374
commit 8b044f3332
4 changed files with 6 additions and 11 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pika-drivers" name = "pika-drivers"
version = "0.1.2" version = "0.2.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

2
debian/changelog vendored
View File

@ -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 * initial release

View File

@ -261,7 +261,7 @@ fn build_ui(app: &Application) {
.build(); .build();
let credits_label = gtk::Label::builder() let credits_label = gtk::Label::builder()
.label("Pika Drivers") .label("Pika Drivers\nMade by: Cosmo")
.margin_top(12) .margin_top(12)
.margin_bottom(12) .margin_bottom(12)
.margin_start(12) .margin_start(12)
@ -273,14 +273,16 @@ fn build_ui(app: &Application) {
.margin_bottom(12) .margin_bottom(12)
.margin_start(12) .margin_start(12)
.margin_end(12) .margin_end(12)
.label_align(Align::Center)
.build(); .build();
credits_frame.set_label_align(0.5);
credits_frame.set_label(Some(PROJECT_VERSION)); credits_frame.set_label(Some(PROJECT_VERSION));
let credits_window = gtk::Window::builder() let credits_window = gtk::Window::builder()
.child(&credits_window_box) .child(&credits_window_box)
.transient_for(&window) .transient_for(&window)
.resizable(false)
.build(); .build();
credits_window_box.append(&credits_icon); credits_window_box.append(&credits_icon);

View File

@ -1,7 +0,0 @@
.midLabel {
font-size: 14px;
}
.startLabel {
font-size: 14px;
}