diff --git a/dist/extension.zip b/dist/extension.zip index 5dd0d46..ca6f857 100644 Binary files a/dist/extension.zip and b/dist/extension.zip differ diff --git a/dist/extension/birb.js b/dist/extension/birb.js index e2d47af..8da2977 100644 --- a/dist/extension/birb.js +++ b/dist/extension/birb.js @@ -871,9 +871,9 @@ this.audioContext = new AudioContext(); } - const TIMES = [0, 0.06, 0.10, 0.16]; + const TIMES = [0, 0.06, 0.10, 0.15]; const FREQUENCIES = [2200, - 3500 + Math.random() * 700, + 3500 + Math.random() * 600, 2100 + Math.random() * 200, 1600 + Math.random() * 400]; const VOLUMES = [0.0001, 0.3, 0.3, 0.0001]; diff --git a/dist/obsidian/main.js b/dist/obsidian/main.js index 8707cc3..edee0f1 100644 --- a/dist/obsidian/main.js +++ b/dist/obsidian/main.js @@ -876,9 +876,9 @@ module.exports = class PocketBird extends Plugin { this.audioContext = new AudioContext(); } - const TIMES = [0, 0.06, 0.10, 0.16]; + const TIMES = [0, 0.06, 0.10, 0.15]; const FREQUENCIES = [2200, - 3500 + Math.random() * 700, + 3500 + Math.random() * 600, 2100 + Math.random() * 200, 1600 + Math.random() * 400]; const VOLUMES = [0.0001, 0.3, 0.3, 0.0001]; diff --git a/dist/userscript/birb.user.js b/dist/userscript/birb.user.js index 4eed930..fc3ebd8 100644 --- a/dist/userscript/birb.user.js +++ b/dist/userscript/birb.user.js @@ -885,9 +885,9 @@ this.audioContext = new AudioContext(); } - const TIMES = [0, 0.06, 0.10, 0.16]; + const TIMES = [0, 0.06, 0.10, 0.15]; const FREQUENCIES = [2200, - 3500 + Math.random() * 700, + 3500 + Math.random() * 600, 2100 + Math.random() * 200, 1600 + Math.random() * 400]; const VOLUMES = [0.0001, 0.3, 0.3, 0.0001]; diff --git a/dist/web/birb.embed.js b/dist/web/birb.embed.js index 302a793..83a0d9f 100644 --- a/dist/web/birb.embed.js +++ b/dist/web/birb.embed.js @@ -871,9 +871,9 @@ this.audioContext = new AudioContext(); } - const TIMES = [0, 0.06, 0.10, 0.16]; + const TIMES = [0, 0.06, 0.10, 0.15]; const FREQUENCIES = [2200, - 3500 + Math.random() * 700, + 3500 + Math.random() * 600, 2100 + Math.random() * 200, 1600 + Math.random() * 400]; const VOLUMES = [0.0001, 0.3, 0.3, 0.0001]; diff --git a/dist/web/birb.js b/dist/web/birb.js index 302a793..83a0d9f 100644 --- a/dist/web/birb.js +++ b/dist/web/birb.js @@ -871,9 +871,9 @@ this.audioContext = new AudioContext(); } - const TIMES = [0, 0.06, 0.10, 0.16]; + const TIMES = [0, 0.06, 0.10, 0.15]; const FREQUENCIES = [2200, - 3500 + Math.random() * 700, + 3500 + Math.random() * 600, 2100 + Math.random() * 200, 1600 + Math.random() * 400]; const VOLUMES = [0.0001, 0.3, 0.3, 0.0001]; diff --git a/src/sound.js b/src/sound.js index 9a21670..1756d8d 100644 --- a/src/sound.js +++ b/src/sound.js @@ -12,9 +12,9 @@ export class Birdsong { this.audioContext = new AudioContext(); } - const TIMES = [0, 0.06, 0.10, 0.16]; + const TIMES = [0, 0.06, 0.10, 0.15]; const FREQUENCIES = [2200, - 3500 + Math.random() * 700, + 3500 + Math.random() * 600, 2100 + Math.random() * 200, 1600 + Math.random() * 400]; const VOLUMES = [0.0001, 0.3, 0.3, 0.0001];