mirror of
https://github.com/morgan9e/warehouse
synced 2026-04-15 00:34:42 +09:00
Change wording
Change any mention of orphaned user data to leftover user data Edit app metainfo
This commit is contained in:
@@ -6,19 +6,18 @@
|
|||||||
<developer_name translatable="no">Heliguy</developer_name>
|
<developer_name translatable="no">Heliguy</developer_name>
|
||||||
<metadata_license>CC0-1.0</metadata_license>
|
<metadata_license>CC0-1.0</metadata_license>
|
||||||
<project_license>GPL-3.0-only</project_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'>
|
<description translatable='yes'>
|
||||||
<p>Warehouse is a simple app that can manage installed Flatpaks, Flatpak user data, and Flaptak remotes.</p>
|
<p>Warehouse is an app that manages installed Flatpaks, their user data, and Flaptak remotes.</p>
|
||||||
<p>Warehouse features the following capabilities:</p>
|
<p>Features:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Show and filter the list of installed Flatpaks</li>
|
<li>Show and filter the list of installed Flatpaks</li>
|
||||||
<li>Display properties of installed Flatpaks</li>
|
<li>Display properties of installed Flatpaks</li>
|
||||||
<li>Manage large groups of Flatpaks at once</li>
|
<li>Manage large groups of Flatpaks at once</li>
|
||||||
<li>Add and remove Flatpak remotes</li>
|
<li>Add and remove Flatpak remotes</li>
|
||||||
<li>Find and trash orphaned user data</li>
|
<li>Find and trash leftover user data</li>
|
||||||
<li>Reinstall apps that match orphaned user data</li>
|
<li>Reinstall apps that have leftover data</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Warehouse is made with Libadwaita and GTK4 in Python</p>
|
|
||||||
</description>
|
</description>
|
||||||
<recommends>
|
<recommends>
|
||||||
<control>keyboard</control>
|
<control>keyboard</control>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
project('warehouse',
|
project('warehouse',
|
||||||
version: '1.0.0',
|
version: '1.1.0',
|
||||||
meson_version: '>= 0.62.0',
|
meson_version: '>= 0.62.0',
|
||||||
default_options: [ 'warning_level=2', 'werror=false', ],
|
default_options: [ 'warning_level=2', 'werror=false', ],
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ ShortcutsWindow help_overlay {
|
|||||||
title: C_("shortcut window", "More Functions");
|
title: C_("shortcut window", "More Functions");
|
||||||
|
|
||||||
ShortcutsShortcut {
|
ShortcutsShortcut {
|
||||||
title: C_("shortcut window", "Manage Orphaned Data");
|
title: C_("shortcut window", "Manage Leftover Data");
|
||||||
action-name: "app.manage-data-folders";
|
action-name: "app.manage-data-folders";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ class WarehouseApplication(Adw.Application):
|
|||||||
application_name="Warehouse",
|
application_name="Warehouse",
|
||||||
application_icon="io.github.flattool.Warehouse",
|
application_icon="io.github.flattool.Warehouse",
|
||||||
developer_name="Heliguy",
|
developer_name="Heliguy",
|
||||||
version="1.0.0",
|
version="1.1.0",
|
||||||
developers=["Heliguy https://github.com/heliguy4599", "kramo https://kramo.hu"],
|
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"],
|
artists=["Heliguy https://github.com/heliguy4599", "kramo https://kramo.hu", "eryn https://github.com/hericiumvevo"],
|
||||||
copyright='© 2023 The Files Authors',
|
copyright='© 2023 The Files Authors',
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ menu primary_menu {
|
|||||||
section {
|
section {
|
||||||
|
|
||||||
item {
|
item {
|
||||||
label: _("Manage Orphaned Data");
|
label: _("Manage Leftover Data");
|
||||||
action: "app.manage-data-folders";
|
action: "app.manage-data-folders";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user