mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-22 09:25:49 +03:00
def67b2e7d
* Add WYSIWYG lib dependency * Replace EditText with RichTextEditor * Add bold button, fix sending formatting messages issues * Add missing inline formatting buttons, make scrollview horizontal * Disable autocomplete for rich text editor * Add formatted text to messages sent, replies, quotes and edited messages. * Several fixes * Add changelog * Try to fix lint issues * Address review comments. * Exclude Epoxy KSP generated files from ktlint checks
10 lines
418 B
Text
10 lines
418 B
Text
Add `formattedText` or similar optional parameters in several methods:
|
|
|
|
* RelationService:
|
|
* editTextMessage
|
|
* editReply
|
|
* replyToMessage
|
|
* SendService:
|
|
* sendQuotedTextMessage
|
|
|
|
This allows us to send any HTML formatted text message without needing to rely on automatic Markdown > HTML translation. All these new parameters have a `null` value by default, so previous calls to these API methods remain compatible.
|