Update UI & Core

This commit is contained in:
Abdullah Barhoum
2022-08-28 18:41:54 +02:00
parent 3efd62aac2
commit b3fa72a614
4 changed files with 18 additions and 6 deletions

12
build/info.py Normal file
View File

@@ -0,0 +1,12 @@
import sys
from pathlib import Path
file = Path(sys.argv[1])
file.write_text(
file.read_text().replace('<p>For help and advanced usage guides,', """
<p>
Created using <a href="https://github.com/AbdBarho/stable-diffusion-webui-docker">stable-diffusion-webui-docker</a>.
</p>
<p>For help and advanced usage guides,
""")
)