diff --git a/src/reactions/index.ts b/src/reactions/index.ts index acf7e1816..eab49727a 100644 --- a/src/reactions/index.ts +++ b/src/reactions/index.ts @@ -29,6 +29,8 @@ import waveSoundOgg from "../sound/reactions/wave.ogg?url"; import waveSoundMp3 from "../sound/reactions/wave.mp3?url"; import baduntssSoundOgg from "../sound/reactions/baduntss.ogg?url"; import baduntssSoundMp3 from "../sound/reactions/baduntss.mp3?url"; +import bellSoundOgg from "../sound/reactions/bell.ogg?url"; +import bellSoundMp3 from "../sound/reactions/bell.mp3?url"; export const ElementCallReactionEventType = "io.element.call.reaction"; @@ -201,6 +203,15 @@ export const ReactionSet: ReactionOption[] = [ ogg: baduntssSoundOgg, mp3: baduntssSoundMp3, }, + },, + { + emoji: "🔔", + name: "bell", + alias: ["ding"], + sound: { + ogg: bellSoundOgg, + mp3: bellSoundMp3, + }, }, ]; diff --git a/src/sound/LICENCE.md b/src/sound/LICENCE.md index c4f81363a..2ed799121 100644 --- a/src/sound/LICENCE.md +++ b/src/sound/LICENCE.md @@ -10,6 +10,7 @@ The following sound effects have been licensed from Pixabay, under https://pixab - `reactions/generic` - `reactions/lightbulb` - `reactions/party` +- `reactions/bell` ### Other diff --git a/src/sound/reactions/bell.mp3 b/src/sound/reactions/bell.mp3 new file mode 100644 index 000000000..108c773ca Binary files /dev/null and b/src/sound/reactions/bell.mp3 differ diff --git a/src/sound/reactions/bell.ogg b/src/sound/reactions/bell.ogg new file mode 100644 index 000000000..ef01eec44 Binary files /dev/null and b/src/sound/reactions/bell.ogg differ