@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add a few more sounds

Summary: A few more mp3s to choose from for Conpherence.

Test Plan: Test each sound in a new room.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D17734

+21 -1
+4
resources/celerity/map.php
··· 19 19 'favicon.ico' => '30672e08', 20 20 'maniphest.pkg.css' => '4845691a', 21 21 'maniphest.pkg.js' => '5ab2753f', 22 + 'rsrc/audio/basic/alert.mp3' => '98461568', 23 + 'rsrc/audio/basic/bing.mp3' => 'ab8603a5', 24 + 'rsrc/audio/basic/pock.mp3' => '0cc772f5', 22 25 'rsrc/audio/basic/tap.mp3' => 'fc2fd796', 26 + 'rsrc/audio/basic/ting.mp3' => '17660001', 23 27 'rsrc/css/aphront/aphront-bars.css' => '231ac33c', 24 28 'rsrc/css/aphront/dark-console.css' => '53798a6d', 25 29 'rsrc/css/aphront/dialog-view.css' => '685c7e2d',
+17 -1
src/applications/conpherence/constants/ConpherenceRoomSettings.php
··· 6 6 const SOUND_MENTION = 'mention'; 7 7 8 8 const DEFAULT_RECEIVE_SOUND = 'tap'; 9 - const DEFAULT_MENTION_SOUND = 'tap'; // Upload a new sound 9 + const DEFAULT_MENTION_SOUND = 'alert'; 10 10 const DEFAULT_NO_SOUND = 'none'; 11 11 12 12 public static function getSoundMap() { ··· 15 15 'name' => pht('No Sound'), 16 16 'rsrc' => '', 17 17 ), 18 + 'alert' => array( 19 + 'name' => pht('Alert'), 20 + 'rsrc' => celerity_get_resource_uri('/rsrc/audio/basic/alert.mp3'), 21 + ), 22 + 'bing' => array( 23 + 'name' => pht('Bing'), 24 + 'rsrc' => celerity_get_resource_uri('/rsrc/audio/basic/bing.mp3'), 25 + ), 26 + 'pock' => array( 27 + 'name' => pht('Pock'), 28 + 'rsrc' => celerity_get_resource_uri('/rsrc/audio/basic/pock.mp3'), 29 + ), 18 30 'tap' => array( 19 31 'name' => pht('Tap'), 20 32 'rsrc' => celerity_get_resource_uri('/rsrc/audio/basic/tap.mp3'), 33 + ), 34 + 'ting' => array( 35 + 'name' => pht('Ting'), 36 + 'rsrc' => celerity_get_resource_uri('/rsrc/audio/basic/ting.mp3'), 21 37 ), 22 38 ); 23 39 }
webroot/rsrc/audio/basic/alert.mp3

This is a binary file and will not be displayed.

webroot/rsrc/audio/basic/bing.mp3

This is a binary file and will not be displayed.

webroot/rsrc/audio/basic/pock.mp3

This is a binary file and will not be displayed.

webroot/rsrc/audio/basic/ting.mp3

This is a binary file and will not be displayed.