diff --git a/burrow-gtk/README.md b/burrow-gtk/README.md index 93c1d95..130bae1 100644 --- a/burrow-gtk/README.md +++ b/burrow-gtk/README.md @@ -1,3 +1,3 @@ -# burrow-gtk +# Burrow (GTK) A description of this project. diff --git a/burrow-gtk/com.hackclub.Burrow.json b/burrow-gtk/com.hackclub.burrow.json similarity index 96% rename from burrow-gtk/com.hackclub.Burrow.json rename to burrow-gtk/com.hackclub.burrow.json index 081096b..900d378 100644 --- a/burrow-gtk/com.hackclub.Burrow.json +++ b/burrow-gtk/com.hackclub.burrow.json @@ -1,5 +1,5 @@ { - "app-id" : "com.hackclub.Burrow", + "app-id" : "com.hackclub.burrow", "runtime" : "org.gnome.Platform", "runtime-version" : "44", "sdk" : "org.gnome.Sdk", diff --git a/burrow-gtk/src/application.rs b/burrow-gtk/src/application.rs index f511bae..6db828c 100644 --- a/burrow-gtk/src/application.rs +++ b/burrow-gtk/src/application.rs @@ -79,8 +79,8 @@ impl BurrowGtkApplication { let window = self.active_window().unwrap(); let about = adw::AboutWindow::builder() .transient_for(&window) - .application_name("burrow-gtk") - .application_icon("com.hackclub.Burrow") + .application_name("Burrow") + .application_icon("com.hackclub.burrow") .developer_name("Hack Club") .version(VERSION) .developers(vec!["Hack Club"]) diff --git a/burrow-gtk/src/burrow-gtk.gresource.xml b/burrow-gtk/src/burrow-gtk.gresource.xml index 23a5a82..7a7357e 100644 --- a/burrow-gtk/src/burrow-gtk.gresource.xml +++ b/burrow-gtk/src/burrow-gtk.gresource.xml @@ -1,7 +1,8 @@ - + window.ui gtk/help-overlay.ui + diff --git a/burrow-gtk/src/main.rs b/burrow-gtk/src/main.rs index 6ccd23b..85acd15 100644 --- a/burrow-gtk/src/main.rs +++ b/burrow-gtk/src/main.rs @@ -25,7 +25,7 @@ fn main() -> glib::ExitCode { // Create a new GtkApplication. The application manages our main loop, // application windows, integration with the window manager/compositor, and // desktop features such as file opening and single-instance applications. - let app = BurrowGtkApplication::new("com.hackclub.Burrow", &gio::ApplicationFlags::empty()); + let app = BurrowGtkApplication::new("com.hackclub.burrow", &gio::ApplicationFlags::empty()); // Run the application. This function will block until the application // exits. Upon return, we have our exit code to return to the shell. (This diff --git a/burrow-gtk/src/window.blp b/burrow-gtk/src/window.blp index 6f3534a..74f662d 100644 --- a/burrow-gtk/src/window.blp +++ b/burrow-gtk/src/window.blp @@ -41,7 +41,7 @@ menu primary_menu { } item { - label: _("_About Burrow-gtk"); + label: _("_About Burrow"); action: "app.about"; } } diff --git a/burrow-gtk/src/window.rs b/burrow-gtk/src/window.rs index 4a51ef0..81037ab 100644 --- a/burrow-gtk/src/window.rs +++ b/burrow-gtk/src/window.rs @@ -6,7 +6,7 @@ mod imp { use super::*; #[derive(Debug, Default, gtk::CompositeTemplate)] - #[template(resource = "/com/hackclub/Burrow/window.ui")] + #[template(resource = "/com/hackclub/burrow/window.ui")] pub struct BurrowGtkWindow { // Template widgets #[template_child]