diff --git a/apps/OBS Studio/credits b/apps/OBS Studio/credits index 7cb06f368d..3460872914 100644 --- a/apps/OBS Studio/credits +++ b/apps/OBS Studio/credits @@ -1 +1 @@ -Install script made by Botspot and RPICoder :) +theofficialgman diff --git a/apps/OBS Studio/description b/apps/OBS Studio/description index 676e0ced5b..e0336939e6 100644 --- a/apps/OBS Studio/description +++ b/apps/OBS Studio/description @@ -1,8 +1,9 @@ Free and open source software for video recording and live streaming. Available Versions: -ARM32/ARM64 - Debian Bookworm: 30.0.0 -ARM64 - Ubuntu Jammy: 30.0.0 +ARM32/ARM64 - Debian Bookworm: 30.1.2 +ARM64 - Ubuntu Noble: 30.1.2 +ARM64 - Ubuntu Jammy: 30.1.2 ARM32/ARM64 - Debian Bullseye: 29.1.3 ARM64 - Ubuntu Focal: 29.1.3 ARM64 - Ubuntu Bionic: 28.1.2 diff --git a/apps/OBS Studio/install-32 b/apps/OBS Studio/install-32 index 3911e18049..81addd95b3 100755 --- a/apps/OBS Studio/install-32 +++ b/apps/OBS Studio/install-32 @@ -48,12 +48,12 @@ if [ "$__os_codename" == "bullseye" ]; then install_packages qt6-qpa-plugins https://github.com/Pi-Apps-Coders/files/releases/download/large-files/obs-studio-29.1.3-1-armhf-bullseye.deb || exit 1 elif [ "$__os_codename" == "bookworm" ]; then # install bookworm version - install_packages qt6-qpa-plugins https://github.com/Pi-Apps-Coders/files/releases/download/large-files/obs-studio-30.0.0-1-armhf-bookworm.deb || exit 1 + install_packages qt6-qpa-plugins https://github.com/Pi-Apps-Coders/files/releases/download/large-files/obs-studio-30.1.2-1-armhf-bookworm.deb || exit 1 else # note: bump this version to whatever the version of OBS-Studio we have precompiled debs for # if the distro version is equal or newer, prefer it to our debs # perform the package_is_new_enough check after purging obs-studio to prevent accidentally checking our own precompiled deb if it happens to still be installed - if package_is_new_enough obs-studio 30.0.0 ;then + if package_is_new_enough obs-studio 30.1.2 ;then install_packages obs-studio || exit 1 else error "User error: You are not using a supported Pi-Apps distribution and OBS Studio from your distribution was too old or not available." diff --git a/apps/OBS Studio/install-64 b/apps/OBS Studio/install-64 index d2141d92a5..35ed6c1685 100755 --- a/apps/OBS Studio/install-64 +++ b/apps/OBS Studio/install-64 @@ -50,15 +50,18 @@ elif [ "$__os_codename" == "focal" ]; then install_packages qt6-qpa-plugins https://github.com/Pi-Apps-Coders/files/releases/download/large-files/obs-studio-29.1.3-1-arm64-focal.deb || exit 1 elif [ "$__os_codename" == "jammy" ]; then # install jammy version - install_packages qt6-qpa-plugins https://github.com/Pi-Apps-Coders/files/releases/download/large-files/obs-studio-30.0.0-1-arm64-jammy.deb || exit 1 + install_packages qt6-qpa-plugins https://github.com/Pi-Apps-Coders/files/releases/download/large-files/obs-studio-30.1.2-1-arm64-jammy.deb || exit 1 +elif [ "$__os_codename" == "noble" ]; then + # install noble version + install_packages qt6-qpa-plugins https://github.com/Pi-Apps-Coders/files/releases/download/large-files/obs-studio-30.1.2-1-arm64-noble.deb || exit 1 elif [ "$__os_codename" == "bookworm" ]; then # install bookworm version - install_packages qt6-qpa-plugins https://github.com/Pi-Apps-Coders/files/releases/download/large-files/obs-studio-30.0.0-1-arm64-bookworm.deb || exit 1 + install_packages qt6-qpa-plugins https://github.com/Pi-Apps-Coders/files/releases/download/large-files/obs-studio-30.1.2-1-arm64-bookworm.deb || exit 1 else # note: bump this version to whatever the version of OBS-Studio we have precompiled debs for # if the distro version is equal or newer, prefer it to our debs # perform the package_is_new_enough check after purging obs-studio to prevent accidentally checking our own precompiled deb if it happens to still be installed - if package_is_new_enough obs-studio 30.0.0 ;then + if package_is_new_enough obs-studio 30.1.2 ;then install_packages obs-studio || exit 1 else error "User error: You are not using a supported Pi-Apps distribution and OBS Studio from your distribution was too old or not available."