VELOX / Docs · Changelog ← Back to site Launch Terminal →

Changelog

All notable changes to Velox. Dates in ISO-8601. Version scheme is MAJOR.MINOR — no patch releases on the v0 track.


v0.4 · 2026-04-20

Added

  • Env-gated cron activation. Scheduled cron invocations are now gated by CRONS_ENABLED; manual HTTP calls still run unconditionally. See API reference.
  • Docs site. This site — /docs/* — launched as pre-rendered static HTML pages (no build step, works under file://, HTTP, or production).
  • Live-scan demo page. A browser-side mock terminal at /live-scan.html streams real Binance prices with simulated AI consensus, so prospective users can see the pipeline without signing up.
  • 80-perpetual coverage. Scanner universe expanded from 50 to 80 contracts; landing heatmap shows all 80 with prices, treemap-sized by volume.

Changed

  • All cron functions raised to maxDuration: 300 (was mixed 60–300).
  • Inline export const maxDuration is now the authoritative source; vercel.json functions block removed to eliminate drift.

security Added

  • Case-insensitive CRONS_ENABLED parsing — True, TRUE, true all recognized. Skip log now prints the raw value to surface typos.

v0.3 · 2026-04-17

Added

  • Terminal redesign. Full Svelte 5 migration of the frontend. Chart-centric drawer layout. Workspaces, tiling, command palette.
  • Multi-exchange architecture. Adapter layer under api/exchanges/*; Binance and Bybit initial.
  • AI-chat agentic tool loop. Live-data and chart-control tools; the Claude-backed chat can now drive the UI.
  • Popover primitive. Reusable Popover component; migrated funding-detail tooltips.

Fixed

  • Orderbook precision selector inlined; deeper depth; tick reset glitch.
  • Chart-during-symbol-picker visibility bug.
  • effect_update_depth cycle in scanTrigger.

v0.2 · 2026-04-03

Added

  • Fly.io worker for 24/7 cron execution. Offloaded cron work from Vercel Hobby (60s cap) to Fly — allowing the 300s scan to run.
  • Tracker view. Market cap + OI/Mcap ratio columns; clickable rows navigate to chart.

Changed

  • Replaced Vercel cron with client-side triggers + external cron (later superseded by Fly worker, then by Vercel Pro + env-gate in v0.4).

Fixed

  • Tracker security and bug review findings.

v0.1 · 2026-03-12

Added

  • Initial public release.
  • Three-model consensus engine (Claude + Gemini + Grok).
  • Dual virtual portfolios (aggressive / conservative).
  • Self-learning optimizer with per-model weight tuning.
  • Seven circuit breakers.
  • Discord community-call context integration.