mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-01-07 00:20:08 +02:00
Release 3.0.11
This commit is contained in:
parent
9ac9c3adc4
commit
14117b73a3
4 changed files with 19 additions and 3 deletions
|
@ -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"
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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;
|
||||||
|
|
11
src/fdroid/fastlane/metadata/android/en/changelogs/401.txt
Normal file
11
src/fdroid/fastlane/metadata/android/en/changelogs/401.txt
Normal 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
|
Loading…
Reference in a new issue