Update naming & rename com.hackclub.Burrow to com.hackclub.burrow

This commit is contained in:
reesericci 2023-07-01 12:48:55 -05:00 committed by Conrad Kramer
parent 7363683a81
commit 9ad50b1496
7 changed files with 9 additions and 8 deletions

View file

@ -1,3 +1,3 @@
# burrow-gtk
# Burrow (GTK)
A description of this project.

View file

@ -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",

View file

@ -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"])

View file

@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/com/hackclub/Burrow">
<gresource prefix="/com/hackclub/burrow">
<file preprocess="xml-stripblanks">window.ui</file>
<file preprocess="xml-stripblanks">gtk/help-overlay.ui</file>
</gresource>
</gresources>

View file

@ -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

View file

@ -41,7 +41,7 @@ menu primary_menu {
}
item {
label: _("_About Burrow-gtk");
label: _("_About Burrow");
action: "app.about";
}
}

View file

@ -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]