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 { defaultConfig {
minSdk 21 minSdk 21
targetSdk 31 targetSdk 31
versionCode 400 versionCode 401
versionName "3.0.10" versionName "3.0.11"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
flavorDimensions "default" 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", "version": "3.0.10",
"code": "400", "code": "400",

View file

@ -161,7 +161,7 @@ public class PinnedTimelineHelper {
name = pinnedTimeline.mastodonList.title; name = pinnedTimeline.mastodonList.title;
break; break;
case TAG: case TAG:
name = pinnedTimeline.tagTimeline.name.replaceAll("#", ""); name = pinnedTimeline.tagTimeline.displayName != null && !pinnedTimeline.tagTimeline.displayName.isEmpty() ? pinnedTimeline.tagTimeline.displayName : pinnedTimeline.tagTimeline.name.replaceAll("#", "");
break; break;
case REMOTE: case REMOTE:
name = pinnedTimeline.remoteInstance.host; 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