cringe sfx
All checks were successful
Deploy / publish-web (push) Successful in 1m33s

This commit is contained in:
2026-04-12 22:38:48 +06:00
parent 363f1008c6
commit 3658975b93
2 changed files with 3 additions and 3 deletions

View File

@@ -4,12 +4,12 @@ export default defineNuxtPlugin(() => {
// Connection sounds // Connection sounds
on('socket:authenticated', ({ socketId }) => { on('socket:authenticated', ({ socketId }) => {
sfx.playRandomConnectionSound(socketId) sfx.playEvent('stream-on')
}) })
// Client events // Client events
on('client:added', (client) => { on('client:added', (client) => {
sfx.playRandomConnectionSound(client.socketId) sfx.playEvent('stream-on')
}) })
on('client:removed', () => { on('client:removed', () => {

View File

@@ -1,7 +1,7 @@
{ {
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Chad", "productName": "Chad",
"version": "0.2.33", "version": "0.2.34",
"identifier": "xyz.koptilnya.chad", "identifier": "xyz.koptilnya.chad",
"build": { "build": {
"frontendDist": "../.output/public", "frontendDist": "../.output/public",