mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-07-07 20:30:28 +03:00
Release 3.30.0 - quick link fix
This commit is contained in:
parent
97d803e97f
commit
a71bf2c6f3
4 changed files with 24 additions and 4 deletions
|
@ -13,7 +13,7 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk 21
|
minSdk 21
|
||||||
targetSdk 34
|
targetSdk 34
|
||||||
versionCode 521
|
versionCode 522
|
||||||
versionName "3.30.0"
|
versionName "3.30.0"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"version": "3.30.0",
|
"version": "3.30.0",
|
||||||
"code": "521",
|
"code": "522",
|
||||||
"note": "Added:\n- Allow to follow the discover timelines of Pixelfed instances\n- Keep media proportions in timeline for Pixelfed\n- Add a like button in timelines for Pixelfed\n- Allow to login with a token\n\nChange:\n- Use Pixelfed layout when following Pixelfed instances\n- Allow to scroll buttons for larger screens in conversations\n- Move QR code into header\n\nFixed:\n- Not clickable URLs when Markdown is enabled\n- Nitter to follow Twitter accounts\n- Pixelfed timeline not displayed by default\n- Fix admin reports not accessible\n- Top bar coloring at scroll\n- Drafts not saved when adding/editing media descriptions\n- User search suggestions have duplicates\n- Some minor crashes"
|
"note": "Added:\n- Allow to follow the discover timelines of Pixelfed instances\n- Keep media proportions in timeline for Pixelfed\n- Add a like button in timelines for Pixelfed\n- Allow to login with a token\n\nChange:\n- Use Pixelfed layout when following Pixelfed instances\n- Allow to scroll buttons for larger screens in conversations\n- Move QR code into header\n\nFixed:\n- Not clickable URLs when Markdown is enabled\n- Nitter to follow Twitter accounts\n- Pixelfed timeline not displayed by default\n- Fix admin reports not accessible\n- Top bar coloring at scroll\n- Drafts not saved when adding/editing media descriptions\n- User search suggestions have duplicates\n- Some minor crashes"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -680,10 +680,10 @@ public class Helper {
|
||||||
if (url == null) {
|
if (url == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(networkAvailable == BaseMainActivity.status.DISCONNECTED){
|
/*if(networkAvailable == BaseMainActivity.status.DISCONNECTED){
|
||||||
Toasty.warning(context, context.getString(R.string.toast_error_internet), Toast.LENGTH_LONG).show();
|
Toasty.warning(context, context.getString(R.string.toast_error_internet), Toast.LENGTH_LONG).show();
|
||||||
return;
|
return;
|
||||||
}
|
}*/
|
||||||
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(context);
|
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(context);
|
||||||
boolean customTab = sharedpreferences.getBoolean(context.getString(R.string.SET_CUSTOM_TABS), true);
|
boolean customTab = sharedpreferences.getBoolean(context.getString(R.string.SET_CUSTOM_TABS), true);
|
||||||
if (customTab) {
|
if (customTab) {
|
||||||
|
|
20
src/fdroid/fastlane/metadata/android/en/changelogs/522.txt
Normal file
20
src/fdroid/fastlane/metadata/android/en/changelogs/522.txt
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
Added:
|
||||||
|
- Allow to follow the discover timelines of Pixelfed instances
|
||||||
|
- Keep media proportions in timeline for Pixelfed
|
||||||
|
- Add a like button in timelines for Pixelfed
|
||||||
|
- Allow to login with a token
|
||||||
|
|
||||||
|
Change:
|
||||||
|
- Use Pixelfed layout when following Pixelfed instances
|
||||||
|
- Allow to scroll buttons for larger screens in conversations
|
||||||
|
- Move QR code into header
|
||||||
|
|
||||||
|
Fixed:
|
||||||
|
- Not clickable URLs when Markdown is enabled
|
||||||
|
- Nitter to follow Twitter accounts
|
||||||
|
- Pixelfed timeline not displayed by default
|
||||||
|
- Fix admin reports not accessible
|
||||||
|
- Top bar coloring at scroll
|
||||||
|
- Drafts not saved when adding/editing media descriptions
|
||||||
|
- User search suggestions have duplicates
|
||||||
|
- Some minor crashes
|
Loading…
Reference in a new issue