diff --git a/data/io.github.heliguy4599.FlattoolGUI.desktop.in b/data/io.github.heliguy4599.FlattoolGUI.desktop.in index 1548b84..4317723 100644 --- a/data/io.github.heliguy4599.FlattoolGUI.desktop.in +++ b/data/io.github.heliguy4599.FlattoolGUI.desktop.in @@ -1,5 +1,5 @@ [Desktop Entry] -Name=Flattool +Name=Warehouse Exec=flattool-gui Icon=io.github.heliguy4599.FlattoolGUI Terminal=false diff --git a/meson.build b/meson.build index 34f9e84..9d6f219 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('flattool-gui', - version: '0.2.0', + version: '0.3.0', meson_version: '>= 0.62.0', default_options: [ 'warning_level=2', 'werror=false', ], ) diff --git a/src/main.py b/src/main.py index b24cf17..f5307af 100644 --- a/src/main.py +++ b/src/main.py @@ -88,12 +88,12 @@ class FlattoolGuiApplication(Adw.Application): def on_about_action(self, widget, _): """Callback for the app.about action.""" about = Adw.AboutWindow(transient_for=self.props.active_window, - application_name='Flattool', + application_name='Warehouse', application_icon='io.github.heliguy4599.FlattoolGUI', developer_name='Heliguy', - version='0.2.0', + version='0.3.0', developers=['Heliguy https://github.com/heliguy4599', 'kramo https://kramo.hu'], - artists=['Heliguy https://github.com/heliguy4599', 'eryn https://github.com/hericiumvevo'], + artists=['Heliguy https://github.com/heliguy4599', 'kramo https://kramo.hu', 'eryn https://github.com/hericiumvevo'], copyright='© 2023 The Files Authors\n\nThis application comes with absolutely no warranty. See the GNU General Public License, version 3 only for details.') about.present() diff --git a/src/window.blp b/src/window.blp index 469b4c6..87f00d3 100644 --- a/src/window.blp +++ b/src/window.blp @@ -127,7 +127,7 @@ menu primary_menu { } item { - label: _("_About Flattool-gui"); + label: _("_About Warehouse"); action: "app.about"; } } diff --git a/src/window.py b/src/window.py index ac7d4bb..76a5657 100644 --- a/src/window.py +++ b/src/window.py @@ -27,7 +27,7 @@ from .orphans_window import show_orphans_window @Gtk.Template(resource_path="/io/github/heliguy4599/FlattoolGUI/window.ui") class FlattoolGuiWindow(Adw.ApplicationWindow): __gtype_name__ = "FlattoolGuiWindow" - main_window_title = "Flattool" + main_window_title = "Warehouse" list_of_flatpaks = Gtk.Template.Child() search_entry = Gtk.Template.Child() search_button = Gtk.Template.Child()