Prepares release 2.23.1
This commit is contained in:
parent
773f98055c
commit
cca50a66bb
|
@ -6,8 +6,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 19
|
minSdkVersion 19
|
||||||
targetSdkVersion 29
|
targetSdkVersion 29
|
||||||
versionCode 328
|
versionCode 329
|
||||||
versionName "2.22.2"
|
versionName "2.23.1"
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
renderscriptTargetApi 28 as int
|
renderscriptTargetApi 28 as int
|
||||||
renderscriptSupportModeEnabled true
|
renderscriptSupportModeEnabled true
|
||||||
|
|
|
@ -1003,7 +1003,7 @@ public class API {
|
||||||
account = parseAccountResponse(context, new JSONObject(response));
|
account = parseAccountResponse(context, new JSONObject(response));
|
||||||
InstanceNodeInfo nodeinfo = getNodeInfo(instance);
|
InstanceNodeInfo nodeinfo = getNodeInfo(instance);
|
||||||
if( nodeinfo != null && nodeinfo.getName() != null) {
|
if( nodeinfo != null && nodeinfo.getName() != null) {
|
||||||
account.setSocial(getNodeInfo(instance).getName().toUpperCase());
|
account.setSocial(nodeinfo.getName().toUpperCase());
|
||||||
}
|
}
|
||||||
if (account != null && account.getSocial() != null && account.getSocial().equals("PLEROMA")) {
|
if (account != null && account.getSocial() != null && account.getSocial().equals("PLEROMA")) {
|
||||||
isPleromaAdmin(account.getAcct());
|
isPleromaAdmin(account.getAcct());
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
Added
|
||||||
|
- New layout for timelines
|
||||||
|
- Peertube: add a title before uploading
|
||||||
|
|
||||||
|
Fixed
|
||||||
|
- Notifications not working on some devices
|
||||||
|
- Notifications not clickable
|
||||||
|
- Issue when sharing media
|
||||||
|
- Fix crashes
|
Loading…
Reference in New Issue