warehouse

πŸ› οΈ Warehouse

Image banner in the style of GNOME art showing a box truck, tower crane, and storage garage sat on and next to a road.

Warehouse is a versatile toolbox and provides a simple UI to control complex Flatpak options, all without resorting to the command line.

πŸš€ Main Features:

  1. 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.

  2. Change Package Versions: ↕️ Rollback any unwanted updates of any package, so long as the remote has older versions.

  3. 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.

  4. Batch Actions: ⚑ Warehouse features a batch mode for swift uninstallations, user data deletions, and app ID copying in bulk.

  5. 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.

  6. Manage Remotes: πŸ“¦ Installed and enabled Flatpak remotes can be deleted, and new remotes can be added.

  7. Make Snapshots: πŸ• Copy app user data to take quick backups before doing anything risky with your data.

⏬ Installation:

Warehouse is now available on Flathub! Visit your software store and search for Warehouse, or click this badge.

Download on Flathub

πŸ—£οΈ Translation

Translation status

πŸ’¬ Get in Contact

πŸ“œ Code of Conduct

ℹ️ Important Notes:

πŸ› οΈ Installation from Repo Steps:

  1. Visit the releases page and download io.github.flattool.Warehouse.Flatpak.
  2. Install it using your software store or run the following command:
    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
    

πŸ‘₯ Contributing

Compiling from Source

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

Formatting

Warehouse uses pre-commit for code formatting.

If you run into a situation where pre-commit is broken, you can use git commit --no-verfiy to skip the pre-commit checks.