update repo URL to point to rc

This commit is contained in:
Lincoln Stein 2022-11-10 18:39:29 +00:00
parent 649d8c8573
commit 0d134195fd
10 changed files with 16 additions and 8 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -156,6 +156,10 @@ if %errorlevel% neq 0 goto err_exit
echo ***** Finished downloading models ***** echo ***** Finished downloading models *****
echo ***** Installing invoke.bat ******
cp installer\invoke.bat .\invoke.bat
@rem more cleanup @rem more cleanup
rd /s /q installer installer_files rd /s /q installer installer_files
@ -165,4 +169,4 @@ exit
:err_exit :err_exit
echo %err_msg% echo %err_msg%
pause pause
exit exit

View File

@ -24,4 +24,6 @@ cp WinLongPathsEnabled.reg InvokeAI
zip -r InvokeAI-windows.zip InvokeAI zip -r InvokeAI-windows.zip InvokeAI
rm -rf InvokeAI
echo "The installer zips are ready for distribution." echo "The installer zips are ready for distribution."

View File

@ -18,8 +18,8 @@ set PATH=c:\windows\system32
set INSTALL_ENV_DIR=%cd%\installer_files\env set INSTALL_ENV_DIR=%cd%\installer_files\env
@rem https://mamba.readthedocs.io/en/latest/installation.html @rem https://mamba.readthedocs.io/en/latest/installation.html
set MICROMAMBA_DOWNLOAD_URL=https://micro.mamba.pm/api/micromamba/win-64/latest set MICROMAMBA_DOWNLOAD_URL=https://micro.mamba.pm/api/micromamba/win-64/latest
set RELEASE_URL=https://github.com/tildebyte/InvokeAI set RELEASE_URL=https://github.com/invoke-ai/InvokeAI
set RELEASE_SOURCEBALL=/archive/feat-install-pip-compile.tar.gz set RELEASE_SOURCEBALL=/archive/refs/tags/2.1.3-rc4.tar.gz
set PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download set PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download
set PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-x86_64-pc-windows-msvc-shared-install_only.tar.gz set PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-x86_64-pc-windows-msvc-shared-install_only.tar.gz

View File

@ -73,8 +73,8 @@ fi
# config # config
INSTALL_ENV_DIR="$(pwd)/installer_files/env" INSTALL_ENV_DIR="$(pwd)/installer_files/env"
MICROMAMBA_DOWNLOAD_URL="https://micro.mamba.pm/api/micromamba/${MAMBA_OS_NAME}-${MAMBA_ARCH}/latest" MICROMAMBA_DOWNLOAD_URL="https://micro.mamba.pm/api/micromamba/${MAMBA_OS_NAME}-${MAMBA_ARCH}/latest"
RELEASE_URL=https://github.com/tildebyte/InvokeAI RELEASE_URL=https://github.com/invoke-ai/InvokeAI
RELEASE_SOURCEBALL=/archive/feat-install-pip-compile.tar.gz RELEASE_SOURCEBALL=/archive/refs/tags/2.1.3-rc4.tar.gz
PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download
if [ "$OS_NAME" == "darwin" ]; then if [ "$OS_NAME" == "darwin" ]; then
PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-${PY_ARCH}-apple-darwin-install_only.tar.gz PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-${PY_ARCH}-apple-darwin-install_only.tar.gz

View File

@ -18,5 +18,7 @@ if [ "$0" != "bash" ]; then
* ) echo "Invalid selection"; exit;; * ) echo "Invalid selection"; exit;;
esac esac
else # in developer console else # in developer console
.venv/bin/python python --version
echo "Press ^D to exit"
export PS1="(InvokeAI) \u@\h \w> "
fi fi

View File

@ -72,7 +72,6 @@ if not exist ".git" (
call git config --local init.defaultBranch main call git config --local init.defaultBranch main
call git remote add origin %REPO_URL% call git remote add origin %REPO_URL%
call git fetch call git fetch
# call git checkout origin/main -ft
call git checkout origin/release-candidate-2-1-3 -ft call git checkout origin/release-candidate-2-1-3 -ft
) )

View File

@ -23,6 +23,7 @@ if [ "$0" != "bash" ]; then
* ) echo "Invalid selection"; exit;; * ) echo "Invalid selection"; exit;;
esac esac
else # in developer console else # in developer console
export PS1="(InvokeAI) \u@\h \w> "
python --version python --version
echo "Press ^D to exit"
export PS1="(InvokeAI) \u@\h \w> "
fi fi