├── .travis.yml ├── COPYING ├── README.md ├── meson.build ├── po ├── LINGUAS └── meson.build ├── snap-store.key.enc ├── snap └── snapcraft.yaml └── src ├── adjectives.txt ├── main.c ├── meson.build ├── mp-application.c ├── mp-application.h ├── mp-client.c ├── mp-client.h ├── mp-configured-instance-row.c ├── mp-configured-instance-row.h ├── mp-configured-instance-row.ui ├── mp-details-dialog.c ├── mp-details-dialog.h ├── mp-details-dialog.ui ├── mp-instance.c ├── mp-instance.h ├── mp-launch-dialog.c ├── mp-launch-dialog.h ├── mp-launch-dialog.ui ├── mp-resources.gresource.xml ├── mp-running-instance-row.c ├── mp-running-instance-row.h ├── mp-running-instance-row.ui ├── mp-window.c ├── mp-window.h ├── mp-window.ui ├── multipass-gui.desktop.in └── names.txt /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/README.md -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext ('multipass-gui', preset: 'glib') 2 | -------------------------------------------------------------------------------- /snap-store.key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/snap-store.key.enc -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/adjectives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/adjectives.txt -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/main.c -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/mp-application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-application.c -------------------------------------------------------------------------------- /src/mp-application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-application.h -------------------------------------------------------------------------------- /src/mp-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-client.c -------------------------------------------------------------------------------- /src/mp-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-client.h -------------------------------------------------------------------------------- /src/mp-configured-instance-row.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-configured-instance-row.c -------------------------------------------------------------------------------- /src/mp-configured-instance-row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-configured-instance-row.h -------------------------------------------------------------------------------- /src/mp-configured-instance-row.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-configured-instance-row.ui -------------------------------------------------------------------------------- /src/mp-details-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-details-dialog.c -------------------------------------------------------------------------------- /src/mp-details-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-details-dialog.h -------------------------------------------------------------------------------- /src/mp-details-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-details-dialog.ui -------------------------------------------------------------------------------- /src/mp-instance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-instance.c -------------------------------------------------------------------------------- /src/mp-instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-instance.h -------------------------------------------------------------------------------- /src/mp-launch-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-launch-dialog.c -------------------------------------------------------------------------------- /src/mp-launch-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-launch-dialog.h -------------------------------------------------------------------------------- /src/mp-launch-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-launch-dialog.ui -------------------------------------------------------------------------------- /src/mp-resources.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-resources.gresource.xml -------------------------------------------------------------------------------- /src/mp-running-instance-row.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-running-instance-row.c -------------------------------------------------------------------------------- /src/mp-running-instance-row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-running-instance-row.h -------------------------------------------------------------------------------- /src/mp-running-instance-row.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-running-instance-row.ui -------------------------------------------------------------------------------- /src/mp-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-window.c -------------------------------------------------------------------------------- /src/mp-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-window.h -------------------------------------------------------------------------------- /src/mp-window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/mp-window.ui -------------------------------------------------------------------------------- /src/multipass-gui.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/multipass-gui.desktop.in -------------------------------------------------------------------------------- /src/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-ancell/multipass-gui/HEAD/src/names.txt --------------------------------------------------------------------------------