Merge pull request #8 from Bnyro/master

sync with main
This commit is contained in:
Bnyro 2022-05-23 13:47:43 +02:00 committed by GitHub
commit d03e9f415b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
31 changed files with 74 additions and 208 deletions

View File

@ -1,19 +1,16 @@
<div align="center"> <div align="center">
<img src="app/src/main/res/mipmap-xxxhdpi/ic_launcher.png" width="150" height="150" alt="LibreTube"> <img src="https://libre-tube.github.io/assets/gh-banner.png" width="auto" height="auto" alt="LibreTube">
<h1><a href="https://libre-tube.github.io">LibreTube</a></h1>
<p>Alternative YouTube frontend for Android<br />built with <a href="https://github.com/TeamPiped/Piped">Piped</a></p>
<a href="https://hosted.weblate.org/projects/libretube/#languages" alt="Translation Status"><img src="https://hosted.weblate.org/widgets/libretube/-/svg-badge.svg"></a> [![GPL-v3](https://libre-tube.github.io/assets/license-widget.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)
[![GPL-v3](https://shields.io/badge/License-GPL%20v3-red.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html) [![Matrix](https://libre-tube.github.io/assets/mat-widget.svg)](https://matrix.to/#/#LibreTube:matrix.org)
[![Matrix](https://img.shields.io/matrix/LibreTube:matrix.org)](https://matrix.to/#/#LibreTube:matrix.org) [![Telegram](https://libre-tube.github.io/assets/tg-widget.svg)](https://t.me/libretube)
[![Telegram](https://img.shields.io/endpoint?color=neon&style=flat-square&url=https://tg.sumanjay.workers.dev/libretube)](https://t.me/libretube) [![Twitter](https://libre-tube.github.io/assets/tw-widget.svg)](https://twitter.com/libretube)
[![Twitter](https://img.shields.io/twitter/follow/libretube?style=social)](https://twitter.com/libretube) [![Reddit](https://libre-tube.github.io/assets/rd-widget.svg)](https://www.reddit.com/r/Libretube/)
[![Reddit](https://img.shields.io/reddit/subreddit-subscribers/libretube?style=social)](https://www.reddit.com/r/Libretube/)
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/en/packages/com.github.libretube/) [<img src="https://libre-tube.github.io/assets/fdrload.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/en/packages/com.github.libretube/)
[<img src="https://github.com/machiav3lli/oandbackupx/blob/034b226cea5c1b30eb4f6a6f313e4dadcbb0ece4/badge_github.png" alt="Get it on GitHub" height="80">](https://github.com/libre-tube/LibreTube/releases/latest) [<img src="https://libre-tube.github.io/assets/ghload.png" alt="Get it on GitHub" height="80">](https://github.com/libre-tube/LibreTube/releases/latest)
[<img src="https://libre-tube.github.io/assets/tgload.png" alt="Get it on GitHub" height="80">](https://t.me/LibreTube)
</div> </div>
WARNING: THIS IS A BETA VERSION, THEREFORE YOU MAY ENCOUNTER BUGS. IF YOU DO, OPEN AN ISSUE VIA OUR GITHUB REPOSITORY.
## Screenshots ## Screenshots
@ -44,6 +41,8 @@ WARNING: THIS IS A BETA VERSION, THEREFORE YOU MAY ENCOUNTER BUGS. IF YOU DO, OP
## Contributing ## Contributing
Whether you have ideas, translations, design changes, code cleaning, or real heavy code changes, help is always welcome. The more is done the better it gets! Whether you have ideas, translations, design changes, code cleaning, or real heavy code changes, help is always welcome. The more is done the better it gets!
WARNING: THIS IS A BETA VERSION, THEREFORE YOU MAY ENCOUNTER BUGS. IF YOU DO, OPEN AN ISSUE VIA OUR GITHUB REPOSITORY.
### Translation ### Translation
<a href="https://hosted.weblate.org/projects/libretube/#languages"> <a href="https://hosted.weblate.org/projects/libretube/#languages">
<img src="https://hosted.weblate.org/widgets/libretube/-/287x66-grey.png" alt="Translation status" /> <img src="https://hosted.weblate.org/widgets/libretube/-/287x66-grey.png" alt="Translation status" />

View File

@ -325,7 +325,9 @@ class PlayerFragment : Fragment() {
val segmentEnd = (segment.segment[1] * 1000.0f).toLong() val segmentEnd = (segment.segment[1] * 1000.0f).toLong()
val currentPosition = exoPlayer.currentPosition val currentPosition = exoPlayer.currentPosition
if (currentPosition in segmentStart until segmentEnd) { if (currentPosition in segmentStart until segmentEnd) {
Toast.makeText(context, R.string.segment_skipped, Toast.LENGTH_SHORT).show() if (SponsorBlockSettings.sponsorNotificationsEnabled) {
Toast.makeText(context, R.string.segment_skipped, Toast.LENGTH_SHORT).show()
}
exoPlayer.seekTo(segmentEnd) exoPlayer.seekTo(segmentEnd)
} }
} }

View File

@ -9,6 +9,7 @@ class SponsorBlockSettings : PreferenceFragmentCompat() {
companion object { companion object {
var sponsorBlockEnabled: Boolean = false var sponsorBlockEnabled: Boolean = false
var sponsorNotificationsEnabled: Boolean = false
var sponsorsEnabled: Boolean = false var sponsorsEnabled: Boolean = false
var selfPromoEnabled: Boolean = false var selfPromoEnabled: Boolean = false
var interactionEnabled: Boolean = false var interactionEnabled: Boolean = false
@ -18,12 +19,18 @@ class SponsorBlockSettings : PreferenceFragmentCompat() {
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) { override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
setPreferencesFromResource(R.xml.sponsorblock_settings, rootKey) setPreferencesFromResource(R.xml.sponsorblock_settings, rootKey)
val sponsorBlockToggle = findPreference<SwitchPreferenceCompat>("sponsorblock_enabled_key") val sponsorBlockToggle = findPreference<SwitchPreferenceCompat>("sb_enabled_key")
sponsorBlockToggle?.setOnPreferenceChangeListener { _, newValue -> sponsorBlockToggle?.setOnPreferenceChangeListener { _, newValue ->
sponsorBlockEnabled = newValue as Boolean sponsorBlockEnabled = newValue as Boolean
true true
} }
val notificationsToggle = findPreference<SwitchPreferenceCompat>("sb_notifications_key")
notificationsToggle?.setOnPreferenceChangeListener { _, newValue ->
sponsorNotificationsEnabled = newValue as Boolean
true
}
val sponsorToggle = findPreference<SwitchPreferenceCompat>("sponsors_category_key") val sponsorToggle = findPreference<SwitchPreferenceCompat>("sponsors_category_key")
sponsorToggle?.setOnPreferenceChangeListener { _, newValue -> sponsorToggle?.setOnPreferenceChangeListener { _, newValue ->
sponsorsEnabled = newValue as Boolean sponsorsEnabled = newValue as Boolean

View File

@ -4,27 +4,27 @@
android:height="108dp" android:height="108dp"
android:viewportWidth="108" android:viewportWidth="108"
android:viewportHeight="108"> android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z"> <group android:scaleX="0.084375"
<aapt:attr name="android:fillColor"> android:scaleY="0.084375">
<gradient <path
android:endX="85.84757" android:pathData="M0,0h1280v1280h-1280z"
android:endY="92.4963" android:fillColor="#161316"/>
android:startX="42.9492" <path
android:startY="49.59793" android:pathData="M880,639.6C880,637.1 878.6,634.7 876.4,633.4L495,410.4C488.4,406.5 480,411.3 480,419V515.2C480,518.8 481.9,522.1 485.1,523.9L675.1,631.2C681.9,635 681.9,644.8 675.1,648.6L485.1,755.9C481.9,757.7 480,761 480,764.6V860.8C480,868.5 488.4,873.3 495.1,869.4L876.4,645.9C878.6,644.6 880,642.2 880,639.6Z">
android:type="linear"> <aapt:attr name="android:fillColor">
<item <gradient
android:color="#44000000" android:startX="680"
android:offset="0.0" /> android:startY="409"
<item android:endX="680"
android:color="#00000000" android:endY="870.8"
android:offset="1.0" /> android:type="linear">
</gradient> <item android:offset="0" android:color="#FFFF5A8B"/>
</aapt:attr> <item android:offset="1" android:color="#FFFFD1A7"/>
</gradient>
</aapt:attr>
</path> </path>
<path <path
android:fillColor="#FFFFFF" android:pathData="M614.7,631.1C621.4,634.9 621.4,644.7 614.7,648.5L494.9,716.4C488.3,720.2 480,715.3 480,707.7V571.9C480,564.2 488.3,559.4 494.9,563.2L614.7,631.1Z"
android:fillType="nonZero" android:fillColor="#F2EEFF"/>
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z" </group>
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector> </vector>

View File

@ -1,74 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<vector
android:height="108dp"
android:width="108dp"
android:viewportHeight="108"
android:viewportWidth="108"
xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z"/>
<path android:fillColor="#00000000" android:pathData="M9,0L9,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,0L19,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M29,0L29,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M39,0L39,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M49,0L49,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M59,0L59,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M69,0L69,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M79,0L79,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M89,0L89,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M99,0L99,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,9L108,9"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,19L108,19"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,29L108,29"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,39L108,39"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,49L108,49"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,59L108,59"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,69L108,69"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,79L108,79"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,89L108,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,99L108,99"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,29L89,29"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,39L89,39"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,49L89,49"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,59L89,59"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,69L89,69"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,79L89,79"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M29,19L29,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M39,19L39,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M49,19L49,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M59,19L59,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M69,19L69,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M79,19L79,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
</vector>

View File

@ -1,92 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<group android:scaleX="0.14132813"
android:scaleY="0.14132813"
android:translateX="17.82"
android:translateY="17.82">
<path
android:pathData="M0,0l512,0l0,512l-512,0z"
android:strokeLineJoin="round"
android:strokeWidth="13.6290655"
android:fillColor="#cd5757"/>
<path
android:pathData="m186.287,194.05c-12.78,-7.379 -12.779,-137.951 0,-145.329 12.779,-7.378 139.519,58.645 139.457,73.399 -0.061,14.755 -126.677,79.308 -139.457,71.929z"
android:strokeWidth="1.1805346"
android:fillColor="#5e3d3d"
android:strokeColor="#00000000"
android:fillType="nonZero"/>
<path
android:pathData="m250.679,163.821c-6.755,-3.766 46.913,-21.2 47.077,-41.779 0.167,-20.877 -53.389,-38.674 -47.077,-43.089 6.159,-4.308 67.244,34.247 67.215,42.864 -0.029,8.616 -60.627,45.677 -67.215,42.005z"
android:strokeWidth="0.4697333"
android:fillColor="#ffffff"
android:strokeColor="#00000000"
android:fillType="nonZero"/>
<path
android:fillColor="#5e3d3d"
android:pathData="m212.553,211.009c-8.922,2.015 -15.168,5.152 -15.168,9.296l0,24.176c0,3.885 5.468,6.879 13.469,8.922 -2.446,3.598 -1.554,5.929 -0.518,8.318 0.72,1.641 1.439,3.367 1.238,5.871 -0.029,0.863 -0.489,1.612 -0.979,2.504 -0.748,1.324 -1.612,2.821 -1.209,4.922 0.23,1.381 0.892,2.302 1.525,3.08 0.576,0.748 1.094,1.41 1.209,2.475 0.144,0.921 0.029,1.928 -0.086,2.964 -0.201,1.698 -0.374,3.454 0.403,5.209 0.518,1.151 1.295,1.813 2.015,2.389 0.662,0.576 1.209,1.007 1.381,1.813 0.201,0.863 0.173,1.756 0.144,2.705 -0.029,1.41 -0.058,2.878 0.662,4.375 0.921,1.928 3.569,4.058 4.519,4.806 0.086,1.842 0.547,9.21 0.604,11.512 0.086,3.511 1.525,6.13 4.231,7.857 4.288,2.705 9.383,2.59 11.368,2.418 0.777,2.993 3.425,13.844 4.403,17.24 2.389,8.548 4.058,17.412 5.699,25.989l2.705,14.131c1.497,7.742 3.051,15.513 4.605,23.255 -12.203,13.383 -21.758,29.788 -30.047,45.301 -1.9,3.569 -2.763,7.339 -1.18,11.052 2.015,4.806 4.288,9.498 7.08,13.93 1.842,2.936 4.26,5.699 5.756,8.778 2.907,6.015 -4.029,9.987 -3.108,15.772 0.633,3.972 2.821,7.224 5.843,9.929l248.351,0c-2.043,-3.972 -4.95,-7.425 -7.8,-10.764 -1.094,-1.295 -2.187,-2.562 -3.223,-3.885 -0.806,-1.007 -1.641,-2.043 -2.504,-3.08 -4.26,-5.181 -9.095,-11.052 -10.476,-17.412 -0.604,-2.821 0.489,-5.468 1.641,-8.289 0.662,-1.583 1.324,-3.195 1.669,-4.864 1.612,-7.397 -0.777,-12.808 -3.31,-18.535 -1.094,-2.504 -2.245,-5.094 -3.08,-7.915 -1.324,-4.663 -0.23,-9.181 0.95,-13.959 0.921,-3.799 1.871,-7.742 1.525,-11.771 -0.259,-2.964 -0.835,-5.929 -1.583,-8.836l49.762,-20.607c0.748,-0.317 1.122,-1.094 0.892,-1.842 -0.201,-0.748 -0.863,-1.238 -1.698,-1.151l-55.173,6.792c-0.921,-1.928 -1.784,-3.828 -2.677,-5.641 -1.122,-2.302 -2.389,-4.749 -3.799,-7.195l36.926,-39.631c0.547,-0.576 0.576,-1.468 0.086,-2.043 -0.489,-0.604 -1.381,-0.777 -2.043,-0.345L438.253,358.828C435.577,356.036 432.583,353.475 429.159,351.46 427.259,350.337 425.244,349.416 423.23,348.495l11.225,-56.353c0.144,-0.777 -0.259,-1.525 -1.007,-1.784 -0.748,-0.288 -1.554,0.086 -1.9,0.777l-26.335,52.295c-2.648,-0.317 -5.296,-0.518 -8.001,-0.518 -2.533,0 -4.95,0.201 -7.368,0.489L359.163,289.437c-0.374,-0.662 -1.209,-0.979 -1.957,-0.662 -0.72,0.288 -1.122,1.065 -0.921,1.842l14.678,58.195c-5.209,2.562 -9.958,5.871 -14.074,9.958 -0.173,0.173 -0.288,0.345 -0.432,0.489L303.99,334.076c-0.691,-0.345 -1.525,-0.115 -1.986,0.547 -0.403,0.662 -0.288,1.525 0.288,2.043L345.579,374.427c-0.892,1.784 -1.698,3.511 -2.302,5.209 -1.324,3.626 -2.187,7.483 -2.734,11.426l-34.364,10.361c-1.007,-6.188 -1.986,-12.376 -4.346,-17.988 -1.353,-3.252 -4.749,-2.475 -7.598,-1.698 -1.698,0.46 -3.31,1.007 -4.922,1.554 -11.081,-30.076 -20.032,-55.087 -20.118,-57.274 0,-0.576 -0.23,-2.072 -0.604,-4.144 -1.007,-6.015 -2.907,-17.269 -1.928,-25.097 0.72,-5.843 -1.036,-19.427 -1.813,-25.011 -0.892,-6.389 -1.957,-12.433 -4.231,-16.722 12.289,-1.842 21.73,-5.411 21.73,-10.534l0,-24.176c0,-4.547 -7.425,-7.857 -17.671,-9.843 -34.94,-4.403 -52.122,0.518 -52.122,0.518zM310.466,418.922C309.257,415.987 308.451,412.907 307.789,409.828l32.868,-0.748c0.432,3.77 0.892,7.541 1.381,11.311l-21.614,11.685c-3.626,-4.202 -7.857,-8.087 -9.958,-13.153zM353.781,468.023c-3.482,-5.468 -6.965,-11.023 -12.462,-14.65 -2.13,-1.381 -5.584,-2.418 -8.03,-2.964 -1.036,-0.23 -2.187,0.144 -3.252,0.029 -0.979,-0.115 -1.525,-0.691 -2.59,-0.662 -0.432,-3.799 -0.835,-6.677 -1.842,-9.44l18.103,-4.144c0.317,4.547 0.806,9.124 2.619,12.894 1.065,2.216 3.08,3.252 4.893,4.173 1.554,0.806 3.022,1.554 3.799,2.964 0.748,1.381 0.173,6.476 -1.238,11.8z"/>
<group>
<clip-path
android:pathData="m212.553,211.009c-8.922,2.015 -15.168,5.152 -15.168,9.296l0,24.176c0,3.885 5.468,6.879 13.469,8.922 -2.446,3.598 -1.554,5.929 -0.518,8.318 0.72,1.641 1.439,3.367 1.238,5.871 -0.029,0.863 -0.489,1.612 -0.979,2.504 -0.748,1.324 -1.612,2.821 -1.209,4.922 0.23,1.381 0.892,2.302 1.525,3.08 0.576,0.748 1.094,1.41 1.209,2.475 0.144,0.921 0.029,1.928 -0.086,2.964 -0.201,1.698 -0.374,3.454 0.403,5.209 0.518,1.151 1.295,1.813 2.015,2.389 0.662,0.576 1.209,1.007 1.381,1.813 0.201,0.863 0.173,1.756 0.144,2.705 -0.029,1.41 -0.058,2.878 0.662,4.375 0.921,1.928 3.569,4.058 4.519,4.806 0.086,1.842 0.547,9.21 0.604,11.512 0.086,3.511 1.525,6.13 4.231,7.857 4.288,2.705 9.383,2.59 11.368,2.418 0.777,2.993 3.425,13.844 4.403,17.24 2.389,8.548 4.058,17.412 5.699,25.989l2.705,14.131c1.497,7.742 3.051,15.513 4.605,23.255 -12.203,13.383 -21.758,29.788 -30.047,45.301 -1.9,3.569 -2.763,7.339 -1.18,11.052 2.015,4.806 4.288,9.498 7.08,13.93 1.842,2.936 4.26,5.699 5.756,8.778 2.907,6.015 -4.029,9.987 -3.108,15.772 0.633,3.972 2.821,7.224 5.843,9.929l248.351,0c-2.043,-3.972 -4.95,-7.425 -7.8,-10.764 -1.094,-1.295 -2.187,-2.562 -3.223,-3.885 -0.806,-1.007 -1.641,-2.043 -2.504,-3.08 -4.26,-5.181 -9.095,-11.052 -10.476,-17.412 -0.604,-2.821 0.489,-5.468 1.641,-8.289 0.662,-1.583 1.324,-3.195 1.669,-4.864 1.612,-7.397 -0.777,-12.808 -3.31,-18.535 -1.094,-2.504 -2.245,-5.094 -3.08,-7.915 -1.324,-4.663 -0.23,-9.181 0.95,-13.959 0.921,-3.799 1.871,-7.742 1.525,-11.771 -0.259,-2.964 -0.835,-5.929 -1.583,-8.836l49.762,-20.607c0.748,-0.317 1.122,-1.094 0.892,-1.842 -0.201,-0.748 -0.863,-1.238 -1.698,-1.151l-55.173,6.792c-0.921,-1.928 -1.784,-3.828 -2.677,-5.641 -1.122,-2.302 -2.389,-4.749 -3.799,-7.195l36.926,-39.631c0.547,-0.576 0.576,-1.468 0.086,-2.043 -0.489,-0.604 -1.381,-0.777 -2.043,-0.345L438.253,358.828C435.577,356.036 432.583,353.475 429.159,351.46 427.259,350.337 425.244,349.416 423.23,348.495l11.225,-56.353c0.144,-0.777 -0.259,-1.525 -1.007,-1.784 -0.748,-0.288 -1.554,0.086 -1.9,0.777l-26.335,52.295c-2.648,-0.317 -5.296,-0.518 -8.001,-0.518 -2.533,0 -4.95,0.201 -7.368,0.489L359.163,289.437c-0.374,-0.662 -1.209,-0.979 -1.957,-0.662 -0.72,0.288 -1.122,1.065 -0.921,1.842l14.678,58.195c-5.209,2.562 -9.958,5.871 -14.074,9.958 -0.173,0.173 -0.288,0.345 -0.432,0.489L303.99,334.076c-0.691,-0.345 -1.525,-0.115 -1.986,0.547 -0.403,0.662 -0.288,1.525 0.288,2.043L345.579,374.427c-0.892,1.784 -1.698,3.511 -2.302,5.209 -1.324,3.626 -2.187,7.483 -2.734,11.426l-34.364,10.361c-1.007,-6.188 -1.986,-12.376 -4.346,-17.988 -1.353,-3.252 -4.749,-2.475 -7.598,-1.698 -1.698,0.46 -3.31,1.007 -4.922,1.554 -11.081,-30.076 -20.032,-55.087 -20.118,-57.274 0,-0.576 -0.23,-2.072 -0.604,-4.144 -1.007,-6.015 -2.907,-17.269 -1.928,-25.097 0.72,-5.843 -1.036,-19.427 -1.813,-25.011 -0.892,-6.389 -1.957,-12.433 -4.231,-16.722 12.289,-1.842 21.73,-5.411 21.73,-10.534l0,-24.176c0,-4.547 -7.425,-7.857 -17.671,-9.843 -34.94,-4.403 -52.122,0.518 -52.122,0.518zM310.466,418.922C309.257,415.987 308.451,412.907 307.789,409.828l32.868,-0.748c0.432,3.77 0.892,7.541 1.381,11.311l-21.614,11.685c-3.626,-4.202 -7.857,-8.087 -9.958,-13.153zM353.781,468.023c-3.482,-5.468 -6.965,-11.023 -12.462,-14.65 -2.13,-1.381 -5.584,-2.418 -8.03,-2.964 -1.036,-0.23 -2.187,0.144 -3.252,0.029 -0.979,-0.115 -1.525,-0.691 -2.59,-0.662 -0.432,-3.799 -0.835,-6.677 -1.842,-9.44l18.103,-4.144c0.317,4.547 0.806,9.124 2.619,12.894 1.065,2.216 3.08,3.252 4.893,4.173 1.554,0.806 3.022,1.554 3.799,2.964 0.748,1.381 0.173,6.476 -1.238,11.8z"/>
<path
android:pathData="m328.713,480.945c-1.209,2.101 -2.13,3.943 -2.533,4.806 -3.655,7.8 -10.908,21.528 -9.21,30.45 0.173,0.835 7.08,0.23 7.569,0.23 3.799,0 7.454,0.403 11.167,0.547 6.13,0.201 12.261,-0.662 18.391,-0.086 2.533,0.23 4.547,1.209 7.138,0.835 2.619,-0.374 5.181,-1.209 7.8,-1.727 1.381,-0.259 2.389,-0.086 3.022,-1.554 -1.094,2.533 -15.283,-7.771 -16.635,-9.152 -5.9,-5.871 -12.059,-15.081 -13.009,-23.313 -0.259,-2.245 -0.259,-6.389 -1.583,-8.346 -3.569,-5.296 -8.893,1.813 -12.117,7.31z"
android:fillColor="#ffffff"/>
</group>
<path
android:pathData="m390.189,461.95c-4.749,0 -9.095,-1.468 -12.203,-4.173 -0.489,-0.432 -1.065,-0.806 -1.641,-1.151L374.849,455.561c-2.015,-1.727 -3.799,-4.001 -5.296,-6.735l-0.691,-1.238c-2.59,-4.691 -5.612,-10.246 -6.533,-15.657 -0.086,-0.518 -0.173,-1.036 -0.201,-1.554 -0.058,-0.547 -0.058,-1.065 -0.058,-1.612 0,-0.46 -0.029,-0.95 0,-1.41 0.086,-0.748 0.23,-1.468 0.489,-2.13 0.288,-0.72 0.72,-1.41 1.122,-2.101 0.374,-0.633 0.748,-1.266 1.065,-1.928 0.288,-0.23 0.604,-0.46 0.892,-0.691 0.46,-0.345 0.892,-0.662 1.324,-0.979 0.345,-0.23 0.691,-0.46 1.007,-0.633 0.115,-0.058 0.259,-0.058 0.374,-0.115 1.928,-0.777 5.209,-0.345 6.332,-1.784 2.331,-3.022 -1.065,-10.994 -1.784,-14.016 -4.979,-0.576 -9.699,1.266 -13.268,4.461 -0.403,0.374 -0.863,0.748 -1.238,1.151 -0.662,0.691 -1.238,1.468 -1.784,2.274 -0.029,-0.23 -0.086,-0.432 -0.115,-0.691 0,-0.489 0.144,-1.007 0.173,-1.497 0.058,-0.518 0.058,-1.036 0.173,-1.554 0.23,-1.122 0.633,-2.187 1.094,-3.281 0.374,-0.892 0.806,-1.727 1.295,-2.59 0.835,-1.497 1.727,-2.964 2.59,-4.346l1.036,-1.641c2.159,-3.454 4.691,-6.476 7.339,-9.67l1.957,-2.331c1.698,-2.13 4.058,-5.037 6.936,-5.468 1.036,0 2.187,0.547 3.31,1.065l1.065,0.489c3.051,1.266 6.245,2.274 9.383,3.223 4.749,1.497 9.67,3.022 14.016,5.526 0.835,0.489 1.698,1.065 2.562,1.641 -7.512,1.238 -22.075,-0.144 -24.636,8.692 -1.151,4.087 -0.892,8.375 -1.238,12.606 -0.173,2.101 -0.489,4.202 -1.209,6.188 -0.748,1.957 -1.41,2.562 -3.454,3.195 -1.525,0.489 -2.072,1.583 -2.187,3.08 -0.115,1.381 0,2.792 0,4.173 0,4.001 2.993,5.065 6.073,4.95 -1.957,0.979 -3.569,2.36 -4.202,4.087 -0.403,1.036 -1.381,3.281 -1.036,4.375 0.691,1.986 4.029,0 5.296,-0.317 1.353,-0.317 2.734,-0.72 4.058,-1.094 2.389,-0.633 4.72,-1.468 7.195,-1.554 1.065,-0.029 4.432,0.374 4.95,-1.065 0.748,-2.015 -1.468,-3.511 -3.569,-4.49 -0.95,-0.489 -1.928,-0.806 -2.533,-1.065 -1.238,-0.489 -2.821,-0.576 -4.461,-0.46 4.202,-2.418 4.375,-7.138 4.691,-12.117 0.489,-7.972 5.353,-11.973 13.383,-10.822 8.807,1.266 12.232,9.325 12.289,17.269 -0.173,1.554 -0.345,3.08 -0.691,4.576 -3.828,17.643 -10.735,27.774 -21.183,30.968 -2.187,0.72 -4.461,1.036 -6.764,1.036z"
android:fillColor="#ffffff"/>
<path
android:pathData="m395.283,442.868c-0.748,-0.403 -1.928,-0.345 -2.821,-0.259 -1.669,0.173 -3.281,0.432 -4.835,0.979 -0.95,0.345 -4.806,2.072 -4.001,3.713 0.921,1.784 6.245,0.863 7.685,0.432 1.525,-0.46 4.403,-1.18 4.749,-3.022 0.173,-0.979 -0.173,-1.554 -0.777,-1.842z"
android:fillColor="#cd5757"/>
<path
android:pathData="m391.743,354.223c-0.029,-0.115 -0.058,-0.259 -0.086,-0.374 -0.144,-0.863 -0.432,-1.986 -1.497,-1.986 -1.41,0 -2.878,0.23 -4.231,0.46 -0.892,0.144 -1.957,0.086 -2.792,0.518 -1.036,0.547 -0.95,1.9 -0.777,2.907 0.23,1.468 0.086,2.936 0.432,4.403 0.173,0.777 0.144,1.669 0.489,2.389 0.863,1.756 2.331,2.245 4.231,2.245 1.641,0 3.454,-1.036 4.029,-2.648 0.863,-2.418 0.633,-5.353 0.201,-7.915z"
android:fillColor="#ffffff"/>
<path
android:pathData="m358.616,369.045c-0.46,-0.115 -0.95,0 -1.353,0.46 -0.604,0.691 -1.18,1.41 -1.727,2.13 -0.604,0.806 -1.266,1.698 -1.525,2.705 -0.46,1.669 1.007,7.972 3.626,7.138 2.936,-0.921 3.195,-6.62 2.792,-8.951 -0.144,-0.95 -0.317,-1.957 -0.863,-2.763 -0.23,-0.374 -0.576,-0.633 -0.95,-0.72z"
android:fillColor="#ffffff"/>
<path
android:pathData="m348.428,384.587c-0.201,-0.029 -0.432,0.029 -0.662,0.201 -1.727,1.18 -2.418,5.584 -2.446,7.454 0,1.497 0.835,2.993 1.669,4.202 1.468,2.187 2.936,-1.439 3.166,-2.59 0.317,-1.957 0.144,-3.885 -0.259,-5.814 -0.173,-0.691 -0.403,-3.339 -1.468,-3.454z"
android:fillColor="#ffffff"/>
<path
android:pathData="M373.381,360.699C373.18,359.49 372.777,358.367 371.971,358.137c-0.518,-0.144 -0.892,0.086 -1.324,0.374 -0.863,0.547 -1.698,1.122 -2.533,1.727 -0.662,0.489 -1.324,1.007 -1.957,1.468 -0.863,0.633 -1.036,1.871 -0.95,2.878 0.201,1.698 0.835,3.684 2.072,4.893 1.065,1.065 2.849,0.317 3.885,-0.374 1.928,-1.238 2.446,-3.425 2.389,-5.584 0.029,-0.576 0,-1.727 -0.173,-2.821z"
android:fillColor="#ffffff"/>
<path
android:pathData="m446.571,382.083c-0.489,-0.259 -0.979,-0.23 -1.525,0.317 -0.835,0.835 -1.151,2.101 -1.525,3.166 -0.489,1.41 -1.007,3.252 -0.576,4.749 0.403,1.525 1.813,4.231 3.828,3.626 1.928,-0.576 2.878,-4.288 2.59,-6.044 -0.288,-1.525 -0.777,-3.08 -1.554,-4.432 -0.317,-0.518 -0.748,-1.094 -1.238,-1.381z"
android:fillColor="#ffffff"/>
<path
android:pathData="M441.39,373.391C441.045,372.614 440.469,371.837 439.721,371.031c-0.633,-0.662 -1.295,-1.353 -1.986,-2.015 -0.403,-0.374 -1.18,-1.151 -1.727,-1.238 -1.036,-0.201 -1.641,2.043 -1.9,2.677 -0.547,1.295 -1.065,2.59 -1.525,3.914 -0.835,2.187 -1.381,4.029 0.201,6.015 0.892,1.122 2.533,2.446 4.087,2.245 1.871,-0.259 3.396,-2.734 4.116,-4.288 0.95,-1.928 1.065,-3.454 0.403,-4.95z"
android:fillColor="#ffffff"/>
<path
android:pathData="m401.961,352.698c-1.122,0.835 -1.065,4.173 -1.209,5.44 -0.288,2.245 -0.863,6.274 1.151,7.944 0.95,0.806 3.31,1.324 4.605,1.266 3.108,-0.173 3.281,-7.31 3.54,-9.786 0.144,-1.353 0.46,-3.281 -0.863,-4.231 -1.007,-0.748 -2.446,-0.72 -3.626,-0.863 -0.95,-0.115 -2.705,-0.46 -3.598,0.23z"
android:fillColor="#ffffff"/>
<path
android:pathData="m420.006,357.216c-1.209,0.576 -1.266,2.504 -1.583,3.742 -0.432,1.698 -0.835,3.396 -0.979,5.152 -0.173,2.159 -0.863,4.691 1.41,5.9 0.806,0.432 2.101,0.835 3.339,0.921 1.266,0.058 2.446,-0.23 3.022,-1.238 1.295,-2.302 3.137,-6.303 2.878,-9.037 -0.058,-0.662 -0.173,-1.439 -0.604,-1.957 -1.065,-1.324 -5.324,-4.001 -7.08,-3.626 -0.144,0.029 -0.259,0.086 -0.403,0.144z"
android:fillColor="#ffffff"/>
<path
android:pathData="m291.355,400.79c-7.138,-0.979 -20.377,10.073 -20.233,17.412 0.058,2.705 1.784,4.922 3.252,7.08 5.209,7.627 18.161,1.094 20.895,12.002 1.928,7.742 -5.555,14.534 -8.49,20.981 -1.353,2.936 -4.576,8.059 0.748,8.663 2.418,0.259 4.605,-1.353 6.562,-2.562 4.461,-2.734 7.742,-6.735 11.915,-9.67 2.504,-1.727 7.713,-3.281 9.095,-6.188 0.921,-1.9 -0.288,-4.95 -1.036,-6.677 -1.439,-3.281 -3.569,-5.727 -5.785,-8.346 -5.929,-6.994 -10.822,-13.297 -12.203,-22.708 -0.892,-5.986 -1.9,-9.613 -4.72,-9.987z"
android:fillColor="#ffffff"/>
<path
android:pathData="m250.342,252.569c-2.389,-2.619 -6.504,-7.397 -10.188,-7.972 -1.957,-0.317 -3.195,1.353 -3.425,3.108 -0.345,2.446 1.641,4.058 3.166,5.699 2.216,2.446 4.288,5.181 5.382,8.318 2.446,7.051 -2.446,15.024 0.662,21.845 1.525,3.396 6.217,12.923 10.879,12.376 4.173,-0.489 2.993,-6.792 2.792,-9.498 -0.489,-6.13 -1.238,-12.232 -2.159,-18.305 -0.748,-4.634 -2.159,-9.296 -5.008,-13.095 -0.662,-0.835 -1.381,-1.669 -2.101,-2.475z"
android:fillColor="#ffffff"/>
<path
android:pathData="m226.857,254.612c-1.842,-2.072 -6.994,0 -8.663,1.525 -1.209,1.122 -1.439,2.734 -0.518,4.116 1.007,1.525 2.619,1.698 4.231,1.151 1.468,-0.518 3.252,-0.691 4.547,-1.698 1.41,-1.151 1.669,-3.684 0.403,-5.094z"
android:fillColor="#ffffff"/>
<path
android:pathData="m225.332,274.874c2.792,-0.633 6.562,-1.756 5.267,-5.555 -1.18,-3.425 -6.735,-0.777 -8.807,-0.086 -1.957,0.633 -3.713,1.381 -3.857,3.655 -0.086,1.18 0,1.813 1.209,2.216 1.871,0.604 4.375,0.173 6.188,-0.23z"
android:fillColor="#ffffff"/>
<path
android:pathData="m223.087,286.127c2.705,-0.029 5.843,-0.115 8.404,-1.18 1.324,-0.547 3.137,-1.122 2.849,-2.849 -0.173,-1.18 -1.266,-2.677 -2.475,-2.993 -2.389,-0.633 -5.209,1.266 -7.483,1.813 -2.101,0.518 -4.72,0.777 -4.058,3.626 0.317,1.324 1.583,1.583 2.763,1.583z"
android:fillColor="#ffffff"/>
<path
android:pathData="m229.62,298.388c2.015,0 4.778,-0.259 6.159,-1.928 1.238,-1.525 0.863,-4.001 -0.691,-5.181 -1.957,-1.468 -5.296,0.23 -7.368,0.748 -1.353,0.317 -3.166,0.633 -4.173,1.756 -0.72,0.806 -1.007,2.677 -0.173,3.425 1.439,1.209 4.461,1.151 6.245,1.18z"
android:fillColor="#ffffff"/>
<path
android:pathData="m380.663,476.513c-0.95,-2.101 -2.015,-4.202 -3.051,-6.332 4.547,4.49 10.966,7.944 17.211,7.195 2.389,-0.288 4.749,-0.835 7.109,-1.353 19.197,-4.288 14.16,13.757 9.929,26.594 -13.556,-3.885 -23.37,-8.721 -31.199,-26.104z"
android:fillColor="#ffffff"/>
<path
android:pathData="m353.206,502.848c-5.152,-5.814 -10.016,-13.642 -10.822,-20.837 -0.259,-2.245 -0.259,-6.389 -1.583,-8.346 -3.54,-5.296 -8.836,1.813 -12.059,7.31 -1.238,2.101 -2.159,3.943 -2.533,4.806 -2.072,4.432 -5.209,10.793 -7.282,17.096l34.278,0z"
android:fillColor="#ffffff"/>
</group>
</vector>

View File

@ -34,6 +34,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/addToPlaylist" android:text="@string/addToPlaylist"
android:textColor="?attr/colorSurface"
android:padding="8dp" android:padding="8dp"
android:layout_margin="8dp"/> android:layout_margin="8dp"/>

View File

@ -49,6 +49,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/cancel" android:text="@string/cancel"
android:textColor="?attr/colorSurface"
android:padding="8dp" android:padding="8dp"
android:layout_margin="8dp"/> android:layout_margin="8dp"/>
<Button <Button
@ -56,6 +57,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/createPlaylist" android:text="@string/createPlaylist"
android:textColor="?attr/colorSurface"
android:padding="8dp" android:padding="8dp"
android:layout_margin="8dp"/> android:layout_margin="8dp"/>

View File

@ -49,6 +49,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/download" android:text="@string/download"
android:textColor="?attr/colorSurface"
android:padding="8dp" android:padding="8dp"
android:layout_margin="8dp" android:layout_margin="8dp"
android:layout_gravity="center"/> android:layout_gravity="center"/>

View File

@ -81,6 +81,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/register" android:text="@string/register"
android:textColor="?attr/colorSurface"
android:padding="8dp" android:padding="8dp"
android:layout_margin="8dp"/> android:layout_margin="8dp"/>
<Button <Button
@ -88,6 +89,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/login" android:text="@string/login"
android:textColor="?attr/colorSurface"
android:padding="8dp" android:padding="8dp"
android:layout_margin="8dp"/> android:layout_margin="8dp"/>

View File

@ -27,6 +27,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/logout" android:text="@string/logout"
android:textColor="?attr/colorSurface"
android:padding="8dp" android:padding="8dp"
android:layout_margin="8dp" android:layout_margin="8dp"
android:layout_gravity="center"/> android:layout_gravity="center"/>

View File

@ -56,6 +56,7 @@
android:text="@string/createPlaylist" android:text="@string/createPlaylist"
android:layout_gravity="center" android:layout_gravity="center"
android:layout_margin="8dp" android:layout_margin="8dp"
android:textColor="?attr/colorSurface"
android:drawableLeft="@drawable/ic_add" /> android:drawableLeft="@drawable/ic_add" />
<RelativeLayout <RelativeLayout
android:layout_width="match_parent" android:layout_width="match_parent"

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@ -12,7 +12,7 @@
<color name="red_dark_accentLight">#B71C1C</color> <color name="red_dark_accentLight">#B71C1C</color>
<color name="red_dark_accentDark">#B71C1C</color> <color name="red_dark_accentDark">#B71C1C</color>
<color name="red_dark_background">#1E0D0D</color> <color name="red_dark_background">#130808</color>
<color name="blue_light_accentLight">#039BE5</color> <color name="blue_light_accentLight">#039BE5</color>
<color name="blue_light_accentDark">#4FC3F7</color> <color name="blue_light_accentDark">#4FC3F7</color>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#161316</color>
</resources>

View File

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_libretube_background">#CB5656</color>
</resources>

View File

@ -109,5 +109,6 @@
<string name="color_purple">Purple</string> <string name="color_purple">Purple</string>
<string name="oledTheme">OLED Theme</string> <string name="oledTheme">OLED Theme</string>
<string name="material_you">Material You</string> <string name="material_you">Material You</string>
<string name="sponsorblock_notifications">Notifications</string>
<string name="app_icon">App Icon</string> <string name="app_icon">App Icon</string>
</resources> </resources>

View File

@ -4,9 +4,13 @@
<PreferenceCategory app:title="@string/sponsorblock"> <PreferenceCategory app:title="@string/sponsorblock">
<SwitchPreferenceCompat <SwitchPreferenceCompat
app:key="sponsorblock_enabled_key" app:key="sb_enabled_key"
app:title="@string/sponsorblock_state"/> app:title="@string/sponsorblock_state"/>
<SwitchPreferenceCompat
app:key="sb_notifications_key"
app:title="@string/sponsorblock_notifications"/>
</PreferenceCategory> </PreferenceCategory>
<PreferenceCategory app:title="@string/category_segments"> <PreferenceCategory app:title="@string/category_segments">
@ -37,4 +41,5 @@
app:summary="@string/category_outro_description"/> app:summary="@string/category_outro_description"/>
</PreferenceCategory> </PreferenceCategory>
</androidx.preference.PreferenceScreen> </androidx.preference.PreferenceScreen>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 77 KiB