From bc0b3f8b91ac705d2a7f5c3e5488ae63d6029f0e Mon Sep 17 00:00:00 2001 From: Raphael Forment Date: Mon, 21 Aug 2023 12:24:49 +0200 Subject: [PATCH] clearing out a bunch of samples --- src/API.ts | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/API.ts b/src/API.ts index 3268a27..e450723 100644 --- a/src/API.ts +++ b/src/API.ts @@ -31,16 +31,13 @@ Array.prototype.in = function (this: T[], value: T): boolean { }; async function loadSamples() { - const ds = "https://raw.githubusercontent.com/felixroos/dough-samples/main/"; + // const ds = "https://raw.githubusercontent.com/felixroos/dough-samples/main/"; return Promise.all([ initAudioOnFirstClick(), samples("github:Bubobubobubobubo/Topos-Samples/main"), - samples(`${ds}/tidal-drum-machines.json`), - samples(`${ds}/piano.json`), - samples(`${ds}/Dirt-Samples.json`), - samples(`${ds}/EmuSP12.json`), - samples(`${ds}/vcsl.json`), - registerSynthSounds(), + samples("github:tidalcycles/Dirt-Samples/master").then(() => + registerSynthSounds() + ), ]); }