From 3cf35844d00c98da33b55a64c6d17ff421c499fc Mon Sep 17 00:00:00 2001 From: Joris Date: Tue, 21 Jun 2022 08:03:12 +0200 Subject: Rename from metronome to drum --- README.md | 1 - public/index.html | 2 +- src/main.ts | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 118475c..da9fd01 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,6 @@ Then, open your browser at `http://localhost:8000`. # Todo - Start and stop pressing space -- Rename to `drum.guyonvarch.me` - Sub divide beats - Add / Remove beat integrated into sequencer - Augment the BPM by X after Y cycles diff --git a/public/index.html b/public/index.html index 5facb9e..28482ba 100644 --- a/public/index.html +++ b/public/index.html @@ -2,7 +2,7 @@ -Metronome +Drum diff --git a/src/main.ts b/src/main.ts index 16d4bb5..1c4dea3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,7 +2,7 @@ import h from 'lib/h' import * as sequencer from 'view/sequencer' let view = h('main', {}, - h('h1', { className: 'g-Title' }, 'Metronome'), + h('h1', { className: 'g-Title' }, 'Drum'), sequencer.view() ) -- cgit v1.2.3