Update release notes for v4.1.7
Some checks failed
Release / test (push) Failing after 30s
Release / publish (push) Has been skipped
Release / github-release (push) Has been skipped

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Aaron D. Lee
2026-01-09 21:38:14 -05:00
parent 14a73c63ac
commit 1acb5a3dcc

View File

@@ -1,36 +1,41 @@
## Stegasoo v4.1.5 ## Stegasoo v4.1.7
### Developer Experience ### Mobile UI Polish
- **Educational Code Comments**: Core modules now include detailed explanations - **PIN Entry**: Shrunk digit boxes for 9-digit PIN support on mobile
- DCT: zig-zag coefficient diagrams, QIM embedding math, Reed-Solomon "Voyager" reference - **Mode Selectors**: DCT/LSB buttons now use consistent button-group styling with icons
- LSB: visual bit manipulation examples, ChaCha20 pixel selection - **Navbar**: Left-aligned collapsed menu, shortened channel fingerprint display (`ABCD-••••-3456`)
- Crypto: multi-factor KDF flow diagrams, Argon2id memory-hardness reasoning - **Text Wrapping**: Fixed button text wrapping issues on narrow screens
- CLI/Web: architectural patterns for future contributors
### Raspberry Pi Improvements ### Docker Improvements
- **Streamlined Image Creation**: `pull-image.sh` now handles everything - **Reorganized**: Docker files moved to `docker/` directory
- Auto-resizes rootfs to exactly 16GB (for smaller download) - `docker/Dockerfile`
- Preserves auto-expand (image fills SD card on first boot) - `docker/Dockerfile.base`
- Compresses with zstd - `docker/docker-compose.yml`
- Optional .zst.zip wrapper for GitHub releases - **DCT Fix**: Added Reed-Solomon (`reedsolo`) to Docker images - fixes DCT decode failures
- **16GB Minimum**: Pre-built images are now 16GB (was variable) - **Quick Start**: New `docs/DOCKER_QUICKSTART.md` guide
- **Host Requirements**: `rpi/host-requirements.txt` documents all dependencies
- **Test Automation**: `kickoff-pi-test.sh` for one-command flash+test cycles
### MOTD Polish ```bash
- Dynamic temperature emoji (ice/cool/fire based on CPU temp) # Build and run
- Rocket emoji for service status docker build -f docker/Dockerfile.base -t stegasoo-base:latest .
- Cleaner formatting docker-compose -f docker/docker-compose.yml up -d
```
### Raspberry Pi
- **First-Boot Wizard**: Can now load existing channel key (for joining team deployments)
- **Project Cleanup**: Moved `pishrink.sh` to `rpi/tools/`
### UI Copy
- Changed "Undetectable" to "Covertly Embedded" on encode page (more accurate)
### Raspberry Pi Image ### Raspberry Pi Image
Download `stegasoo-rpi-4.1.5.img.zst.zip` from Releases. Download `stegasoo-rpi-4.1.7.img.zst.zip` from Releases.
```bash ```bash
# Flash (auto-detects SD card) # Flash (auto-detects SD card)
sudo ./rpi/flash-image.sh stegasoo-rpi-4.1.5.img.zst.zip sudo ./rpi/flash-image.sh stegasoo-rpi-4.1.7.img.zst.zip
# Or manual # Or manual
zstdcat stegasoo-rpi-4.1.5.img.zst | sudo dd of=/dev/sdX bs=4M status=progress unzip -p stegasoo-rpi-4.1.7.img.zst.zip | zstdcat | sudo dd of=/dev/sdX bs=4M status=progress
``` ```
Default login: `admin` / `stegasoo` Default login: `admin` / `stegasoo`