From f84fe0d417d563883ca9a3b6b0eed130079cde49 Mon Sep 17 00:00:00 2001 From: "Alex \"mcmonkey\" Goodwin" Date: Sun, 10 Mar 2024 09:28:49 -0700 Subject: [PATCH] Beta! --- README.md | 7 +++++-- install-linux.sh | 10 ++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1f916fef..713949a7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # StableSwarmUI -**StableSwarmUI 0.6.1 Alpha**. +**StableSwarmUI 0.6.1 Beta**. A Modular Stable Diffusion Web-User-Interface, with an emphasis on making powertools easily accessible, high performance, and extensibility. @@ -10,13 +10,16 @@ Follow the [Feature Announcements Thread](https://github.com/Stability-AI/Stable # Status -This project is in **ALPHA** status, preparing to move to **BETA** very soon. That means most things work, but there's a lot more planned before it's truly "ready for primetime". it's currently at a point where it's safe to recommend for general users, though you may need at times to use the integrated Comfy tab as a backup way to execute some things that would ideally be on the main UI. There are some known bugs and quality-of-life limits still be worked out. +This project is in **Beta** status. That means most things work, but there's a lot more planned before it's truly "ready for primetime". it's currently at a point where it's safe to recommend for general users, though you may need at times to use the integrated Comfy tab as a backup way to execute some things that would ideally be on the main UI. There are some known bugs and quality-of-life limits still be worked out. Those interested in helping push to a Full ready-for-anything Release status are welcome to submit PRs (read the [Contributing](/CONTRIBUTING.md) document first), and you can contact us here on GitHub or on [Discord](https://discord.gg/stablediffusion) in the `#stableswarmui` channel. I highly recommended reaching out to ask about plans for a feature before PRing it. There may already be specific plans or even a work in progress. Key feature targets not yet implemented: - Mobile browser formatting - full detail "Current Model" display in UI, separate from the model selector (probably as a tab within the batch sidebar?) + - potentially even a way to dynamically shift tabs around between spots for convenience +- LLM-assisted prompting +- convenient direct-distribution of Swarm as a program (Electron app?) # Try It On Google Colab diff --git a/install-linux.sh b/install-linux.sh index 29a59f0c..ce3669ab 100644 --- a/install-linux.sh +++ b/install-linux.sh @@ -4,6 +4,16 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) cd $SCRIPT_DIR +# Accidental run prevention +if [ -d "StableSwarmUI" ]; then + echo "StableSwarmUI already exists in this directory. Please remove it before installing." + exit 1 +fi +if [ -f "StableSwarmUI.sln" ]; then + echo "StableSwarmUI already exists in this directory. Please remove it before installing." + exit 1 +fi + # Download swarm git clone https://github.com/Stability-AI/StableSwarmUI cd StableSwarmUI