From 3658975b93a1c1c30eca845f9d65088e34eb03dd Mon Sep 17 00:00:00 2001 From: opti1337 Date: Sun, 12 Apr 2026 22:38:48 +0600 Subject: [PATCH] cringe sfx --- client/app/plugins/sfx-listener.ts | 4 ++-- client/src-tauri/tauri.conf.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/app/plugins/sfx-listener.ts b/client/app/plugins/sfx-listener.ts index 0d09e52..65fc977 100644 --- a/client/app/plugins/sfx-listener.ts +++ b/client/app/plugins/sfx-listener.ts @@ -4,12 +4,12 @@ export default defineNuxtPlugin(() => { // Connection sounds on('socket:authenticated', ({ socketId }) => { - sfx.playRandomConnectionSound(socketId) + sfx.playEvent('stream-on') }) // Client events on('client:added', (client) => { - sfx.playRandomConnectionSound(client.socketId) + sfx.playEvent('stream-on') }) on('client:removed', () => { diff --git a/client/src-tauri/tauri.conf.json b/client/src-tauri/tauri.conf.json index 81f07d7..f22b5ba 100644 --- a/client/src-tauri/tauri.conf.json +++ b/client/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "Chad", - "version": "0.2.33", + "version": "0.2.34", "identifier": "xyz.koptilnya.chad", "build": { "frontendDist": "../.output/public",