frontend for xcvr appview

added audio for when you're in a channel and

+4
+4
src/lib/wscontext.svelte.ts
··· 33 33 mySignet: undefined | SignetView 34 34 35 35 audio: HTMLAudioElement = new Audio('/notif.wav') 36 + shortaudio: HTMLAudioElement = new Audio('/shortnotif.wav') 36 37 37 38 beepcoefficient: number = $state(0.0) 38 39 junkword: string = $state("beep") ··· 206 207 if (document.hidden || !document.hasFocus()) { 207 208 this.audio.currentTime = 0 208 209 this.audio.play() 210 + } else { 211 + this.shortaudio.currentTime = 0 212 + this.shortaudio.play() 209 213 } 210 214 if (this.messages.length > 200) { 211 215 this.messages = [...this.messages.slice(this.messages.length - 199), message]
static/shortnotif.wav

This is a binary file and will not be displayed.