added hardcoded changelog

This commit is contained in:
X1nto 2020-05-11 23:38:10 +04:00
parent 2077bf8c5e
commit 2ae54b40ae
5 changed files with 18 additions and 12 deletions

View File

@ -2,7 +2,6 @@ package com.vanced.manager.core.fragments
import android.content.ComponentName
import android.content.Intent
import android.content.pm.PackageManager
import android.net.Uri
import android.os.Bundle
import android.view.View

View File

@ -5,6 +5,7 @@ import androidx.fragment.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.TextView
import com.vanced.manager.R
/**
@ -18,5 +19,4 @@ class MicrogChangelogFragment : Fragment() {
): View? {
return inflater.inflate(R.layout.fragment_microg_changelog, container, false)
}
}

View File

@ -1,10 +1,12 @@
package com.vanced.manager.ui.fragments
import android.annotation.SuppressLint
import android.os.Bundle
import androidx.fragment.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.TextView
import com.vanced.manager.R
/**
@ -19,8 +21,4 @@ class VancedChangelogFragment : Fragment() {
return inflater.inflate(R.layout.fragment_vanced_changelog, container, false)
}
fun fetchChangelog() {
val url = ""
}
}

View File

@ -7,10 +7,11 @@
tools:context=".ui.fragments.MicrogChangelogFragment">
<TextView
android:id="@+id/microg_changelog"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="32sp"
android:text="Same but for microg"
android:textAlignment="center" />
android:textSize="18sp"
android:text="Wait who even cares about microg changelog lol"
tools:ignore="HardcodedText" />
</FrameLayout>

View File

@ -7,10 +7,18 @@
tools:context=".ui.fragments.VancedChangelogFragment">
<TextView
android:id="@+id/vanced_changelog"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="32sp"
android:textAlignment="center"
android:text="This is a hardcoded string" />
android:textSize="18sp"
android:text="Removed:\n
- Auto subtitles (has been replaced with live captions)\n
- minimised video player style (Google removed it) \n
- auto repeat (might be fixed later) \n
- accessibility seek buttons (might be fixed later) \n\nChanged:
- Whatever Youtube fixed over 9 months :P \n
- some small bugs \n
- Installation now with SAI"
tools:ignore="HardcodedText" />
</FrameLayout>