Skip to content

Commit

Permalink
Enable inline images by default and move out of experimental settings
Browse files Browse the repository at this point in the history
Change-Id: I31b29911838bba8167a8029d037d299b1bfae526
  • Loading branch information
SpiritCroc committed Dec 27, 2024
1 parent e8cfd8a commit 59d7cc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FEATURES.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Note that following list of changes compared to Element X is likely incomplete,

- Allow sending freeform reactions
- Don't waste horizontal space in message bubbles with forced line-breaks that do not make full use of the available width
- Render inline images such as custom emotes in text messages
- Render inline images such as custom emotes in text messages

- Disable Element's pinned message overlay on top of the conversation screen †
- Access pinned messages via toolbar action when the pinned message overlay is disabled †
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ object ScPrefs {
val PREFER_FREEFORM_REACTIONS = ScBoolPref("PREFER_FREEFORM_REACTIONS", false, R.string.sc_pref_prefer_freeform_reactions_title, R.string.sc_pref_prefer_freeform_reactions_summary, authorsChoice = false)
val PREFER_FULLSCREEN_REACTION_SHEET = ScBoolPref("PREFER_FULLSCREEN_REACTION_SHEET", false, R.string.sc_pref_prefer_fullscreen_reaction_sheet_title, R.string.sc_pref_prefer_fullscreen_reaction_sheet_summary, authorsChoice = false, upstreamChoice = false)
val JUMP_TO_UNREAD = ScBoolPref("JUMP_TO_UNREAD", false, R.string.sc_pref_jump_to_unread_title, R.string.sc_pref_jump_to_unread_option_summary, authorsChoice = true, upstreamChoice = false)
val RENDER_INLINE_IMAGES = ScBoolPref("RENDER_INLINE_IMAGES", false, R.string.sc_pref_render_inline_images_title, R.string.sc_pref_render_inline_images_summary, authorsChoice = true, upstreamChoice = false)
val RENDER_INLINE_IMAGES = ScBoolPref("RENDER_INLINE_IMAGES", true, R.string.sc_pref_render_inline_images_title, R.string.sc_pref_render_inline_images_summary, authorsChoice = true, upstreamChoice = false)

// Advanced theming options - Light theme
val BUBBLE_BG_LIGHT_OUTGOING = ScColorPref("BUBBLE_BG_LIGHT_OUTGOING", R.string.sc_pref_bubble_color_outgoing_title)
Expand Down Expand Up @@ -166,6 +166,7 @@ object ScPrefs {
)),
ScPrefCategory(R.string.sc_pref_category_timeline, null, listOf(
SC_TIMELINE_LAYOUT,
RENDER_INLINE_IMAGES,
FLOATING_DATE,
PINNED_MESSAGE_OVERLAY,
PINNED_MESSAGE_TOOLBAR_ACTION,
Expand All @@ -181,7 +182,6 @@ object ScPrefs {
SPACE_MANAGEMENT,
)),
ScPrefCategory(R.string.sc_pref_category_timeline, null, listOf(
RENDER_INLINE_IMAGES,
PL_DISPLAY_NAME,
JUMP_TO_UNREAD,
SYNC_READ_RECEIPT_AND_MARKER,
Expand Down

0 comments on commit 59d7cc8

Please sign in to comment.