diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index 3b834c9a..da6cde7a 100644 --- a/.github/workflows/build-appimage.yml +++ b/.github/workflows/build-appimage.yml @@ -134,7 +134,8 @@ jobs: - name: Build FFmpeg working-directory: deps/FFmpeg run: | - ./configure --enable-pic --disable-static --enable-shared --disable-all --disable-autodetect --enable-avcodec --enable-avformat --enable-swscale \ + ./configure --enable-pic --enable-lto --disable-static --enable-shared --disable-all --disable-autodetect \ + --enable-avcodec --enable-avformat --enable-swscale \ --enable-decoder=h264 --enable-decoder=hevc --enable-decoder=av1 \ --enable-vaapi --enable-hwaccel=h264_vaapi --enable-hwaccel=hevc_vaapi --enable-hwaccel=av1_vaapi \ --enable-vdpau --enable-hwaccel=h264_vdpau --enable-hwaccel=hevc_vdpau --enable-hwaccel=av1_vdpau \ diff --git a/setup-deps.ps1 b/setup-deps.ps1 index ea30e327..82ce7f85 100644 --- a/setup-deps.ps1 +++ b/setup-deps.ps1 @@ -4,7 +4,7 @@ $Organization = "moonlight-stream" $PrebuiltRepo = "moonlight-qt-deps" $TargetDir = Join-Path $PSScriptRoot "libs\windows" $Assets = @("windows-x64.zip", "windows-ARM64.zip") -$Tag = "v4.0.1" +$Tag = "v4.1" if (Test-Path $TargetDir) { Write-Host "Cleaning target directory..." -ForegroundColor Cyan diff --git a/setup-deps.py b/setup-deps.py index 58deb832..a044fe7b 100644 --- a/setup-deps.py +++ b/setup-deps.py @@ -7,7 +7,7 @@ import shutil ORGANIZATION = "moonlight-stream" PREBUILT_REPO = "moonlight-qt-deps" -TAG = "v4.0.1" +TAG = "v4.1" def get_platform_config(): system = platform.system()