Release 3.0.11

This commit is contained in:
Thomas 2022-07-25 19:00:32 +02:00
parent 9ac9c3adc4
commit 14117b73a3
4 changed files with 19 additions and 3 deletions

View File

@ -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"

View File

@ -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",

View File

@ -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;

View File

@ -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