Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.18.0] - 2026-05-23

### Added
- Skins system – switch the entire UI between **Modern**, **Win95**, **Winamp**, and **CRT** themes. Selectable via the `?skin=` URL parameter (e.g. `?skin=winamp`); the active skin is persisted to the URL alongside the other settings.
- ASCII visualizer – Canvas 2D audio-reactive ASCII art renderer.
- Cyber City visualizer – raymarched neon-grid cityscape flythrough with audio-driven scan pulses, fog, and dot density (Three.js/WebGL).
- Audio Debug visualizer – diagnostic view with waveform, FFT spectrum, kick detection, plus stereo correlation meter and rolling spectrogram (Canvas 2D).
- Aurum Leaf visualizer – tentacled energy bloom with particles, kick-reactive bloom bursts, and UnrealBloom post-processing (Three.js/WebGL).
- Anunaki Sphere visualizer – raymarched KIFS-folded sphere with auto-rotation and audio-reactive brightness/zoom (Three.js/WebGL).
- Trails Stream visualizer – bending tube-trail stream with blur, bloom, and audio-reactive exposure (Three.js/WebGL).
- Shambhala visualizer – voxel tunnel raymarcher with space-folding, glow, and audio-reactive exposure (Three.js/WebGL).

### Changed
- FractalOrb: refactored audio analysis and visual response for tighter reactivity.
- Vite: raised `chunkSizeWarningLimit` from 550 to 600 to accommodate the new shader-heavy visualizers.
- Dependency bumps

## [0.17.0] - 2026-05-13

### Added
Expand Down
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,20 @@
[![Voltviz](images/voltviz.png)](https://voltviz.com)
---

VoltViz comes with **40+ stunning visualization styles** to choose from:
VoltViz comes with **50+ stunning visualization styles** to choose from:

- **Particle Effects**: Cosmic Particles, Fireworks Show
- **Abstract Patterns**: Cyber Matrix, Cyber Grid Canvas, Neon Hex Tunnel, Neon Wave, Aurora Waves
- **3D Visualizations**: Poly Sphere, Glow Sphere, 3D Equalizer, Hex Globe, Fractal Orb
- **Retro Styles**: CRT Terminal, Vinyl, VU Meter, Sheet Music, Glitch Background, Glitch Databend, MS Defrag
- **Particle Effects**: Cosmic Particles, Fireworks Show, Trails Stream
- **Abstract Patterns**: Cyber Matrix, Cyber Grid Canvas, Cyber City, Neon Hex Tunnel, Neon Wave, Aurora Waves, Shambhala
- **3D Visualizations**: Poly Sphere, Glow Sphere, 3D Equalizer, Hex Globe, Fractal Orb, Anunaki Sphere, Aurum Leaf
- **Retro Styles**: CRT Terminal, ASCII, Vinyl, VU Meter, Sheet Music, Glitch Background, Glitch Databend, MS Defrag
- **Festival Vibes**: Festival Stage, Defqon Mainstage, Disney Drone Show
- **Organic Effects**: Fluid Smoke, Ghost Rainbow, Psychedelic Skull, Flame
- **Data Driven**: Dutch Grid, Dutch Grid (WebGL), Data Dashboard
- **Data Driven**: Dutch Grid, Dutch Grid (WebGL), Data Dashboard, Audio Debug
- **MilkDrop-inspired**: MilkDrop, MilkDrop Warp
- **And many more**: Bars, Circular, Tunnel, Background Image, Blur Image, Your Logo, Icons, and Sendspin variants...

**UI Skins:** Switch the entire interface between **Modern**, **Win95**, **Winamp**, and **CRT** themes via the `?skin=` URL parameter.

**Core Capabilities:**
- 🎤 **Real-time Audio Input**: Connect microphone, capture system audio, or stream from a [Sendspin](https://www.sendspin-audio.com) server
- 📊 **High-Performance Rendering**: GPU-accelerated with Three.js and WebGL
Expand Down Expand Up @@ -152,6 +154,7 @@ http://localhost:8080/?viz=tunnel&sensitivity=1.5&speed=2.0&hueShift=180&scale=1
| `speed` | Animation speed multiplier (0.1–3.0) | `1.0` |
| `hueShift` | Color shift in degrees (0–360) | `0` |
| `scale` | Element scale multiplier (0.5–3.0) | `1.0` |
| `skin` | UI theme: `modern`, `win95`, `winamp`, or `crt` | `modern` |

The URL updates automatically as you change the visualizer or adjust settings in the UI, so you can share or bookmark your current configuration at any time. Only non-default settings are included to keep URLs clean.

Expand Down
Loading