Noah Petherbridge
59fc04b99e
* New "Misc" tab added to the Settings modal with options to reduce spam and improve privacy. * Opt in (or out) for public channel join/leave presence notifications * New option to auto-ignore unsolicited DMs * New sound effects for Watched and Unwatched (your camera) * Reduces spam so ChatServer doesn't need to tell you every time somebody opens your camera. * New spinner icon when opening someone else's camera. * If their cam takes a while to appear, the video button shows a spinner icon as feedback so we avoid ChatClient spam giving you acknowledgement of the cam trying to open.
46 lines
813 B
JavaScript
46 lines
813 B
JavaScript
// Available sound effects.
|
|
const SoundEffects = [
|
|
{
|
|
name: "Quiet",
|
|
filename: null
|
|
},
|
|
{
|
|
name: "Trill",
|
|
filename: "beep-6-96243.mp3"
|
|
},
|
|
{
|
|
name: "Beep",
|
|
filename: "beep-sound-8333.mp3"
|
|
},
|
|
{
|
|
name: "Bird",
|
|
filename: "bird-3-f-89236.mp3"
|
|
},
|
|
{
|
|
name: "Ping",
|
|
filename: "ping-82822.mp3"
|
|
},
|
|
{
|
|
name: "Sonar",
|
|
filename: "sonar-ping-95840.mp3"
|
|
},
|
|
{
|
|
name: "Up Chime",
|
|
filename: "notification-6175-up.mp3"
|
|
},
|
|
{
|
|
name: "Down Chime",
|
|
filename: "notification-6175-down.mp3"
|
|
},
|
|
];
|
|
|
|
// Defaults
|
|
var DefaultSounds = {
|
|
Chat: "Quiet",
|
|
DM: "Trill",
|
|
Enter: "Quiet",
|
|
Leave: "Quiet",
|
|
Watch: "Up Chime",
|
|
Unwatch: "Quiet",
|
|
};
|