From ebcc3e72c2ecbeb7b1abe097f6a66f893f82ff6a Mon Sep 17 00:00:00 2001 From: wheaney <42350981+wheaney@users.noreply.github.com> Date: Wed, 12 Mar 2025 12:49:49 -0700 Subject: [PATCH] Remove checks for gstreamer on setup, v2.0.13 --- VERSION | 2 +- gnome/bin/setup | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/VERSION b/VERSION index 3bad788..476ede4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.12 \ No newline at end of file +2.0.13 \ No newline at end of file diff --git a/gnome/bin/setup b/gnome/bin/setup index 8d9c69e..fbdf270 100755 --- a/gnome/bin/setup +++ b/gnome/bin/setup @@ -29,22 +29,6 @@ if ! { python3 -c "$PYTHON_GI_CHECK" 2>/dev/null || python -c "$PYTHON_GI_CHECK" exit 1 fi -if ! gst-inspect-1.0 &>/dev/null; then - echo "Please install the gstreamer package, and make sure it's available in your \$PATH, then rerun the setup." - echo "For Debian/Ubuntu: sudo apt install gstreamer1.0-tools gstreamer1.0-pipewire" - echo "For Fedora: sudo dnf install gstreamer1-plugins-base-tools gstreamer1-plugin-pipewire" - echo "For Arch Linux: sudo pacman -S gst-plugins-base gst-plugin-pipewire" - exit 1 -fi - -if ! gst-inspect-1.0 pipewiresrc &>/dev/null; then - echo "Please install the gst-plugin-pipewire package, and make sure it's available in your \$PATH, then rerun the setup." - echo "For Debian/Ubuntu: sudo apt install gstreamer1.0-pipewire" - echo "For Fedora: sudo dnf install gstreamer1-plugin-pipewire" - echo "For Arch Linux: sudo pacman -S gst-plugin-pipewire" - exit 1 -fi - if [ "$XDG_SESSION_TYPE" != "wayland" ]; then printf "\033[1;33mWARNING:\033[0m Windowing system is %s\n" "$XDG_SESSION_TYPE" printf "\033[1;33mWARNING:\033[0m Virtual display functionality requires GNOME on Wayland\n"