diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-09 18:58:34 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-09 18:58:34 +0100 |
| commit | 512e0187e17ab6116c336885c1a9a6dc0a03f9d1 (patch) | |
| tree | 50ce61bfd0117a11e481666568dd0d4220372ee4 | |
| parent | 7790472dabfa0ecd06f3408d847860ec6072866e (diff) | |
feat: Add workspace header comments to config files
Add `# WORKSPACE: <name>` header to all workspace config files:
- timeline.seq
- music.track
- assets.txt
Format: First line contains workspace identifier.
Editors must preserve this header comment.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
| -rw-r--r-- | workspaces/main/assets.txt | 1 | ||||
| -rw-r--r-- | workspaces/main/music.track | 1 | ||||
| -rw-r--r-- | workspaces/main/timeline.seq | 1 | ||||
| -rw-r--r-- | workspaces/test/assets.txt | 1 | ||||
| -rw-r--r-- | workspaces/test/music.track | 1 | ||||
| -rw-r--r-- | workspaces/test/timeline.seq | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/workspaces/main/assets.txt b/workspaces/main/assets.txt index 2be2c9d..ca77e21 100644 --- a/workspaces/main/assets.txt +++ b/workspaces/main/assets.txt @@ -1,3 +1,4 @@ +# WORKSPACE: main # Asset Name, Compression Type, Filename/Placeholder, Description # --- Drum & Percussion Samples --- diff --git a/workspaces/main/music.track b/workspaces/main/music.track index c5b953b..c58ae8c 100644 --- a/workspaces/main/music.track +++ b/workspaces/main/music.track @@ -1,3 +1,4 @@ +# WORKSPACE: main # Simple Demo Track - Steady beat with progressive variation # Duration: 32 seconds (16 units at 120 BPM) # diff --git a/workspaces/main/timeline.seq b/workspaces/main/timeline.seq index a8717f3..3670825 100644 --- a/workspaces/main/timeline.seq +++ b/workspaces/main/timeline.seq @@ -1,3 +1,4 @@ +# WORKSPACE: main # ============================================================================ # DEMO SEQUENCE DEFINITION # ============================================================================ diff --git a/workspaces/test/assets.txt b/workspaces/test/assets.txt index 2be2c9d..62551d3 100644 --- a/workspaces/test/assets.txt +++ b/workspaces/test/assets.txt @@ -1,3 +1,4 @@ +# WORKSPACE: test # Asset Name, Compression Type, Filename/Placeholder, Description # --- Drum & Percussion Samples --- diff --git a/workspaces/test/music.track b/workspaces/test/music.track index 6ae5c67..939d6d1 100644 --- a/workspaces/test/music.track +++ b/workspaces/test/music.track @@ -1,3 +1,4 @@ +# WORKSPACE: test # Minimal drum beat for audio/visual sync testing # Pattern: kick-snare-kick-snare, crash every 4th bar # Includes NOTE_A4 (440 Hz) at start of each bar for testing diff --git a/workspaces/test/timeline.seq b/workspaces/test/timeline.seq index 6dc26ca..100c7da 100644 --- a/workspaces/test/timeline.seq +++ b/workspaces/test/timeline.seq @@ -1,3 +1,4 @@ +# WORKSPACE: test # Minimal timeline for audio/visual sync testing # BPM 120 (set in test_demo.track) |
