Skip to content

v0.6.16

Choose a tag to compare

@Z1rconium Z1rconium released this 28 May 09:25
· 35 commits to main since this release

GPT Image Linux v0.6.16

This release focuses on SQLite-backed gallery performance and operational behavior for larger libraries.

Highlights

  • Added asynchronous backfill for gallery byte sizes so legacy metadata repair no longer blocks startup and can run more safely in the background.
  • Extended the gallery database schema with an explicit sort sequence to support more stable ordering and future query optimization work.
  • Removed unused SQLite indices from gallery_entries and prompt_snippets to reduce write overhead and keep the schema leaner.

Changes

Gallery metadata backfill

  • Moved gallery byte-size backfill work to an asynchronous flow.
  • Reduced the amount of blocking maintenance work performed during startup.
  • Improved the database path for legacy rows that are missing byte-size metadata.

Database schema and query behavior

  • Added sort-sequence support to the gallery schema.
  • Simplified the SQLite index set by removing indices that were no longer pulling their weight.
  • Kept the storage layer aligned with recent gallery ordering and maintenance changes.

Docker image

  • ghcr.io/z1rconium/gpt-image-linux:v0.6.16
  • ghcr.io/z1rconium/gpt-image-linux:latest

Run directly with Docker:

docker run -d \
  --name gpt-image-panel \
  -p 127.0.0.1:9090:9090 \
  -v $(pwd)/images:/app/images \
  -v $(pwd)/data:/app/data \
  --env-file ./.env.example \
  ghcr.io/z1rconium/gpt-image-linux:v0.6.16

Run with Docker Compose:

curl -Lo docker-compose.yml https://github.com/Z1rconium/gpt-image-linux/releases/download/v0.6.16/docker-compose.yml
curl -Lo .env.example https://github.com/Z1rconium/gpt-image-linux/releases/download/v0.6.16/env.example
docker compose up -d

Release assets

  • docker-compose.yml
  • env.example
  • gpt-image-panel-v0.6.16-prebuilt.tar.gz
  • SHA256SUMS

Full changelog