1
0
Fork 1
mirror of https://codeberg.org/tom79/Fedilab.git synced 2025-03-27 09:09:57 +02:00

Release 3.30.0 - quick link fix

This commit is contained in:
Thomas 2025-03-06 19:10:07 +01:00
parent 97d803e97f
commit a71bf2c6f3
4 changed files with 24 additions and 4 deletions
app
build.gradle
src/main
assets/release_notes
java/app/fedilab/android/mastodon/helper
src/fdroid/fastlane/metadata/android/en/changelogs

View file

@ -13,7 +13,7 @@ android {
defaultConfig {
minSdk 21
targetSdk 34
versionCode 521
versionCode 522
versionName "3.30.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

View file

@ -1,7 +1,7 @@
[
{
"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"
},
{

View file

@ -680,10 +680,10 @@ public class Helper {
if (url == null) {
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();
return;
}
}*/
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(context);
boolean customTab = sharedpreferences.getBoolean(context.getString(R.string.SET_CUSTOM_TABS), true);
if (customTab) {

View 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