diff --git a/.gitignore b/.gitignore index 9c85dcb..67e450a 100644 --- a/.gitignore +++ b/.gitignore @@ -32,4 +32,8 @@ logs/ # Runtime .cache/ -.tmp/ \ No newline at end of file +.tmp/ +.vercel + +# Backend runtime cache (downloaded MIDI files) +server/cache/ diff --git a/index.html b/index.html index 75ba016..780f327 100644 --- a/index.html +++ b/index.html @@ -132,6 +132,39 @@ color: #ffaa44; font-size: 0.9em; } + + .volume-control { + margin-top: 10px; + display: flex; + align-items: center; + gap: 10px; + } + .volume-control label { + font-size: 0.9em; + color: #aaa; + } + .volume-control input[type="range"] { + flex: 1; + margin: 0; + } + + .engine-selector { + margin-top: 10px; + font-size: 0.9em; + } + .engine-selector label { + color: #aaa; + display: block; + margin-bottom: 5px; + } + .engine-selector select { + background: #333; + color: #e0e0e0; + border: 1px solid #555; + padding: 5px 10px; + font-family: inherit; + width: 100%; + }
@@ -175,15 +208,31 @@Plays original MIDI as-is
- +Procedural synthesis from structure
- + +