diff --git a/data/WebUI.webp b/data/WebUI.webp index f37e836..f5e78e2 100644 Binary files a/data/WebUI.webp and b/data/WebUI.webp differ diff --git a/data/WebUI_About.webp b/data/WebUI_About.webp index 81b8aee..5f8c938 100644 Binary files a/data/WebUI_About.webp and b/data/WebUI_About.webp differ diff --git a/data/WebUI_Account.webp b/data/WebUI_Account.webp index b06130a..aeae734 100644 Binary files a/data/WebUI_Account.webp and b/data/WebUI_Account.webp differ diff --git a/data/WebUI_Decode.webp b/data/WebUI_Decode.webp index 9066fb9..aeae734 100644 Binary files a/data/WebUI_Decode.webp and b/data/WebUI_Decode.webp differ diff --git a/data/WebUI_Encode.webp b/data/WebUI_Encode.webp index 9071913..aeae734 100644 Binary files a/data/WebUI_Encode.webp and b/data/WebUI_Encode.webp differ diff --git a/data/WebUI_Generate.webp b/data/WebUI_Generate.webp index 5249af5..aeae734 100644 Binary files a/data/WebUI_Generate.webp and b/data/WebUI_Generate.webp differ diff --git a/data/WebUI_Login.webp b/data/WebUI_Login.webp index f37e836..aeae734 100644 Binary files a/data/WebUI_Login.webp and b/data/WebUI_Login.webp differ diff --git a/data/WebUI_Recover.webp b/data/WebUI_Recover.webp new file mode 100644 index 0000000..58ec36f Binary files /dev/null and b/data/WebUI_Recover.webp differ diff --git a/data/WebUI_Setup.webp b/data/WebUI_Setup.webp index f37e836..aeae734 100644 Binary files a/data/WebUI_Setup.webp and b/data/WebUI_Setup.webp differ diff --git a/data/WebUI_Tools.webp b/data/WebUI_Tools.webp new file mode 100644 index 0000000..aeae734 Binary files /dev/null and b/data/WebUI_Tools.webp differ diff --git a/scripts/screenshots.sh b/scripts/screenshots.sh index 1b9bd35..8c7609c 100755 --- a/scripts/screenshots.sh +++ b/scripts/screenshots.sh @@ -33,8 +33,8 @@ for cmd in chromium magick curl; do fi done -# Check if server is running -if ! curl -s "$BASE_URL" > /dev/null 2>&1; then +# Check if server is running (-k for self-signed certs) +if ! curl -sk "$BASE_URL" > /dev/null 2>&1; then echo "Error: Server not responding at $BASE_URL" echo "Start with: STEGASOO_AUTH_ENABLED=false python frontends/web/app.py" exit 1 @@ -49,7 +49,7 @@ capture() { printf " %-20s <- %s\n" "$name" "$route" chromium --headless --screenshot="$OUTPUT_DIR/$name.png" \ --window-size="$WINDOW_SIZE" --hide-scrollbars \ - --disable-gpu --no-sandbox \ + --disable-gpu --no-sandbox --ignore-certificate-errors \ "$url" 2>/dev/null }