feat(core): edit text override

This commit is contained in:
rhunk
2023-12-04 23:18:02 +01:00
parent ce2fe64c37
commit 35016b589f
4 changed files with 48 additions and 0 deletions

View File

@ -322,6 +322,10 @@
"fidelius_indicator": {
"name": "Fidelius Indicator",
"description": "Adds a green circle next to messages that have been sent only to you"
},
"edit_text_override": {
"name": "Edit Text Override",
"description": "Overrides text field behavior"
}
}
},
@ -795,6 +799,10 @@
"auto_reload": {
"snapchat_only": "Snapchat Only",
"all": "All (Snapchat + SnapEnhance)"
},
"edit_text_override": {
"multi_line_chat_input": "Multi Line Chat Input",
"bypass_text_input_limit": "Bypass Text Input Limit"
}
}
},

View File

@ -50,4 +50,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 editTextOverride = multiple("edit_text_override", "multi_line_chat_input", "bypass_text_input_limit") {
requireRestart(); addNotices(FeatureNotice.BAN_RISK, FeatureNotice.INTERNAL_BEHAVIOR)
}
}