Releases: tomtev/loopwind
v0.26.0
What's new
- PPTX rendering — Presentation templates now render to
.pptxwith PNG backgrounds and editable text overlays - PDF rendering — Image templates can now export to PDF via
--format pdf - Update checker — Now checks GitHub releases instead of npm registry; install instructions point to
curl -fsSL https://loopwind.dev/install.sh | bash
v0.25.12
What's new
- Curl-based install — no npm required, just
curl | bash:curl -fsSL https://raw.githubusercontent.com/tomtev/loopwind/main/install.sh | bash - Fixed WASM path resolution for global installs
- Removed platform commands (login, logout, publish, unpublish, whoami, agent, templates)
- Build tarball script for creating release artifacts (
scripts/build-tarball.sh)
Install
curl -fsSL https://raw.githubusercontent.com/tomtev/loopwind/main/install.sh | bashRequires Node.js 18+.
Note: This release includes a macOS arm64 tarball only. More platforms coming soon.
v0.25.11
Changes
- Commented out platform commands (login, logout, whoami, publish, templates, unpublish) for now
- Updated README: Changed "Machine-readable metadata for LLMs" to "File-based editing perfect for code agents"
- Removed "Easy installation" bullet point from features
Install
npm install -g loopwindv0.14.2
What's New
Debug Mode
Added --debug flag to render and preview commands that enables Satori's built-in debug mode. This shows bounding boxes around all elements, making it easier to debug layout issues.
loopwind render my-template --debug
loopwind preview my-template --debugFull Changelog: v0.14.1...v0.14.2
v0.14.1
What's New
Automatic Port Fallback
When running loopwind preview, if port 3000 is already in use, the CLI will automatically find an available port (tries up to 10 ports: 3000-3009).
⚠ Port 3000 is in use, using 3001 instead
v0.14.0 Features
Emoji Support 🎉
Templates can now use emojis directly in text. Emojis are rendered using Twemoji SVGs from CDN with automatic caching for optimal video rendering performance.
Bundled Inter Fonts
Inter Regular (400) and Bold (700) fonts are now bundled with the CLI. Fonts work offline with no configuration required.
External Font URLs
Load fonts directly from CDNs without downloading files:
{
"fonts": {
"sans": {
"family": ["Inter", "sans-serif"],
"files": [
{
"path": "https://unpkg.com/@fontsource/inter@5.0.18/files/inter-latin-400-normal.woff",
"weight": 400
}
]
}
}
}Full Changelog: v0.13.4...v0.14.1