Skip to content

Releases: pinkpixel-dev/promptzy

v1.4.3 - Electron UI, Linux installers, Docker build, Updated AI Assistant and UI theme

02 Mar 06:56

Choose a tag to compare

[1.4.3] - 2026-03-02

Added

  • 📚 Documentation Site: Full Starlight (Astro) docs site in /website, deployed to promptzy-docs.pinkpixel.dev
    • Installation guide covering PWA, npm (promptzy command), Docker (all modes), Linux desktop app, and clone-from-source
    • Supabase setup walkthrough with full SQL schema and step-by-step configuration
    • AI Assistant guide covering Pollinations API key setup, model selection, and technical details
    • Prompt Engineering guide with best practices for System, Task, Image, and Video prompts
    • 12 ready-to-use prompt templates (system personas, task prompts, image/video prompts)
    • Dark glassy theme: deep navy + rose pink + cyan + amber matching the app's palette
    • Wrangler-ready for Cloudflare Pages deployment (wrangler.toml included)
  • 🔗 Docs Link in Header: New "Docs" button in the app header (rose-pink accent) linking to the docs site

[1.4.2] - 2026-03-01

Added

  • 🖥️ Electron Desktop App: Native desktop application built with Electron 34
    • Custom app:// protocol serves the built SPA from dist/ — react-router BrowserRouter routes work identically to the web version
    • Secure architecture: contextIsolation: true, nodeIntegration: false, sandboxed renderer, minimal contextBridge surface
    • Native app menu with File / Edit / View (zoom & fullscreen) / Window / Help (GitHub & Pink Pixel links)
    • Right-click context menu for cut/copy/paste in editable fields
    • All external links open in the system browser via shell.openExternal
    • macOS traffic-light / hiddenInset title bar; proper dock behaviour
    • Dev mode loads the Vite dev server (http://localhost:8080) automatically
  • 📦 Linux Binary Releases: Pre-built Linux packages published to Cloudflare R2
  • 🐳 Docker Support: Multi-stage Docker build for self-hosted deployments
    • Stage 1 — Node 20 Alpine compiles the Vite SPA with optional VITE_* build args for baking in credentials
    • Stage 2 — Nginx 1.27 Alpine serves static assets; SPA-aware try_files routing, security headers, gzip compression, and smart cache policies (immutable for hashed assets, no-cache for HTML)
    • docker-compose.yml for one-command spin-up: docker compose up --build
    • New npm scripts: docker:build, docker:run, docker:up, electron:dev, electron:build