Update default branch from main to 4.1 in Pi docs

Branch 4.1 includes Reed-Solomon error correction for DCT
steganography which is required for reliable operation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Aaron D. Lee
2026-01-04 22:59:32 -05:00
parent c54a96894c
commit bb91e41d3d
4 changed files with 11 additions and 11 deletions

View File

@@ -24,7 +24,7 @@ ssh admin@stegasoo.local
```bash ```bash
# Download and run (avoid curl|bash stdin issues) # Download and run (avoid curl|bash stdin issues)
wget -O setup.sh https://raw.githubusercontent.com/adlee-was-taken/stegasoo/main/rpi/setup.sh wget -O setup.sh https://raw.githubusercontent.com/adlee-was-taken/stegasoo/4.1/rpi/setup.sh
chmod +x setup.sh chmod +x setup.sh
./setup.sh ./setup.sh
``` ```
@@ -105,7 +105,7 @@ zstdcat stegasoo-rpi-*.img.zst | sudo dd of=/dev/sdX bs=4M status=progress
```bash ```bash
# On Pi: # On Pi:
wget -O setup.sh https://raw.githubusercontent.com/adlee-was-taken/stegasoo/main/rpi/setup.sh && chmod +x setup.sh && ./setup.sh wget -O setup.sh https://raw.githubusercontent.com/adlee-was-taken/stegasoo/4.1/rpi/setup.sh && chmod +x setup.sh && ./setup.sh
sudo systemctl start stegasoo sudo systemctl start stegasoo
curl -k https://localhost:5000 curl -k https://localhost:5000
sudo ~/stegasoo/rpi/sanitize-for-image.sh sudo ~/stegasoo/rpi/sanitize-for-image.sh

View File

@@ -8,7 +8,7 @@ On a fresh Raspberry Pi OS Lite (64-bit) installation:
```bash ```bash
# Download and run (recommended) # Download and run (recommended)
wget -O setup.sh https://raw.githubusercontent.com/adlee-was-taken/stegasoo/main/rpi/setup.sh wget -O setup.sh https://raw.githubusercontent.com/adlee-was-taken/stegasoo/4.1/rpi/setup.sh
chmod +x setup.sh chmod +x setup.sh
./setup.sh ./setup.sh
``` ```
@@ -16,7 +16,7 @@ chmod +x setup.sh
Or clone the repo: Or clone the repo:
```bash ```bash
git clone https://github.com/adlee-was-taken/stegasoo.git git clone -b 4.1 https://github.com/adlee-was-taken/stegasoo.git
cd stegasoo/rpi cd stegasoo/rpi
./setup.sh ./setup.sh
``` ```
@@ -134,7 +134,7 @@ In advanced settings, set:
ssh admin@stegasoo.local ssh admin@stegasoo.local
# Download and run setup script # Download and run setup script
wget -O setup.sh https://raw.githubusercontent.com/adlee-was-taken/stegasoo/main/rpi/setup.sh wget -O setup.sh https://raw.githubusercontent.com/adlee-was-taken/stegasoo/4.1/rpi/setup.sh
chmod +x setup.sh chmod +x setup.sh
./setup.sh ./setup.sh
``` ```

View File

@@ -4,9 +4,9 @@
# Tested on: Raspberry Pi 4/5 with Raspberry Pi OS (64-bit) # Tested on: Raspberry Pi 4/5 with Raspberry Pi OS (64-bit)
# #
# Usage: # Usage:
# curl -sSL https://raw.githubusercontent.com/adlee-was-taken/stegasoo/main/rpi/setup.sh | bash # curl -sSL https://raw.githubusercontent.com/adlee-was-taken/stegasoo/4.1/rpi/setup.sh | bash
# # or # # or
# wget -qO- https://raw.githubusercontent.com/adlee-was-taken/stegasoo/main/rpi/setup.sh | bash # wget -qO- https://raw.githubusercontent.com/adlee-was-taken/stegasoo/4.1/rpi/setup.sh | bash
# #
# What this script does: # What this script does:
# 1. Installs system dependencies # 1. Installs system dependencies
@@ -48,7 +48,7 @@ show_help() {
echo " INSTALL_DIR Install location (default: /opt/stegasoo)" echo " INSTALL_DIR Install location (default: /opt/stegasoo)"
echo " PYTHON_VERSION Python version (default: 3.12)" echo " PYTHON_VERSION Python version (default: 3.12)"
echo " STEGASOO_REPO Git repo URL" echo " STEGASOO_REPO Git repo URL"
echo " STEGASOO_BRANCH Git branch (default: main)" echo " STEGASOO_BRANCH Git branch (default: 4.1)"
echo "" echo ""
echo " Example:" echo " Example:"
echo " export INSTALL_DIR=\"/home/pi/stegasoo\"" echo " export INSTALL_DIR=\"/home/pi/stegasoo\""
@@ -68,7 +68,7 @@ done
INSTALL_DIR="${INSTALL_DIR:-/opt/stegasoo}" INSTALL_DIR="${INSTALL_DIR:-/opt/stegasoo}"
PYTHON_VERSION="${PYTHON_VERSION:-3.12}" PYTHON_VERSION="${PYTHON_VERSION:-3.12}"
STEGASOO_REPO="${STEGASOO_REPO:-https://github.com/adlee-was-taken/stegasoo.git}" STEGASOO_REPO="${STEGASOO_REPO:-https://github.com/adlee-was-taken/stegasoo.git}"
STEGASOO_BRANCH="${STEGASOO_BRANCH:-main}" STEGASOO_BRANCH="${STEGASOO_BRANCH:-4.1}"
JPEGIO_REPO="https://github.com/dwgoon/jpegio.git" JPEGIO_REPO="https://github.com/dwgoon/jpegio.git"
# Load config files (system, then user - user overrides system) # Load config files (system, then user - user overrides system)

View File

@@ -14,8 +14,8 @@
# Git repository URL # Git repository URL
#STEGASOO_REPO="https://github.com/adlee-was-taken/stegasoo.git" #STEGASOO_REPO="https://github.com/adlee-was-taken/stegasoo.git"
# Git branch to checkout (default: main) # Git branch to checkout (default: 4.1)
#STEGASOO_BRANCH="main" #STEGASOO_BRANCH="4.1"
# Web UI port (default: 5000) # Web UI port (default: 5000)
#STEGASOO_PORT="5000" #STEGASOO_PORT="5000"