feat: stealth mode indicator

This commit is contained in:
rhunk
2024-01-17 14:53:15 +01:00
parent 8c71e4af27
commit 93490c323c
5 changed files with 89 additions and 0 deletions

View File

@ -340,6 +340,10 @@
"name": "Fidelius Indicator",
"description": "Adds a green circle next to messages that have been sent only to you"
},
"stealth_mode_indicator": {
"name": "Stealth Mode Indicator",
"description": "Adds a \uD83D\uDC7B emoji next to conversations in stealth mode"
},
"edit_text_override": {
"name": "Edit Text Override",
"description": "Overrides text field behavior"

View File

@ -49,6 +49,7 @@ class UserInterfaceTweaks : ConfigContainer() {
val hideSettingsGear = boolean("hide_settings_gear") { requireRestart() }
val verticalStoryViewer = boolean("vertical_story_viewer") { requireRestart() }
val fideliusIndicator = boolean("fidelius_indicator") { requireRestart() }
val stealthModeIndicator = boolean("stealth_mode_indicator") { requireRestart() }
val editTextOverride = multiple("edit_text_override", "multi_line_chat_input", "bypass_text_input_limit") {
requireRestart(); addNotices(FeatureNotice.BAN_RISK, FeatureNotice.INTERNAL_BEHAVIOR)
}