Skip to content

Commit 0827b88

Browse files
committed
migration notice and tools
1 parent ae5697d commit 0827b88

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,20 @@ Join the [Discord](https://discord.gg/q2y38cqjNw) to discuss the project, get su
1010

1111
Follow the [Feature Announcements Thread](https://github.com/Stability-AI/StableSwarmUI/discussions/11) for updates on new features.
1212

13+
# Migration Notice
14+
15+
As of 2024/06/21 StableSwarmUI will no longer be maintained under Stability AI.
16+
17+
The original developer will be maintaining an independent version of this project as [mcmonkeyprojects/SwarmUI](https://github.com/mcmonkeyprojects/SwarmUI)
18+
19+
Windows users can migrate to the new independent repo by simply updating and then running `migrate-windows.bat`
20+
21+
For Linux, Mac, or manual Windows: open a terminal in your Swarm folder then run `git remote set-url origin https://github.com/mcmonkeyprojects/SwarmUI`
22+
23+
See full migration guide here: https://github.com/mcmonkeyprojects/SwarmUI/discussions/2
24+
25+
----
26+
1327
# Status
1428

1529
This project is in **Beta** status. This means for most tasks, Swarm has excellent tooling available to you, but there is much more planned. Swarm is recommended as an ideal UI for most users, beginners and pros alike. There are still some things to be worked out.

migrate-windows.bat

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@echo off
2+
3+
git remote set-url origin https://github.com/mcmonkeyprojects/SwarmUI
4+
5+
echo Migrated to the mcmonkeyprojects SwarmUI version of this project
6+
7+
timeout 3

src/wwwroot/js/genpage/welcomemessages.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ function automaticWelcomeMessage(override = null) {
3838
let messages = [
3939
/* Generic welcome messages, order-sensitive, keep at top */
4040
`Type your prompt below and hit Generate!`,
41+
`<h2>Important Migration Notice</h2><br>StableSwarmUI will no longer be maintained under Stability AI.<br>To migrate to new independent repository, see <a href="https://github.com/mcmonkeyprojects/SwarmUI/discussions/2">the migration guide here</a>`,
4142
`Join the StableSwarmUI <a href="https://discord.gg/q2y38cqjNw">official Discord!</a>`,
4243
/* "Did you know" facts - interesting things you can do in swarm */
4344
`Did you know:\nyou can drag and drop images onto the prompt box to use them as an image-prompt.`,
@@ -62,6 +63,9 @@ function automaticWelcomeMessage(override = null) {
6263
if (dotnetNotice) {
6364
messages.push(dotnetNotice.innerHTML.trim());
6465
}
66+
for (let i = 0; i < 10; i++) {
67+
messages.push(messages[1]);
68+
}
6569
if (override == null) {
6670
if (dotnetNotice) {
6771
override = messages.length - 1;

0 commit comments

Comments
 (0)