├── .github └── workflows │ ├── build.yml │ └── check-dependencies.yml ├── .gitignore ├── README.md ├── SECURITY.md ├── patches ├── gdkglcontext-wayland-Fallback-to-GLES-2_0-after-GL-failed.patch ├── libcanberra │ ├── gtk-module-Handle-display-closing-gracefully.patch │ └── gtk_dont_assume_x11.patch ├── libffi-enable-building-on-riscv64.patch ├── libgweather.diff ├── meson-Fix-GJS.patch ├── style-manager-Support-Yaru-accent-colors.patch └── stylesheet-Add-wartybrown-accent-color.patch ├── snapcraft.yaml └── tools ├── bindtextdomain.c ├── check_dependencies.py └── strip_binaries.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/.github/workflows/check-dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.snap* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /patches/gdkglcontext-wayland-Fallback-to-GLES-2_0-after-GL-failed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/patches/gdkglcontext-wayland-Fallback-to-GLES-2_0-after-GL-failed.patch -------------------------------------------------------------------------------- /patches/libcanberra/gtk-module-Handle-display-closing-gracefully.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/patches/libcanberra/gtk-module-Handle-display-closing-gracefully.patch -------------------------------------------------------------------------------- /patches/libcanberra/gtk_dont_assume_x11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/patches/libcanberra/gtk_dont_assume_x11.patch -------------------------------------------------------------------------------- /patches/libffi-enable-building-on-riscv64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/patches/libffi-enable-building-on-riscv64.patch -------------------------------------------------------------------------------- /patches/libgweather.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/patches/libgweather.diff -------------------------------------------------------------------------------- /patches/meson-Fix-GJS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/patches/meson-Fix-GJS.patch -------------------------------------------------------------------------------- /patches/style-manager-Support-Yaru-accent-colors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/patches/style-manager-Support-Yaru-accent-colors.patch -------------------------------------------------------------------------------- /patches/stylesheet-Add-wartybrown-accent-color.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/patches/stylesheet-Add-wartybrown-accent-color.patch -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /tools/bindtextdomain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/tools/bindtextdomain.c -------------------------------------------------------------------------------- /tools/check_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/tools/check_dependencies.py -------------------------------------------------------------------------------- /tools/strip_binaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-sdk/HEAD/tools/strip_binaries.py --------------------------------------------------------------------------------