From fb317d09672bedd6aca3d97e843d7da27b309b53 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 26 Mar 2024 14:35:08 +1100 Subject: [PATCH] feat(installer): update invoke.bat.in Forgot to update this when removing references to updating the app in invoke.sh.in --- installer/templates/invoke.bat.in | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/installer/templates/invoke.bat.in b/installer/templates/invoke.bat.in index c949a01196..9c9c08d82d 100644 --- a/installer/templates/invoke.bat.in +++ b/installer/templates/invoke.bat.in @@ -10,11 +10,13 @@ set INVOKEAI_ROOT=. echo Desired action: echo 1. Generate images with the browser-based interface echo 2. Open the developer console -echo 3. Update InvokeAI (DEPRECATED - please use the installer) -echo 4. Run the InvokeAI image database maintenance script -echo 5. Command-line help +echo 3. Run the InvokeAI image database maintenance script +echo 4. Command-line help echo Q - Quit -set /P choice="Please enter 1-10, Q: [1] " +echo. +echo To update, download and run the installer from https://github.com/invoke-ai/InvokeAI/releases/latest. +echo. +set /P choice="Please enter 1-4, Q: [1] " if not defined choice set choice=1 IF /I "%choice%" == "1" ( echo Starting the InvokeAI browser-based UI.. @@ -32,14 +34,9 @@ IF /I "%choice%" == "1" ( echo *** Type `exit` to quit this shell and deactivate the Python virtual environment *** call cmd /k ) ELSE IF /I "%choice%" == "3" ( - echo UPDATING FROM WITHIN THE APP IS BEING DEPRECATED. - echo Please download the installer from https://github.com/invoke-ai/InvokeAI/releases/latest and run it to update your installation. - timeout 4 - python -m invokeai.frontend.install.invokeai_update -) ELSE IF /I "%choice%" == "4" ( echo Running the db maintenance script... python .venv\Scripts\invokeai-db-maintenance.exe -) ELSE IF /I "%choice%" == "5" ( +) ELSE IF /I "%choice%" == "4" ( echo Displaying command line help... python .venv\Scripts\invokeai-web.exe --help %* pause