From 359b56ad62c532076fbb8393a61e72e95d50038d Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Tue, 16 Jul 2019 04:55:29 -0400 Subject: [PATCH] Fix typo --- README.md | 6 +++--- index.html | 16 ++++++++-------- package-lock.json | 2 +- package.json | 10 +++++----- src/index.ts | 2 +- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 971cdf3..2486a0c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Bosca Coeil JS +# Bosca Ceoil JS This project is an HTML/CSS/JavaScript (TypeScript) rewrite of -[Bosca Coeil](https://github.com/TerryCavanagh/boscaceoil) using samples +[Bosca Ceoil](https://github.com/TerryCavanagh/boscaceoil) using samples of the preset instruments from [SiON](https://github.com/keim/SiON) (rather than a port of SiON itself). @@ -10,7 +10,7 @@ It is still a prototype, so significant functionality is missing. This was how the SiON samples were recorded: * 100% system volume. -* Create a Bosca Coeil song with 18 patterns, where every even pattern +* Create a Bosca Ceoil song with 18 patterns, where every even pattern is blank. Every odd pattern is a single, full-measure note, starting from C1 and going up to C9. * Record the song in Audacity and use the Sound Finder function to split diff --git a/index.html b/index.html index 1446bee..60cf2c8 100644 --- a/index.html +++ b/index.html @@ -1,18 +1,18 @@ - + - - - + + + - - + + - + - + diff --git a/package-lock.json b/package-lock.json index 6fe698a..c168028 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "bosca-coeil-js", + "name": "bosca-ceoil-js", "version": "0.1.0", "lockfileVersion": 1, "requires": true, diff --git a/package.json b/package.json index 0a24355..3d2acb1 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "bosca-coeil-js", + "name": "bosca-ceoil-js", "version": "0.1.0", "description": "TypeScript port of SiON", "main": "out/index.js", @@ -8,7 +8,7 @@ "compile": "tsc -p ./", "deploy": "node task-deploy.js", "dev": "concurrently npm:watch npm:webpack-dev npm:serve", - "serve": "ws --rewrite \"/bosca-coeil-js/(.*) -> /$1\"", + "serve": "ws --rewrite \"/bosca-ceoil-js/(.*) -> /$1\"", "start": "node out/index.js", "test": "echo \"Error: no test specified\" && exit 1", "watch": "tsc -watch -p ./", @@ -17,14 +17,14 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/mtkennerly/bosca-coeil-js.git" + "url": "git+https://github.com/mtkennerly/bosca-ceoil-js.git" }, "author": "Matthew T. Kennerly", "license": "MIT", "bugs": { - "url": "https://github.com/mtkennerly/bosca-coeil-js/issues" + "url": "https://github.com/mtkennerly/bosca-ceoil-js/issues" }, - "homepage": "https://github.com/mtkennerly/bosca-coeil-js#readme", + "homepage": "https://github.com/mtkennerly/bosca-ceoil-js#readme", "dependencies": { "dialog-polyfill": "^0.5.0", "tone": "^13.4.9" diff --git a/src/index.ts b/src/index.ts index df314b4..976b7f3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,7 +5,7 @@ const notes = ["C1", "C2", "C3", "C4", "C5", "C6", "C7", "C8", "C9"]; export function getSampler( instrument: string, extension: string = "flac", - baseUrl: string = "/bosca-coeil-js/audio/" + baseUrl: string = "/bosca-ceoil-js/audio/" ): tone.Sampler { let samples: { [key: string]: string } = {}; for (const note of notes) {