This commit is contained in:
xmflsct 2023-07-13 22:24:12 +02:00
parent 6e5b06f3a7
commit 8b3ca21ac9
No known key found for this signature in database
GPG Key ID: 078A93AB607D85E0
3 changed files with 8 additions and 1 deletions

View File

@ -1 +1,3 @@
Enjoy toooting! This version includes following improvements and fixes:
- Supports mute duration
- Long press to copy toot

View File

@ -1,2 +1,4 @@
tooot-ing愉快此版本包括以下改进和修复
- 新增neodb.social演出卡片
- 新增neodb.social演出卡片
- 支持选择隐藏用户时限
- 长按复制嘟文

View File

@ -36,6 +36,7 @@ const TimelineContent: React.FC<Props> = ({ notificationOwnToot = false, setSpoi
adaptiveSize
numberOfLines={999}
color={suppressSpoiler ? colors.disabled : undefined}
selectable
/>
{inThread ? (
<CustomText
@ -62,6 +63,7 @@ const TimelineContent: React.FC<Props> = ({ notificationOwnToot = false, setSpoi
}
expandHint={t('shared.content.expandHint')}
setSpoilerExpanded={setSpoilerExpanded}
selectable
/>
</>
) : (
@ -70,6 +72,7 @@ const TimelineContent: React.FC<Props> = ({ notificationOwnToot = false, setSpoi
size={highlighted ? 'L' : 'M'}
adaptiveSize
numberOfLines={highlighted || inThread ? 999 : notificationOwnToot ? 2 : undefined}
selectable
/>
)}
</View>