Commit a71bf2c6 authored by Thomas's avatar Thomas
Browse files

Release 3.30.0 - quick link fix

parent 97d803e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ android {
    defaultConfig {
        minSdk 21
        targetSdk 34
        versionCode 521
        versionCode 522
        versionName "3.30.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
+1 −1
Original line number Diff line number Diff line
[
  {
    "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"
  },
  {
+2 −2
Original line number Diff line number Diff line
@@ -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) {
+20 −0
Original line number Diff line number Diff line
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
 No newline at end of file