├── .github ├── pull_request_template.md └── workflows │ ├── auto-update.yml │ └── build.yml ├── .gitignore ├── README.md ├── patches ├── gnome-boxes-explain-usb-error.patch ├── gnome-boxes-recommended-downloads.patch ├── gnome-boxes-snap-user-common.patch ├── libspice-gtk-permissions-error-explain.patch ├── libvirt-CVE-2024-8235.patch └── libvirt-qemu.patch ├── scripts └── launcher.sh ├── snap └── snapcraft.yaml ├── ubuntu-22.04.xml └── ubuntu-daily.xml /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/auto-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/.github/workflows/auto-update.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.snap 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/README.md -------------------------------------------------------------------------------- /patches/gnome-boxes-explain-usb-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/patches/gnome-boxes-explain-usb-error.patch -------------------------------------------------------------------------------- /patches/gnome-boxes-recommended-downloads.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/patches/gnome-boxes-recommended-downloads.patch -------------------------------------------------------------------------------- /patches/gnome-boxes-snap-user-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/patches/gnome-boxes-snap-user-common.patch -------------------------------------------------------------------------------- /patches/libspice-gtk-permissions-error-explain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/patches/libspice-gtk-permissions-error-explain.patch -------------------------------------------------------------------------------- /patches/libvirt-CVE-2024-8235.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/patches/libvirt-CVE-2024-8235.patch -------------------------------------------------------------------------------- /patches/libvirt-qemu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/patches/libvirt-qemu.patch -------------------------------------------------------------------------------- /scripts/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/scripts/launcher.sh -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /ubuntu-22.04.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/ubuntu-22.04.xml -------------------------------------------------------------------------------- /ubuntu-daily.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-boxes/HEAD/ubuntu-daily.xml --------------------------------------------------------------------------------