Viewing Flatpak Info: π Warehouse can display all the information provided by the Flatpak list
command in a user-friendly graphical window. Each item includes a button for easy copying.
Change Package Versions: βοΈ Rollback any unwanted updates of any package, so long as the remote has older versions.
Managing User Data: ποΈ Flatpaks store user data in a specific system location, often left behind when an app is uninstalled. Warehouse can uninstall an app and delete its data, delete data without uninstalling, or simply show if an app has user data.
Batch Actions: β‘ Warehouse features a batch mode for swift uninstallations, user data deletions, and app ID copying in bulk.
Leftover Data Management: π Warehouse scans the user data folder to check for installed apps associated with the data. If none are found, it can delete the data or attempt to install a matching Flatpak.
Manage Remotes: π¦ Installed and enabled Flatpak remotes can be deleted, and new remotes can be added.
Make Snapshots: π Copy app user data to take quick backups before doing anything risky with your data.
Warehouse is now available on Flathub! Visit your software store and search for Warehouse, or click this badge.
CODE_OF_CONDUCT.md
for more information.~/.var/app
.io.github.flattool.Warehouse.Flatpak
.flatpak install /path/to/io.github.flattool.Warehouse.flatpak
Youβre all set! Launch the application by clicking its icon in your app menu or running:
flatpak run io.github.flattool.Warehouse
Make sure flatpak
and git
are installed, then run the following to build from the repo:
# Clone this repo and enter it
git clone https://github.com/flattool/warehouse
cd warehouse
# Install build dependencies
flatpak install org.flatpak.Builder org.gnome.Sdk//47 org.gnome.Platform//47 -y
# Build and install Warehouse
flatpak run org.flatpak.Builder _build ./build-aux/io.github.flattool.Warehouse.json --install --user --force-clean
# Run Warehouse
flatpak run io.github.flattool.Warehouse//master
Warehouse uses pre-commit for code formatting.
pip install pre-commit
pre-commit install
in the Warehouse repository root to set up pre-commit for this repo.pre-commit run --all-files
to format all files in the repository.If you run into a situation where pre-commit is broken, you can use git commit --no-verfiy
to skip the pre-commit checks.