Skip to content

v0.3.108

Choose a tag to compare

@github-actions github-actions released this 03 May 14:41

Performance

  • Queue Completed/Failed tabs were slow to load (~10-15 s on 18K completed jobs) because the list-fetch was doing SELECT * and pulling ffmpeg_log, ffmpeg_command, and encoding_stats — per-job detail columns that can each be tens of KB. Fix: list endpoints now SELECT a slim column set excluding those three; the per-job log endpoint still serves them on row expansion. Same payload for Failed (where 200KB of ffmpeg stderr per job adds up fast). Computed dynamically from PRAGMA table_info so future schema additions auto-include.

Docker images

Pinned to this release:

docker pull ghcr.io/i-ial9000/shrinkerr:0.3.108         # portable (amd64 + arm64, CPU)
docker pull ghcr.io/i-ial9000/shrinkerr:0.3.108-nvenc   # x86_64 + NVIDIA GPU (NVENC)
docker pull ghcr.io/i-ial9000/shrinkerr:0.3.108-edge    # as above but ffmpeg master
docker pull ghcr.io/i-ial9000/shrinkerr:0.3.108-edge-nvenc

Floating tags (:latest, :edge, :nvenc, :edge-nvenc) track the most recent release of each lineage.