feat: option to not send typing notifications

This commit is contained in:
Bnyro 2023-07-27 18:15:50 +02:00
commit 57b026b913
6 changed files with 36 additions and 13 deletions

View file

@ -49,6 +49,7 @@ abstract class AppConfig {
static bool showDirectChatsInSpaces = true;
static bool separateChatTypes = false;
static bool autoplayImages = true;
static bool sendTypingNotifications = true;
static bool sendOnEnter = false;
static bool experimentalVoip = false;
static const bool hideTypingUsernames = false;

View file

@ -26,6 +26,8 @@ abstract class SettingKeys {
static const String dontAskForBootstrapKey =
'chat.fluffychat.dont_ask_bootstrap';
static const String autoplayImages = 'chat.fluffy.autoplay_images';
static const String sendTypingNotifications =
'chat.fluffy.send_typing_notifications';
static const String sendOnEnter = 'chat.fluffy.send_on_enter';
static const String experimentalVoip = 'chat.fluffy.experimental_voip';
}