Releases: pinkpixel-dev/promptzy
Releases · pinkpixel-dev/promptzy
v1.4.3 - Electron UI, Linux installers, Docker build, Updated AI Assistant and UI theme
[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 (
promptzycommand), 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.tomlincluded)
- Installation guide covering PWA, npm (
- 🔗 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 fromdist/— react-routerBrowserRouterroutes work identically to the web version - Secure architecture:
contextIsolation: true,nodeIntegration: false, sandboxed renderer, minimalcontextBridgesurface - 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 /
hiddenInsettitle bar; proper dock behaviour - Dev mode loads the Vite dev server (
http://localhost:8080) automatically
- Custom
- 📦 Linux Binary Releases: Pre-built Linux packages published to Cloudflare R2
- Debian / Ubuntu / Mint (
.deb): Promptzy-1.4.3-amd64.deb - Universal Linux (
.AppImage): Promptzy-1.4.3.AppImage
- Debian / Ubuntu / Mint (
- 🐳 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_filesrouting, security headers, gzip compression, and smart cache policies (immutable for hashed assets, no-cache for HTML) docker-compose.ymlfor one-command spin-up:docker compose up --build- New npm scripts:
docker:build,docker:run,docker:up,electron:dev,electron:build
- Stage 1 — Node 20 Alpine compiles the Vite SPA with optional