aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris2022-06-21 08:03:12 +0200
committerJoris2022-06-21 08:03:12 +0200
commit3cf35844d00c98da33b55a64c6d17ff421c499fc (patch)
tree710218c491dfc366e1fdf935c34ad364821d7db0
parent46f39fa93fa99eef2691d6dc905b9d083eb170cb (diff)
downloaddrum-3cf35844d00c98da33b55a64c6d17ff421c499fc.tar.gz
drum-3cf35844d00c98da33b55a64c6d17ff421c499fc.tar.bz2
drum-3cf35844d00c98da33b55a64c6d17ff421c499fc.zip
Rename from metronome to drum
-rw-r--r--README.md1
-rw-r--r--public/index.html2
-rw-r--r--src/main.ts2
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 @@
<html lang="fr">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
-<title>Metronome</title>
+<title>Drum</title>
<link rel="stylesheet" href="/main.css">
<body></body>
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()
)