Change wording

Change any mention of orphaned user data to leftover user data
Edit app metainfo
This commit is contained in:
heliguy4599
2023-09-26 09:31:45 -04:00
parent 9de7b5e1e9
commit ba5dbf785e
5 changed files with 9 additions and 10 deletions

View File

@@ -6,19 +6,18 @@
<developer_name translatable="no">Heliguy</developer_name>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-only</project_license>
<summary translatable='yes'>Manage most things Flatpak</summary>
<summary translatable='yes'>Manage all things Flatpak</summary>
<description translatable='yes'>
<p>Warehouse is a simple app that can manage installed Flatpaks, Flatpak user data, and Flaptak remotes.</p>
<p>Warehouse features the following capabilities:</p>
<p>Warehouse is an app that manages installed Flatpaks, their user data, and Flaptak remotes.</p>
<p>Features:</p>
<ul>
<li>Show and filter the list of installed Flatpaks</li>
<li>Display properties of installed Flatpaks</li>
<li>Manage large groups of Flatpaks at once</li>
<li>Add and remove Flatpak remotes</li>
<li>Find and trash orphaned user data</li>
<li>Reinstall apps that match orphaned user data</li>
<li>Find and trash leftover user data</li>
<li>Reinstall apps that have leftover data</li>
</ul>
<p>Warehouse is made with Libadwaita and GTK4 in Python</p>
</description>
<recommends>
<control>keyboard</control>

View File

@@ -1,5 +1,5 @@
project('warehouse',
version: '1.0.0',
version: '1.1.0',
meson_version: '>= 0.62.0',
default_options: [ 'warning_level=2', 'werror=false', ],
)

View File

@@ -39,7 +39,7 @@ ShortcutsWindow help_overlay {
title: C_("shortcut window", "More Functions");
ShortcutsShortcut {
title: C_("shortcut window", "Manage Orphaned Data");
title: C_("shortcut window", "Manage Leftover Data");
action-name: "app.manage-data-folders";
}

View File

@@ -92,7 +92,7 @@ class WarehouseApplication(Adw.Application):
application_name="Warehouse",
application_icon="io.github.flattool.Warehouse",
developer_name="Heliguy",
version="1.0.0",
version="1.1.0",
developers=["Heliguy https://github.com/heliguy4599", "kramo https://kramo.hu"],
artists=["Heliguy https://github.com/heliguy4599", "kramo https://kramo.hu", "eryn https://github.com/hericiumvevo"],
copyright='© 2023 The Files Authors',

View File

@@ -112,7 +112,7 @@ menu primary_menu {
section {
item {
label: _("Manage Orphaned Data");
label: _("Manage Leftover Data");
action: "app.manage-data-folders";
}