Release 3.0.11
This commit is contained in:
parent
9ac9c3adc4
commit
14117b73a3
|
@ -9,8 +9,8 @@ android {
|
|||
defaultConfig {
|
||||
minSdk 21
|
||||
targetSdk 31
|
||||
versionCode 400
|
||||
versionName "3.0.10"
|
||||
versionCode 401
|
||||
versionName "3.0.11"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
flavorDimensions "default"
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
[
|
||||
{
|
||||
"version": "3.0.11",
|
||||
"code": "401",
|
||||
"note": "Changed:\n- Composing messages is no longer forced to max chars\n\nFixed:\n- Cross-account follow\n- Cannot subscribe to notifications for an account\n- Issues when sharing\n- Wrong profile for emoji reactions in notifications\n- Issue with cards\n- Crashes with tabs\n- Tabs cannot be renamed"
|
||||
},
|
||||
{
|
||||
"version": "3.0.10",
|
||||
"code": "400",
|
||||
|
|
|
@ -161,7 +161,7 @@ public class PinnedTimelineHelper {
|
|||
name = pinnedTimeline.mastodonList.title;
|
||||
break;
|
||||
case TAG:
|
||||
name = pinnedTimeline.tagTimeline.name.replaceAll("#", "");
|
||||
name = pinnedTimeline.tagTimeline.displayName != null && !pinnedTimeline.tagTimeline.displayName.isEmpty() ? pinnedTimeline.tagTimeline.displayName : pinnedTimeline.tagTimeline.name.replaceAll("#", "");
|
||||
break;
|
||||
case REMOTE:
|
||||
name = pinnedTimeline.remoteInstance.host;
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
Changed:
|
||||
- Composing messages is no longer forced to max chars
|
||||
|
||||
Fixed:
|
||||
- Cross-account follow
|
||||
- Cannot subscribe to notifications for an account
|
||||
- Issues when sharing
|
||||
- Wrong profile for emoji reactions in notifications
|
||||
- Issue with cards
|
||||
- Crashes with tabs
|
||||
- Tabs cannot be renamed
|
Loading…
Reference in New Issue