mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-06-22 05:00:10 +03:00
Release 3.20.0
This commit is contained in:
parent
e8e7527094
commit
7e2c9ab4a2
4 changed files with 17 additions and 6 deletions
|
@ -13,8 +13,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk 21
|
minSdk 21
|
||||||
targetSdk 33
|
targetSdk 33
|
||||||
versionCode 482
|
versionCode 483
|
||||||
versionName "3.19.1"
|
versionName "3.20.0"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
flavorDimensions "default"
|
flavorDimensions "default"
|
||||||
|
@ -133,7 +133,7 @@ dependencies {
|
||||||
annotationProcessor "com.github.bumptech.glide:compiler:4.12.0"
|
annotationProcessor "com.github.bumptech.glide:compiler:4.12.0"
|
||||||
implementation 'jp.wasabeef:glide-transformations:4.3.0'
|
implementation 'jp.wasabeef:glide-transformations:4.3.0'
|
||||||
implementation 'com.github.penfeizhou.android.animation:glide-plugin:2.23.0'
|
implementation 'com.github.penfeizhou.android.animation:glide-plugin:2.23.0'
|
||||||
implementation 'com.google.android.exoplayer:exoplayer:2.18.1'
|
implementation 'com.google.android.exoplayer:exoplayer:2.18.4'
|
||||||
implementation "androidx.viewpager2:viewpager2:1.0.0"
|
implementation "androidx.viewpager2:viewpager2:1.0.0"
|
||||||
implementation 'com.github.piasy:rxandroidaudio:1.7.0'
|
implementation 'com.github.piasy:rxandroidaudio:1.7.0'
|
||||||
implementation 'com.github.piasy:AudioProcessor:1.7.0'
|
implementation 'com.github.piasy:AudioProcessor:1.7.0'
|
||||||
|
@ -169,11 +169,11 @@ dependencies {
|
||||||
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
|
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
|
||||||
implementation "androidx.fragment:fragment:1.5.5"
|
implementation "androidx.fragment:fragment:1.5.5"
|
||||||
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
||||||
implementation 'androidx.browser:browser:1.4.0'
|
implementation 'androidx.browser:browser:1.5.0'
|
||||||
implementation 'androidx.documentfile:documentfile:1.0.1'
|
implementation 'androidx.documentfile:documentfile:1.0.1'
|
||||||
implementation 'com.github.amoskorir:avatarimagegenerator:1.5.0'
|
implementation 'com.github.amoskorir:avatarimagegenerator:1.5.0'
|
||||||
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'
|
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'
|
||||||
implementation 'com.google.android.exoplayer:extension-mediasession:2.18.1'
|
implementation 'com.google.android.exoplayer:extension-mediasession:2.18.4'
|
||||||
implementation "com.github.mabbas007:TagsEditText:1.0.5"
|
implementation "com.github.mabbas007:TagsEditText:1.0.5"
|
||||||
implementation "net.gotev:uploadservice:4.7.0"
|
implementation "net.gotev:uploadservice:4.7.0"
|
||||||
implementation "net.gotev:uploadservice-okhttp:4.7.0"
|
implementation "net.gotev:uploadservice-okhttp:4.7.0"
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"version": "3.20.0",
|
||||||
|
"code": "483",
|
||||||
|
"note": "Added:\n- \"Follows you\" indicator in accounts list\n- Settings compose: display a dialog to warn if there are missing media description (default: disabled)\n- Settings > Cache: disable battery optimization\n- Settings > Cache - Add charts to check cache logs\n- Settings > Timelines: AutoPlay gif media (default: enabled)\n- Google: Automatic backup of data and settings\n\nChanged:\n- Improve detections of gap in timelines\n- Improve media description\n- Chat view by default\n- Chat view add an indicator for messages when not direct\n\nFixed:\n- Fix an issue with cache and fetch more\n- Cache view with large fonts\n- Bad behaviors with truncated messages"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "3.19.1",
|
"version": "3.19.1",
|
||||||
"code": "482",
|
"code": "482",
|
||||||
|
|
|
@ -658,7 +658,12 @@ public class Helper {
|
||||||
.build();
|
.build();
|
||||||
builder.setDefaultColorSchemeParams(defaultColors);
|
builder.setDefaultColorSchemeParams(defaultColors);
|
||||||
CustomTabsIntent customTabsIntent = builder.build();
|
CustomTabsIntent customTabsIntent = builder.build();
|
||||||
|
try {
|
||||||
customTabsIntent.launchUrl(context, Uri.parse(url));
|
customTabsIntent.launchUrl(context, Uri.parse(url));
|
||||||
|
} catch (Exception e) {
|
||||||
|
Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show();
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Intent intent = new Intent(Intent.ACTION_VIEW);
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
|
|
@ -4,6 +4,7 @@ Added:
|
||||||
- Settings > Cache: disable battery optimization
|
- Settings > Cache: disable battery optimization
|
||||||
- Settings > Cache - Add charts to check cache logs
|
- Settings > Cache - Add charts to check cache logs
|
||||||
- Settings > Timelines: AutoPlay gif media (default: enabled)
|
- Settings > Timelines: AutoPlay gif media (default: enabled)
|
||||||
|
- Google: Automatic backup of data and settings
|
||||||
|
|
||||||
Changed:
|
Changed:
|
||||||
- Improve detections of gap in timelines
|
- Improve detections of gap in timelines
|
||||||
|
|
Loading…
Reference in a new issue