diff --git a/.install/facefusion.nsi b/.install/facefusion.nsi index 5ade2103..e0d53a68 100644 --- a/.install/facefusion.nsi +++ b/.install/facefusion.nsi @@ -62,7 +62,7 @@ FunctionEnd Section 'Prepare Your Platform' DetailPrint 'Install GIT' - inetc::get 'https://github.com/git-for-windows/git/releases/download/v2.45.1.windows.1/Git-2.45.1-64-bit.exe' '$TEMP\Git.exe' + inetc::get 'https://github.com/git-for-windows/git/releases/download/v2.45.2.windows.1/Git-2.45.2-64-bit.exe' '$TEMP\Git.exe' ExecWait '$TEMP\Git.exe /CURRENTUSER /VERYSILENT /DIR=$LOCALAPPDATA\Programs\Git' $0 Delete '$TEMP\Git.exe' @@ -107,7 +107,7 @@ Section 'Create Install Batch' FileOpen $1 install-accelerator.bat w FileOpen $2 install-application.bat w - FileWrite $0 '@echo off && conda activate facefusion && conda install conda-forge::ffmpeg=7.0.0 --yes' + FileWrite $0 '@echo off && conda activate facefusion && conda install conda-forge::ffmpeg=7.0.1 --yes' ${If} $UseCuda == 1 FileWrite $1 '@echo off && conda activate facefusion && conda install cudatoolkit=11.8 cudnn=8.9.2.26 conda-forge::gputil=1.4.0 conda-forge::zlib-wapi --yes' FileWrite $2 '@echo off && conda activate facefusion && python install.py --onnxruntime cuda-11.8'