From e6daf45c835782cc034784186fc1c62788aae140 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 6 Feb 2026 22:44:08 +0100 Subject: [PATCH 001/127] [DescriptionFragment] Fix thumbnail size: width x height height x width was used before which is an uncommon order. --- .../newpipe/fragments/detail/BaseDescriptionFragment.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/fragments/detail/BaseDescriptionFragment.java b/app/src/main/java/org/schabi/newpipe/fragments/detail/BaseDescriptionFragment.java index 4789b02e6..bd174a121 100644 --- a/app/src/main/java/org/schabi/newpipe/fragments/detail/BaseDescriptionFragment.java +++ b/app/src/main/java/org/schabi/newpipe/fragments/detail/BaseDescriptionFragment.java @@ -216,9 +216,9 @@ protected void addImagesMetadataItem(final LayoutInflater inflater, || image.getWidth() != Image.WIDTH_UNKNOWN // if even the resolution level is unknown, ?x? will be shown || image.getEstimatedResolutionLevel() == Image.ResolutionLevel.UNKNOWN) { - urls.append(imageSizeToText(image.getHeight())); - urls.append('x'); urls.append(imageSizeToText(image.getWidth())); + urls.append('x'); + urls.append(imageSizeToText(image.getHeight())); } else { switch (image.getEstimatedResolutionLevel()) { case LOW -> urls.append(getString(R.string.image_quality_low)); From e358867da8449ebe9a6fe338d2a67423437fa728 Mon Sep 17 00:00:00 2001 From: tobigr Date: Sat, 7 Feb 2026 12:35:45 +0100 Subject: [PATCH 002/127] Use dedicated constants for unknown image dimensions in ImageStrategy --- .../org/schabi/newpipe/util/image/ImageStrategy.kt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/org/schabi/newpipe/util/image/ImageStrategy.kt b/app/src/main/java/org/schabi/newpipe/util/image/ImageStrategy.kt index c7e94c7f8..d9d7a3c07 100644 --- a/app/src/main/java/org/schabi/newpipe/util/image/ImageStrategy.kt +++ b/app/src/main/java/org/schabi/newpipe/util/image/ImageStrategy.kt @@ -186,7 +186,15 @@ object ImageStrategy { fun dbUrlToImageList(url: String?): List { return when (url) { null -> listOf() - else -> listOf(Image(url, -1, -1, ResolutionLevel.UNKNOWN)) + + else -> listOf( + Image( + url, + Image.HEIGHT_UNKNOWN, + Image.WIDTH_UNKNOWN, + ResolutionLevel.UNKNOWN + ) + ) } } } From 0020a02a28f525399c3998fe141c13b452db3f94 Mon Sep 17 00:00:00 2001 From: "Yevhen Babiichuk (DustDFG)" Date: Mon, 2 Mar 2026 08:42:07 +0200 Subject: [PATCH 003/127] Apply suggestion --- .../java/org/schabi/newpipe/MainActivity.java | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/MainActivity.java b/app/src/main/java/org/schabi/newpipe/MainActivity.java index 479f80db3..00f1a62af 100644 --- a/app/src/main/java/org/schabi/newpipe/MainActivity.java +++ b/app/src/main/java/org/schabi/newpipe/MainActivity.java @@ -27,7 +27,6 @@ import android.content.IntentFilter; import android.content.SharedPreferences; import android.content.pm.PackageManager; -import android.net.Uri; import android.os.Bundle; import android.os.Handler; import android.os.Looper; @@ -996,19 +995,18 @@ private void showKeepAndroidDialog() { "pt", "cs", "sk", "fa", "ar", "tr", "el", "th", "ru", "uk", "ko", "zh", "ja"); final var locale = Localization.getAppLocale(); final String kaoBaseUrl = "https://keepandroidopen.org/"; - final String kaoURIString; + final String kaoURI; if (supportedLannguages.contains(locale.getLanguage())) { if ("zh".equals(locale.getLanguage())) { - kaoURIString = kaoBaseUrl + ("TW".equals(locale.getCountry()) ? "zh-TW" : "zh-CN"); + kaoURI = kaoBaseUrl + ("TW".equals(locale.getCountry()) ? "zh-TW" : "zh-CN"); } else { - kaoURIString = kaoBaseUrl + locale.getLanguage(); + kaoURI = kaoBaseUrl + locale.getLanguage(); } } else { - kaoURIString = kaoBaseUrl; + kaoURI = kaoBaseUrl; } - final var kaoURI = Uri.parse(kaoURIString); - final var solutionURI = Uri.parse( - "https://github.com/woheller69/FreeDroidWarn?tab=readme-ov-file#solutions"); + final var solutionURI = + "https://github.com/woheller69/FreeDroidWarn?tab=readme-ov-file#solutions"; if (kaoLastCheck.plus(30, ChronoUnit.DAYS).isBefore(now)) { final var dialog = new AlertDialog.Builder(this) @@ -1030,10 +1028,10 @@ private void showKeepAndroidDialog() { // If we use setNeutralButton and etc. dialog will close after pressing the buttons, // but we want it to close only when positive button is pressed dialog.getButton(AlertDialog.BUTTON_NEGATIVE).setOnClickListener(v -> - this.startActivity(new Intent(Intent.ACTION_VIEW, kaoURI)) + ShareUtils.openUrlInBrowser(this, kaoURI) ); dialog.getButton(AlertDialog.BUTTON_NEUTRAL).setOnClickListener(v -> - this.startActivity(new Intent(Intent.ACTION_VIEW, solutionURI)) + ShareUtils.openUrlInBrowser(this, solutionURI) ); } } From 9f45aa571c547fa57992c0faa9033a6b60b699dc Mon Sep 17 00:00:00 2001 From: "Yevhen Babiichuk (DustDFG)" Date: Wed, 4 Mar 2026 22:45:07 +0200 Subject: [PATCH 004/127] Remove freedroidwarn license --- .../main/java/org/schabi/newpipe/about/AboutActivity.kt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/about/AboutActivity.kt b/app/src/main/java/org/schabi/newpipe/about/AboutActivity.kt index 0cdf4029c..ed5951f04 100644 --- a/app/src/main/java/org/schabi/newpipe/about/AboutActivity.kt +++ b/app/src/main/java/org/schabi/newpipe/about/AboutActivity.kt @@ -254,13 +254,6 @@ class AboutActivity : AppCompatActivity() { "ByteHamster", "https://github.com/ByteHamster/SearchPreference", StandardLicenses.MIT - ), - SoftwareComponent( - "FreeDroidWarn", - "2026", - "woheller69", - "https://github.com/woheller69/FreeDroidWarn", - StandardLicenses.APACHE2 ) ) } From e173bf425207be58e24f0994e0d9ae502072b867 Mon Sep 17 00:00:00 2001 From: AbsurdlyLongUsername <22662897+absurdlylongusername@users.noreply.github.com> Date: Fri, 6 Mar 2026 11:56:41 +0000 Subject: [PATCH 005/127] Add Sign in confirm not a bot issue URL to the exception error message Make error panel and error activity exception message URLs clickable via extension method Change ErrorMessage.getString to getText and return CharSequence, and use getText with formatArgs to preserve styling (i.e. URLs) --- .../org/schabi/newpipe/error/ErrorActivity.kt | 3 +- .../org/schabi/newpipe/error/ErrorInfo.kt | 20 ++++++++----- .../schabi/newpipe/error/ErrorPanelHelper.kt | 5 ++-- .../MediaBrowserPlaybackPreparer.kt | 4 +-- .../newpipe/util/text/TextViewExtensions.kt | 29 +++++++++++++++++++ app/src/main/res/values/strings.xml | 2 +- 6 files changed, 50 insertions(+), 13 deletions(-) create mode 100644 app/src/main/java/org/schabi/newpipe/util/text/TextViewExtensions.kt diff --git a/app/src/main/java/org/schabi/newpipe/error/ErrorActivity.kt b/app/src/main/java/org/schabi/newpipe/error/ErrorActivity.kt index 5dd0755c5..c68a2cfd1 100644 --- a/app/src/main/java/org/schabi/newpipe/error/ErrorActivity.kt +++ b/app/src/main/java/org/schabi/newpipe/error/ErrorActivity.kt @@ -25,6 +25,7 @@ import org.schabi.newpipe.databinding.ActivityErrorBinding import org.schabi.newpipe.util.Localization import org.schabi.newpipe.util.ThemeHelper import org.schabi.newpipe.util.external_communication.ShareUtils +import org.schabi.newpipe.util.text.setTextWithLinks /** * This activity is used to show error details and allow reporting them in various ways. @@ -100,7 +101,7 @@ class ErrorActivity : AppCompatActivity() { // normal bugreport buildInfo(errorInfo) - binding.errorMessageView.text = errorInfo.getMessage(this) + binding.errorMessageView.setTextWithLinks(errorInfo.getMessage(this)) binding.errorView.text = formErrorText(errorInfo.stackTraces) // print stack trace once again for debugging: diff --git a/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt b/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt index cd48fb298..1b0d1d322 100644 --- a/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt +++ b/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt @@ -29,6 +29,7 @@ import org.schabi.newpipe.extractor.exceptions.YoutubeMusicPremiumContentExcepti import org.schabi.newpipe.ktx.isNetworkRelated import org.schabi.newpipe.player.mediasource.FailedMediaSource import org.schabi.newpipe.player.resolver.PlaybackResolver +import org.schabi.newpipe.util.text.getText /** * An error has occurred in the app. This class contains plain old parcelable data that can be used @@ -135,8 +136,8 @@ class ErrorInfo private constructor( return getServiceName(serviceId) } - fun getMessage(context: Context): String { - return message.getString(context) + fun getMessage(context: Context): CharSequence { + return message.getText(context) } companion object { @@ -146,20 +147,23 @@ class ErrorInfo private constructor( private val stringRes: Int, private vararg val formatArgs: String ) : Parcelable { - fun getString(context: Context): String { + fun getText(context: Context): CharSequence { + // Ensure locale aware context via ContextCompat.getContextForLanguage() (just in case context is not AppCompatActivity) + val ctx = ContextCompat.getContextForLanguage(context) return if (formatArgs.isEmpty()) { - // use ContextCompat.getString() just in case context is not AppCompatActivity - ContextCompat.getString(context, stringRes) + ctx.getText(stringRes) } else { // ContextCompat.getString() with formatArgs does not exist, so we just // replicate its source code but with formatArgs - ContextCompat.getContextForLanguage(context).getString(stringRes, *formatArgs) + ctx.resources.getText(stringRes, *formatArgs) } } } const val SERVICE_NONE = "" + const val SIGN_IN_CONFIRM_NOT_BOT_ISSUE_URL = "https://github.com/TeamNewPipe/NewPipe/issues/11139" + private fun getServiceName(serviceId: Int?) = // not using getNameOfServiceById since we want to accept a nullable serviceId and we // want to default to SERVICE_NONE ServiceList.all().firstOrNull { it.serviceId == serviceId }?.serviceInfo?.name @@ -247,7 +251,9 @@ class ErrorInfo private constructor( ErrorMessage(R.string.youtube_music_premium_content) throwable is SignInConfirmNotBotException -> - ErrorMessage(R.string.sign_in_confirm_not_bot_error, getServiceName(serviceId)) + ErrorMessage(R.string.sign_in_confirm_not_bot_error, + getServiceName(serviceId), + SIGN_IN_CONFIRM_NOT_BOT_ISSUE_URL) throwable is ContentNotAvailableException -> ErrorMessage(R.string.content_not_available) diff --git a/app/src/main/java/org/schabi/newpipe/error/ErrorPanelHelper.kt b/app/src/main/java/org/schabi/newpipe/error/ErrorPanelHelper.kt index 023d13e9d..8136c78d8 100644 --- a/app/src/main/java/org/schabi/newpipe/error/ErrorPanelHelper.kt +++ b/app/src/main/java/org/schabi/newpipe/error/ErrorPanelHelper.kt @@ -16,6 +16,7 @@ import org.schabi.newpipe.MainActivity import org.schabi.newpipe.R import org.schabi.newpipe.ktx.animate import org.schabi.newpipe.util.external_communication.ShareUtils +import org.schabi.newpipe.util.text.setTextWithLinks class ErrorPanelHelper( private val fragment: Fragment, @@ -64,7 +65,7 @@ class ErrorPanelHelper( fun showError(errorInfo: ErrorInfo) { ensureDefaultVisibility() - errorTextView.text = errorInfo.getMessage(context) + errorTextView.setTextWithLinks(errorInfo.getMessage(context)) if (errorInfo.recaptchaUrl != null) { showAndSetErrorButtonAction(R.string.recaptcha_solve) { @@ -109,7 +110,7 @@ class ErrorPanelHelper( fun showTextError(errorString: String) { ensureDefaultVisibility() - errorTextView.text = errorString + errorTextView.setTextWithLinks(errorString) setRootVisible() } diff --git a/app/src/main/java/org/schabi/newpipe/player/mediabrowser/MediaBrowserPlaybackPreparer.kt b/app/src/main/java/org/schabi/newpipe/player/mediabrowser/MediaBrowserPlaybackPreparer.kt index 890c83cfa..c0a2f9668 100644 --- a/app/src/main/java/org/schabi/newpipe/player/mediabrowser/MediaBrowserPlaybackPreparer.kt +++ b/app/src/main/java/org/schabi/newpipe/player/mediabrowser/MediaBrowserPlaybackPreparer.kt @@ -49,7 +49,7 @@ import org.schabi.newpipe.util.NavigationHelper */ class MediaBrowserPlaybackPreparer( private val context: Context, - private val setMediaSessionError: BiConsumer, // error string, error code + private val setMediaSessionError: BiConsumer, // error string, error code private val clearMediaSessionError: Runnable, private val onPrepare: Consumer ) : PlaybackPreparer { @@ -118,7 +118,7 @@ class MediaBrowserPlaybackPreparer( private fun onPrepareError(throwable: Throwable) { setMediaSessionError.accept( - ErrorInfo.getMessage(throwable, null, null).getString(context), + ErrorInfo.getMessage(throwable, null, null).getText(context), PlaybackStateCompat.ERROR_CODE_APP_ERROR ) } diff --git a/app/src/main/java/org/schabi/newpipe/util/text/TextViewExtensions.kt b/app/src/main/java/org/schabi/newpipe/util/text/TextViewExtensions.kt new file mode 100644 index 000000000..d2efbf541 --- /dev/null +++ b/app/src/main/java/org/schabi/newpipe/util/text/TextViewExtensions.kt @@ -0,0 +1,29 @@ +package org.schabi.newpipe.util.text + +import android.content.res.Resources +import android.text.SpannableString +import android.text.method.LinkMovementMethod +import android.text.util.Linkify +import android.util.Patterns +import android.widget.TextView +import androidx.annotation.StringRes +import androidx.core.text.parseAsHtml +import androidx.core.text.toHtml +import androidx.core.text.toSpanned + +/** + * Takes in a CharSequence [text] + * and makes raw HTTP URLs and HTML anchor tags clickable + */ +fun TextView.setTextWithLinks(text: CharSequence) { + val spanned = SpannableString(text) + // Using the pattern overload of addLinks since the one with the int masks strips all spans from the text before applying new ones + Linkify.addLinks(spanned, Patterns.WEB_URL, null) + this.text = spanned + this.movementMethod = LinkMovementMethod.getInstance() +} + +/** + * Gets text from string resource with [id] while preserving styling and allowing string format value substitution of [formatArgs] + */ +fun Resources.getText(@StringRes id: Int, vararg formatArgs: Any?): CharSequence = getText(id).toSpanned().toHtml().format(*formatArgs).parseAsHtml() diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 5ecdb5e97..e3e15b776 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -878,7 +878,7 @@ HTTP error 403 received from server while playing, likely caused by streaming URL expiration or an IP ban HTTP error %1$s received from server while playing HTTP error 403 received from server while playing, likely caused by an IP ban or streaming URL deobfuscation issues - %1$s refused to provide data, asking for a login to confirm the requester is not a bot.\n\nYour IP might have been temporarily banned by %1$s, you can wait some time or switch to a different IP (for example by turning on/off a VPN, or by switching from WiFi to mobile data). + %1$s refused to provide data, asking for a login to confirm the requester is not a bot.\n\nYour IP might have been temporarily banned by %1$s, you can wait some time or switch to a different IP (for example by turning on/off a VPN, or by switching from WiFi to mobile data).\n\nPlease see Issue 11139 for more information This content is not available for the currently selected content country.\n\nChange your selection from \"Settings > Content > Default content country\". In August 2025, Google announced that as of September 2026, installing apps will require developer verification for all Android apps on certified devices, including those installed outside of the Play Store. Since the developers of NewPipe do not agree to this requirement, NewPipe will no longer work on certified Android devices after that time. Details From b8ec9bf41290cfd5aa80e603d2f1d4dbd5e74268 Mon Sep 17 00:00:00 2001 From: AbsurdlyLongUsername <22662897+absurdlylongusername@users.noreply.github.com> Date: Fri, 6 Mar 2026 12:55:09 +0000 Subject: [PATCH 006/127] Maybe this fix ktlint errors? --- app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt b/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt index 1b0d1d322..367931435 100644 --- a/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt +++ b/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt @@ -251,9 +251,11 @@ class ErrorInfo private constructor( ErrorMessage(R.string.youtube_music_premium_content) throwable is SignInConfirmNotBotException -> - ErrorMessage(R.string.sign_in_confirm_not_bot_error, + ErrorMessage( + R.string.sign_in_confirm_not_bot_error, getServiceName(serviceId), - SIGN_IN_CONFIRM_NOT_BOT_ISSUE_URL) + SIGN_IN_CONFIRM_NOT_BOT_ISSUE_URL + ) throwable is ContentNotAvailableException -> ErrorMessage(R.string.content_not_available) From dda219a9e9021d298ebaad5c520b5d62e1dadae5 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Fri, 6 Mar 2026 20:30:04 +0100 Subject: [PATCH 007/127] Translated using Weblate (Latvian) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 97.9% (749 of 765 strings) Translated using Weblate (Latvian) Currently translated at 97.9% (749 of 765 strings) Translated using Weblate (Latvian) Currently translated at 18.8% (17 of 90 strings) Translated using Weblate (Latvian) Currently translated at 96.9% (742 of 765 strings) Translated using Weblate (Latvian) Currently translated at 97.3% (745 of 765 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Latvian) Currently translated at 17.7% (16 of 90 strings) Translated using Weblate (Turkish) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Russian) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Italian) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Portuguese) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Armenian) Currently translated at 31.6% (242 of 765 strings) Translated using Weblate (Portuguese (Portugal)) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Slovak) Currently translated at 76.6% (69 of 90 strings) Translated using Weblate (Azerbaijani) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Slovak) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Japanese) Currently translated at 13.3% (12 of 90 strings) Translated using Weblate (Czech) Currently translated at 100.0% (90 of 90 strings) Translated using Weblate (Korean) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (French) Currently translated at 98.8% (89 of 90 strings) Translated using Weblate (Japanese) Currently translated at 95.5% (731 of 765 strings) Translated using Weblate (Polish) Currently translated at 56.6% (51 of 90 strings) Translated using Weblate (Bulgarian) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (90 of 90 strings) Translated using Weblate (Tamil) Currently translated at 48.8% (44 of 90 strings) Translated using Weblate (Hungarian) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (German) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (German) Currently translated at 100.0% (90 of 90 strings) Co-authored-by: 439JBYL80IGQTF25UXNR0X1BG <439jbyl80igqtf25uxnr0x1bg@users.noreply.hosted.weblate.org> Co-authored-by: Agnieszka C Co-authored-by: Davit Mayilyan Co-authored-by: Erenay Co-authored-by: Femini Co-authored-by: Fjuro Co-authored-by: Ghost of Sparta Co-authored-by: Hosted Weblate Co-authored-by: Mickaël Binos Co-authored-by: Milan Co-authored-by: Random Co-authored-by: Trunars Co-authored-by: VfBFan Co-authored-by: justcontributor Co-authored-by: kuragehime Co-authored-by: ssantos Co-authored-by: தமிழ்நேரம் Co-authored-by: ℂ𝕠𝕠𝕠𝕝 (𝕘𝕚𝕥𝕙𝕦𝕓.𝕔𝕠𝕞/ℂ𝕠𝕠𝕠𝕝) Co-authored-by: 大王叫我来巡山 Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/cs/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/de/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/fr/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/ja/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/lv/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pl/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/sk/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/ta/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/zh_Hans/ Translation: NewPipe/Metadata --- app/src/main/res/values-az/strings.xml | 3 + app/src/main/res/values-bg/strings.xml | 3 + app/src/main/res/values-de/strings.xml | 2 +- app/src/main/res/values-hu/strings.xml | 2 +- app/src/main/res/values-hy/strings.xml | 39 +++- app/src/main/res/values-it/strings.xml | 2 +- app/src/main/res/values-ja/strings.xml | 1 + app/src/main/res/values-ko/strings.xml | 2 +- app/src/main/res/values-lv/strings.xml | 173 +++++++++--------- app/src/main/res/values-pt-rPT/strings.xml | 5 +- app/src/main/res/values-pt/strings.xml | 4 +- app/src/main/res/values-ru/strings.xml | 4 +- app/src/main/res/values-sk/strings.xml | 2 +- app/src/main/res/values-tr/strings.xml | 2 +- app/src/main/res/values-uk/strings.xml | 11 +- .../metadata/android/cs/changelogs/1009.txt | 14 ++ .../metadata/android/de/changelogs/1009.txt | 14 ++ .../metadata/android/de/changelogs/999.txt | 6 +- .../metadata/android/fr/changelogs/1009.txt | 15 ++ .../metadata/android/ja/changelogs/1001.txt | 6 + .../metadata/android/ja/changelogs/1002.txt | 4 + .../metadata/android/lv/changelogs/1001.txt | 4 +- .../metadata/android/lv/changelogs/64.txt | 2 +- .../metadata/android/lv/changelogs/770.txt | 2 +- .../metadata/android/lv/changelogs/850.txt | 2 +- .../metadata/android/lv/changelogs/910.txt | 2 +- .../metadata/android/lv/changelogs/950.txt | 4 +- .../metadata/android/lv/changelogs/956.txt | 1 + .../metadata/android/lv/changelogs/982.txt | 1 + .../metadata/android/lv/changelogs/985.txt | 1 + .../metadata/android/lv/changelogs/989.txt | 4 +- .../metadata/android/lv/changelogs/998.txt | 2 +- .../metadata/android/pl/changelogs/1009.txt | 14 ++ .../metadata/android/sk/changelogs/1009.txt | 14 ++ .../metadata/android/ta/changelogs/1000.txt | 24 +-- .../metadata/android/ta/changelogs/1005.txt | 17 ++ .../metadata/android/ta/changelogs/1006.txt | 16 ++ .../metadata/android/ta/changelogs/1008.txt | 4 + .../metadata/android/ta/changelogs/1009.txt | 14 ++ .../metadata/android/ta/changelogs/65.txt | 46 ++--- .../metadata/android/ta/changelogs/66.txt | 44 +++-- .../metadata/android/ta/changelogs/68.txt | 50 ++--- .../metadata/android/ta/changelogs/69.txt | 32 ++-- .../metadata/android/ta/changelogs/70.txt | 46 ++--- .../metadata/android/ta/changelogs/71.txt | 18 +- .../metadata/android/ta/changelogs/740.txt | 46 ++--- .../metadata/android/ta/changelogs/750.txt | 38 ++-- .../metadata/android/ta/changelogs/760.txt | 64 +++---- .../metadata/android/ta/changelogs/780.txt | 20 +- .../metadata/android/ta/changelogs/790.txt | 24 +-- .../metadata/android/ta/changelogs/800.txt | 46 ++--- .../metadata/android/ta/changelogs/810.txt | 34 ++-- .../metadata/android/ta/changelogs/840.txt | 40 ++-- .../metadata/android/ta/changelogs/900.txt | 24 +-- .../metadata/android/ta/changelogs/930.txt | 32 ++-- .../metadata/android/ta/changelogs/940.txt | 26 +-- .../metadata/android/ta/changelogs/951.txt | 28 +-- .../metadata/android/ta/changelogs/954.txt | 14 +- .../metadata/android/ta/changelogs/957.txt | 20 +- .../metadata/android/ta/changelogs/958.txt | 26 +-- .../metadata/android/ta/changelogs/964.txt | 16 +- .../metadata/android/ta/changelogs/966.txt | 24 +-- .../metadata/android/ta/changelogs/969.txt | 16 +- .../metadata/android/ta/changelogs/970.txt | 20 +- .../metadata/android/ta/changelogs/972.txt | 24 +-- .../metadata/android/ta/changelogs/975.txt | 30 +-- .../metadata/android/ta/changelogs/976.txt | 18 +- .../metadata/android/ta/changelogs/977.txt | 18 +- .../metadata/android/ta/changelogs/980.txt | 22 +-- .../metadata/android/ta/changelogs/983.txt | 18 +- .../metadata/android/ta/changelogs/984.txt | 14 +- .../metadata/android/ta/changelogs/986.txt | 28 +-- .../metadata/android/ta/changelogs/987.txt | 20 +- .../metadata/android/ta/changelogs/990.txt | 24 +-- .../metadata/android/ta/changelogs/991.txt | 22 +-- .../metadata/android/ta/changelogs/992.txt | 30 +-- .../metadata/android/ta/changelogs/993.txt | 20 +- .../metadata/android/ta/changelogs/994.txt | 24 +-- .../metadata/android/ta/changelogs/995.txt | 28 +-- .../metadata/android/ta/changelogs/997.txt | 30 +-- .../metadata/android/ta/changelogs/999.txt | 18 +- .../android/zh-Hans/changelogs/1009.txt | 14 ++ 82 files changed, 922 insertions(+), 716 deletions(-) create mode 100644 fastlane/metadata/android/cs/changelogs/1009.txt create mode 100644 fastlane/metadata/android/de/changelogs/1009.txt create mode 100644 fastlane/metadata/android/fr/changelogs/1009.txt create mode 100644 fastlane/metadata/android/ja/changelogs/1001.txt create mode 100644 fastlane/metadata/android/ja/changelogs/1002.txt create mode 100644 fastlane/metadata/android/lv/changelogs/956.txt create mode 100644 fastlane/metadata/android/lv/changelogs/982.txt create mode 100644 fastlane/metadata/android/lv/changelogs/985.txt create mode 100644 fastlane/metadata/android/pl/changelogs/1009.txt create mode 100644 fastlane/metadata/android/sk/changelogs/1009.txt create mode 100644 fastlane/metadata/android/ta/changelogs/1005.txt create mode 100644 fastlane/metadata/android/ta/changelogs/1006.txt create mode 100644 fastlane/metadata/android/ta/changelogs/1008.txt create mode 100644 fastlane/metadata/android/ta/changelogs/1009.txt create mode 100644 fastlane/metadata/android/zh-Hans/changelogs/1009.txt diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml index 73ed98d7e..212f91988 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -825,4 +825,7 @@ HTTP xətası 403 oynadarkən serverdən alındı, ehtimal ki, IP qadağası və ya yayım URL-nin deobfuscation problemləri ilə bağlıdır %1$s sorğuçunun bot olmadığını təsdiqləmək üçün giriş tələb edərək data təmin etməkdən imtina etdi.\n\nIP-niz %1$s tərəfindən müvəqqəti şəkildə qadağan oluna bilər, bir müddət gözləyə və ya başqa IP-yə keçə bilərsiniz (məsələn, VPN-i açıb/qapatmaqla və ya WiFi-dan mobil dataya keçməklə). Bu məzmun hazırda seçilən məzmun ölkəsi üçün əlçatan deyil. \n\nSeçiminizi \"Tənzimləmələr > Məzmun > İlkin məzmun ölkəsi\"- dən dəyişin. + 2025 avqustunda, Google 2026-cı ilin sentyabrından etibarən tətbiqlərin quraşdırılması Play Store xaricində quraşdırılanlar daxil olmaqla, sertifikatlaşdırılan cihazlardakı bütün Android tətbiqləri üçün tərtibatçı təsdiqlənməsini tələb edəcək deyə bəyan etdi. NewPipe tərtibatçıları bu tələblə razılaşmadığı üçün NewPipe bu vaxtdan sonra artıq sertifikatlaşdırılan Android cihazlarında işləməyəcək. + Təfərrüatlar + Həll olunma diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml index 87eee28d9..d809219df 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -832,4 +832,7 @@ HTTP грешка 403, получена от сървъра по време на възпроизвеждане, вероятно причинена от забрана на IP адреса или проблеми с деобфускацията на URL адреси за стрийминг %1$s отказа да предостави данни, като поиска вход, за да потвърди, че заявителят не е бот.\n\nВашият IP адрес може да е временно забранен от %1$s. Можете да изчакате известно време или да превключите към друг IP адрес (например като включите/изключите VPN или като превключите от WiFi към мобилни данни). Това съдържание не е налично за текущо избраната държава на съдържанието.\n\nПроменете избора си от \"Настройки > Съдържание > Държава на съдържанието по подразбиране\". + През август 2025 г. Google обяви, че от септември 2026 г. инсталирането на приложения ще изисква проверка от разработчика за всички приложения за Android на сертифицирани устройства, включително тези, инсталирани извън Play Store. Тъй като разработчиците на NewPipe не са съгласни с това изискване, NewPipe вече няма да работи на сертифицирани устройства с Android след този период. + Детайли + Решение diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index cedef9e14..a0c7f3d43 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -847,7 +847,7 @@ HTTP-Fehler 403 vom Server während der Wiedergabe erhalten, wahrscheinlich verursacht durch eine IP-Sperre oder Probleme beim Entschlüsseln der Streaming-URL %1$s hat die Datenbereitstellung verweigert und verlangt eine Anmeldung, um zu bestätigen, dass es sich bei dem Anfragenden nicht um einen Bot handelt.\n\nDeine IP-Adresse wurde möglicherweise vorübergehend von %1$s gesperrt. Du kannst einige Zeit warten oder zu einer anderen IP-Adresse wechseln (z. B. durch Ein- und Ausschalten eines VPNs oder durch Wechseln von WLAN zu mobilen Daten). Dieser Inhalt ist für das aktuell ausgewählte Land des Inhalts nicht verfügbar.\n\nÄndere die Auswahl unter „Einstellungen > Inhalt > Bevorzugtes Land des Inhalts“. - Google hat angekündigt, dass ab 2026/2027 alle Apps auf zertifizierten Android-Geräten nur noch funktionieren, wenn die Entwickler ihre persönlichen Identitätsdaten direkt an Google übermitteln. Da die Entwickler dieser App dieser Anforderung nicht zustimmen, wird diese App ab diesem Zeitpunkt auf zertifizierten Android-Geräten nicht mehr funktionieren. + Im August 2025 gab Google bekannt, dass ab September 2026 für die Installation von Apps eine Entwicklerüberprüfung für alle Android-Apps auf zertifizierten Geräten erforderlich sein wird, einschließlich derjenigen, die außerhalb des Play Store installiert wurden. Da die Entwickler von NewPipe dieser Forderung nicht nachkommen, wird NewPipe nach diesem Zeitpunkt auf zertifizierten Android-Geräten nicht mehr funktionieren. Details Lösung diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index b6bf5198f..0fecf5fb4 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -818,7 +818,7 @@ HTTP 403-as hiba érkezett a kiszolgálótól a lejátszás közben, valószínűleg IP-tiltás vagy a közvetítési hivatkozás feloldási problémák miatt %1$s visszautasította az adatok szolgáltatását, és bejelentkezést kér annak megerősítésére, hogy a kérés nem robot által érkezik.\n\nElőfordulhat, hogy az IP-címét ideiglenesen letiltotta %1$s, várhat egy keveset, vagy váltson egy másik IP-címre (például VPN be-/kikapcsolásával, vagy Wi-Fi-ről mobiladat-forgalomra váltva). Ez a tartalom a jelenleg kiválasztott tartalom országában nem elérhető.\n\nVáltoztassa meg a „Beállítások > Tartalom >Tartalom alapértelmezett országa” menüpontban. - A Google bejelentette, hogy 2026/2027-től minden alkalmazás a hitelesített Android-eszközökön meg fogja követelni, hogy a fejlesztők személyes azonosító adataikat közvetlenül a Google-nek adják át. Mivel ennek az alkalmazásnak a fejlesztői nem értenek egyet ezzel a követelménnyel, az alkalmazás ezen időpont után nem fog működni a hitelesített Android-eszközökön. + 2025 augusztusában a Google bejelentette, hogy 2026 szeptemberétől az alkalmazások telepítéséhez fejlesztői ellenőrzésre lesz szükség a tanúsított eszközökön található összes Android-alkalmazáshoz, beleértve a Play Áruházon kívül telepített alkalmazásokat is. Mivel a NewPipe fejlesztői nem értenek egyet ezzel a követelménnyel, a NewPipe ezután nem fog működni a tanúsított Android-eszközökön. Részletek Megoldás diff --git a/app/src/main/res/values-hy/strings.xml b/app/src/main/res/values-hy/strings.xml index 3be44ba73..4eaf853df 100644 --- a/app/src/main/res/values-hy/strings.xml +++ b/app/src/main/res/values-hy/strings.xml @@ -16,7 +16,7 @@ Լավ Ջնջել Սկսել - Հավանում եմ + Հավանումներ Չեմ հավանում Մաքրել Հրապարակվել է %1$s @@ -228,7 +228,7 @@ Դասավորել Գամված մեկնաբանություն Հաշիվը կասեցված է - + Մասին Ալբոմներ Այո Ոչ @@ -243,4 +243,39 @@ Անհայտ Նկատի ունե՞ս «%1$s» Բարձրություն + Լուծում + Մանրամասներ + + %s պատասխան + %s պատասխաններ + + Կիսվել նվագացանկով + Առաջ տանել + Նվագել + Տևողություն + Հետ տանել + Բացել նվագացանկը + Հավանումներ + Կարճեր + Մասնակի դիտված + Ամբողչովին դիտված + Միացված + Անջատված + Բաժանորդագրվածներ + Ներքին + Անձնական + Հարցնել որտեղ ներբեռնել + Կամայական ցանցով + Նվագացանկը ստեղծվեց + Նոր նվագացանկ + Ալբոմներ + Արվեստագետներ + Նվիրել + Անտեսել + %sՀզր + %sՄլն + %sԲլն + Ազդարարել + Այդպիսի պանակ չկա + Նվագացանկեր diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index ea5d596f7..86b9c382a 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -861,7 +861,7 @@ Errore HTTP 403 ricevuto dal server durante la riproduzione, probabilmente causato da un divieto dell\'IP o problemi di de-offuscamento dell\'URL in streaming %1$s ha rifiutato di fornire i dati, chiedendo un accesso per confermare che il richiedente non sia un bot.\n\nIl tuo IP potrebbe essere stato temporaneamente vietato da %1$s, puoi aspettare un po\' di tempo o passare ad un IP diverso (ad esempio accendendo/spegnendo una VPN, o passando dal WiFi ai dati mobili). Questo contenuto non è disponibile per il Paese dei contenuti attualmente selezionato.\n\nModifica la selezione da \"Impostazioni > Contenuti > Paese dei contenuti predefinito\". - Google ha annunciato che, a partire dal 2026/2027, tutte le app sui dispositivi Android certificati richiederanno agli sviluppatori di fornire i propri dati personali di identità direttamente a Google. Poiché gli sviluppatori di questa app non accettano tale requisito, l’app smetterà di funzionare sui dispositivi Android certificati dopo quella data. + Ad agosto 2025, Google ha annunciato che a partire da settembre 2026, l\'installazione di app richiederà la verifica dello sviluppatore per tutte le app Android su dispositivi certificati, compresi quelli installati al di fuori del Play Store. Poiché gli sviluppatori di NewPipe non sono d\'accordo con questo requisito, NewPipe non funzionerà più su dispositivi Android certificati dopo quel mese. Dettagli Soluzione diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index eeab29997..e915bb809 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -807,4 +807,5 @@ Google は、2026/2027 年から、認定 Android デバイス上のすべてのアプリについて、開発者が個人の身元情報を直接 Google に提出することを必須にすると発表しました。本アプリの開発者はこの要件に同意していないため、このアプリはその時点以降、認定 Android デバイス上で動作しなくなります。 詳細 解決 + %sB diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index 71ea13828..b94258e76 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -833,7 +833,7 @@ 재생 중 서버에서 HTTP 403 오류를 수신했으며, 스트리밍 URL 역난독화 문제나 IP 차단 때문일 수 있습니다 %1$s에서 데이터 제공을 거부하고, 요청자가 봇이 아닌지 확인하기 위해 로그인을 요청하고 있습니다.\n\n아마 IP가 %1$s에서 임시 차단되었을 것이며, 잠시 기다리거나 다른 IP로 전환할 수 있습니다 (예를 들자면 VPN을 켜/끄거나, WiFi를 모바일 데이터로 바꾸세요). 이 콘텐츠는 현재 선택한 콘텐츠 지역에서 이용할 수 없습니다.\n\n\"설정 > 콘텐츠 > 기본 콘텐츠 국가\"에서 지역을 바꾸세요. - Google은 2026/2027년부터 인증된 Android 기기에서 모든 앱이 개발자가 본인의 개인 신원 정보를 Google에 직접 제출해야 한다고 발표했습니다. 이 앱의 개발자들은 해당 요구 사항에 동의하지 않으므로, 이 앱은 그 시점 이후 인증된 Android 기기에서 더 이상 작동하지 않습니다. + 2025년 8월, Google은 2026년 9월부터 인증된 기기에 앱을 설치하려면 Play 스토어 외 앱을 포함한 모든 Android 앱에 대해 개발자 인증을 받아야 한다고 발표했습니다. NewPipe 개발자는 이 요구 사항에 동의하지 않으므로, 이 이후 NewPipe는 더 이상 인증된 Android 기기에서 동작하지 않을 것입니다. 자세히 해결책 diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml index 636e5efd2..8a3d8dc90 100644 --- a/app/src/main/res/values-lv/strings.xml +++ b/app/src/main/res/values-lv/strings.xml @@ -30,7 +30,7 @@ Top 50 Nevarēja ielādēt komentārus Vai jūs vēlaties ievietot arī iestatījumus? - Šis pārrakstīt jūsu tagadējo uzstādījumu. + Pašreizējie dati tiks aizstāti. Uzmanību: Ne visas datnes varēja ievietot. Nav derīgs ZIP fails Ievietošana pabeigta @@ -47,16 +47,15 @@ Kādas cilnes rādīt galvenajā lapā Galvenā lapa Visvairāk Atskaņotais - Pēdējais Atskaņotais - Vai jūs tiešām vēlaties izdzēst šo meklējumu no vēstures? + Pēdējais atskaņotais + Vai jūs tiešām vēlaties izdzēst šo vaicājumu no meklēšanas vēstures? Vēsture Vēsture Izlasīt licenci Newpipe ir bezmaksas programmatūra: jūs varat izmantot, izpētīt, dalīties un uzlabot to jebkurā brīdī. Tieši jūs varat kopīgot un/ vai modificēt to saskaņā ar GNU Vispārējās Publiskās Licences noteikumiem, ko publicējusi Brīvās Programmatūras Fonds, vai nu 3. licences versija, vai (pēc jūsu izvēles) jebkura vēlāka versija. NewPipe Licence Izslasīt privātuma politiku - NewPipe projekts uztver jūsu privātumu ļoti nopietni . Tāpēc lietotne nesavāc datus bez jūsu piekrišanas. -\nNewPipe privātuma politika sīki izskaidro, kādi dati tiek nosūtīti un uzglabāti, nosūtot kļūdas ziņojumu. + Datu aizsardzība ir ļoti svarīga NewPipe projektam. Tāpēc lietotne neapkopo datus bez jūsu piekrišanas.\nNewPipe konfidencialitātes politika sīki izskaidro, kādi dati tiek nosūtīti un uzglabāti, kad nosūtiet avārijas ziņojumu. NewPipe Privātuna Politika Apmeklēt NewPipe mājaslapu, lai iegūtu vairāk informācijas un ziņu. Mājaslapa @@ -69,7 +68,7 @@ Libre, viegla atskaņošana uz Android. Licences Par un BUJ - Trešo pušu Licences + Trešo pušu licences Par NewPipe Lielākā daļa īpašo rakstzīmju Burti un cipari @@ -154,10 +153,10 @@ Kas:\nRequest:\nContent Valoda:\nContent Valsts:\nApp Valoda:\nService:\nGMT Laiks:\nPackage:\nVersion:\nOS versija: Paziņojumi video apstrādes progresam Video haša paziņojums - Atcerēties pēdējo uznirstošā loga izmēru un pozīciju + Atceras pēdējo uznirstošā loga izmēru un pozīciju Atcerēties uznirstošā loga īpašības - Uznirstošā loga noklusējuma izšķirtspēja - Uznirstošs logs + Noklusējuma uznirstošā loga izšķirtspēja + Skatīt uznirstošā logā Atvērt uznirstošā logā Kas notika: Informācija: @@ -169,13 +168,13 @@ Ziņojiet pa e-pastu Piedotiet, tam nevajadzēja notikt. Dot atļauju rādīt pāri citām aplikācijām - Vai jūs vēlaties atjaunot noklusējumus\? - Atjaunot noklusējumus + Vai jūs tiešām vēlaties atjaunot noklusējuma vērtības? + Atjaunot noklusējuma vērtības Nevarēja nolasīt saglabātās cilnes, tādēļ izmanto noklusējuma Neviens video nav pieejams lejupielādei Notika kļūda: %1$s Faila nosaukums nevar būt tukšs - Fails neeksistē, vai atļauja to lasīt vai rakstīt, nav dota + Datne neeksistē vai nav dota atļauja to lasīt vai rakstīt Tāds fails/saturs neeksistē Tāda mape neeksistē Fails pārvietots vai izdzēsts @@ -281,17 +280,7 @@ NewPipe šo saturu vēl neatbalsta. \n \nCerams, ka to atbalstīs nākamajā versijā. - Vai jūs domājat, ka plūsmas atjaunināšana ir pārāk lēna\? Ja tā, mēģiniet iespējot ātro atjaunināšanu (to var mainīt iestatījumos vai nospiežot pogu zemāk). -\n -\nNewPipe piedāvā divas plūsmas atjaunināšanas stratēģijas: -\n• Notiek visa abonēšanas kanāla iegūšana, kas ir lēna, bet pabeigta. -\n• izmantojot īpašu servisu, kas ir ātrs, bet parasti nav pilnīgs. -\n -\nAtšķirība starp abiem ir tā, ka ātrajā parasti trūkst informācijas, piemēram, video ilgums vai veids (nevar atšķirt tiešraides video no parastajiem), un tas var atgriezt mazāk vienumu. -\n -\nYouTube ir pakalpojuma piemērs, kas piedāvā šo ātro metodi ar savu RSS plūsmu. -\n -\nTātad izvēle sakrīt ar vēlamo: ātrums vai precīza informācija. + Vai jūs domājat, ka plūsmas atjaunināšana ir pārāk lēna? Ja tā, mēģiniet iespējot ātro atjaunināšanu (to var mainīt iestatījumos vai nospiežot pogu zemāk). \n \nNewPipe piedāvā divas plūsmas atjaunināšanas stratēģijas: \n• Notiek visa abonēšanas kanāla iegūšana, kas ir lēna, bet pabeigta. \n• izmantojot īpašu servisu, kas ir ātrs, bet parasti nav pilnīgs. \n \nAtšķirība starp abiem ir tā, ka ātrajā parasti trūkst informācijas, piemēram, video ilgums vai veids (nevar atšķirt tiešraides video no parastajiem), un tas var atgriezt mazāk vienumu. \n \nYouTube ir pakalpojuma piemērs, kas piedāvā šo ātro metodi ar savu RSS plūsmu. \n \nTātad izvēle sakrīt ar vēlamo: ātrums vai precīza informācija. Izslēgt ātro režīmu Ieslēgt ātro režīmu Pieejams dažos pakalpojumos, tas parasti ir daudz ātrāk, taču var atgriezt ierobežotu daudzumu informācijas un bieži arī nepilnīgu informāciju (piemēram, nav video ilguma, vienuma veida, nav tiešraides statusa) @@ -314,7 +303,7 @@ Notiek plūsmas apstrāde … Notiek plūsmas ielāde… Nav ielādēts: %d - Plūsma pēdējoreiz atjaunināta: %s + Atjaunināta: %s Abonementu grupas Kas jauns @@ -337,9 +326,9 @@ %d sekundi %d sekundes - ExoPlayer ierobežojumu dēļ meklēšanas ilgums tika iestatīts uz %d sekundēm - Jā, un daļēji skatītos video - Tiešraides, kas pirms tam skatītas un pēc tam pievienotas atskaņošanas sarakstam, tiks noņemtas. \nVai tiešām turpināt? + ExoPlayer ierobežojumu dēļ tīšanas solis tika iestatīts uz %d sekundēm + Jā, un daļēji skatītos + Tiešraides, kas iepriekš noskatītas un pēc tam pievienotas atskaņošanas sarakstam, tiks noņemtas. \nVai tiešām turpināt? Vai tiešām noņemt skatītās tiešraides? Noņemt skatīto System default @@ -380,7 +369,7 @@ Rādīt kļūdu Ir gaidāma lejupielāde ar šo nosaukumu Notiek lejupielāde ar šo nosaukumu - nevar pārrakstīt failu + nevar pārrakstīt datni Lejupielādēts fails ar šo nosaukumu jau pastāv Fails ar šo nosaukumu jau pastāv Pārrakstīt @@ -394,7 +383,7 @@ Darbība, pārslēdzoties uz citu lietotni no galvenā video atskaņotāja — %s Minimizēt, pārslēdzot aplikāciju Solis - Klusuma laikā patīt uz priekšu + Klusuma brīžos patīt uz priekšu Atvienot (var izraisīt traucējumus) Paturiet prātā, ka šī darbība var pieprasīt lielu datu daudzumu \n @@ -446,8 +435,7 @@ Nav ierobežojuma Nepiekrist Piekrist - Lai ievērotu Eiropas Vispārējās datu aizsardzības regulu (GDPR), mēs pievēršam jūsu uzmanību NewPipe privātuma politikai. Lūdzu, rūpīgi izlasiet to. -\nJums ir ta jāpieņem, lai nosūtītu mums kļūdas ziņojumu. + Lai ievērotu Eiropas Vispārīgo datu aizsardzības regulu (GDPR), mēs vēršam jūsu uzmanību NewPipe konfidencialitātes politikai. Lūdzu, rūpīgi izlasiet to.\nJums tā ir jāpieņem, lai nosūtītu mums kļūdas ziņojumu. Atiestatīt Tonis Temps @@ -470,40 +458,40 @@ Pielāgot Noklusējuma satura valoda Noklusējuma satura valsts - Nevarēja atpazīt saites URL. Atvērt ar citu aplikāciju\? + Nevarēja atpazīt saites URL. Vai atvērt citā lietotnē? Neatbalstīts saites URL Rādīt padomu, kad nospiežat fona vai popup pogu pie video \"Informācija:\" Rādīt \"Nospiediet, lai pievienotu\" padomu Automātiski atskaņot Lejupielādēt - Turpināt atskaņošanu pēc pārtraukumiem (piemēram, telefona zvana) + Turpina atskaņot video pēc pārtraukumiem (piemēram, telefona zvana) Turpināt atskaņošanu - Uzglabāt skatīto video vēsturi - Dzēst datus - Rādīt atskaņošanas pozīcijas indikatoru sarakstos + Uzglabā skatīto video vēsturi + Notīrīt datus + Rāda atskaņošanas pozīcijas indikatoru sarakstos Atskaņošanas pozīcija sarakstos Saglabāt pēdējo atskaņošanas pozīciju Atsākt atskaņošanu Skatīšanās vēsture Glabāt meklēšanas vēsturi lokāli (ierīces krātuvē) Meklēšanas vēsture - Izvēlieties, kādus ieteikumus rādīt, rakstot meklēšanas joslā + Atlasīt, kādus ieteikumus rādīt, ievadot vaicājumu meklēšanas joslā Meklēšanas ieteikumi - Automātiski atskaņot - Turpināt atskaņot videoklipus, automātiski pievienojot līdzīgus videoklipus - Automātiski atskaņot nākošo videoklipu - Kešatmiņas metadati notīrīti + Automātiski pievienot + Pievieno līdzīgus video atskaņošanas rindai, kad atskaņo pēdējo video, ja vien nav iespējota atkārtotā, malt uz riņķi, atskaņošana + Automātiski pievienot nākamo video + Metadatu kešatmiņa notīrīta Izdzēš visus kešatmiņā glabātos vietnes datus - Notīrīt kešatmiņas metadatus + Notīrīt kešatmiņā saglabātos metadatus Attēlu kešatmiņa notīrīta - Izslēdziet, lai paslēptu papildus informācijas laukus par video autoru, video saturu vai meklēšanas vaicājuma rezultātu + Izslēdziet, ja nevēlaties redzēt papildus informācijas laukus - video autoru, video saturu vai meklēšanas vaicājuma rezultātu Rādīt papildus informāciju Izslēdziet, ja nevēlaties redzēt video aprakstu un papildus informāciju Rādīt video aprakstu - Rādīt \'Nākošos\' un \'Līdzīgos\' videoklipus - Izslēdziet, lai paslēptu komentārus + Rādīt \'Nākamos\' un \'Līdzīgos\' video + Izslēdziet, ja vēlaties paslēpt komentārus Rādīt komentārus - Tagadējā atskaņošanas rinda tiks aizvietota + Pašreizējā atskaņošanas rinda tiks aizstāta/pārrakstīta Mainot vienu atskaņotāju uz citu, jūsu atskaņošanas rinda var tikt aizstāta/pārrakstīta Prasīt apstiprinājumu, pirms notīrīt atskaņošanas rindu Ātrās uz priekšu/atpakaļ tīšanas solis @@ -516,61 +504,61 @@ Noklusējuma video formāts Noklusējuma audio formāts Audio - Ļaut Android pielāgot paziņojuma krāsu atbilstoši galvenajai krāsai video attēlā (ņemiet vērā, ka tas nav pieejams visās ierīcēs) + Ļauj Android pielāgot paziņojuma krāsu atbilstoši galvenajai krāsai video attēlā (ņemiet vērā, ka tas nav pieejams visās ierīcēs) Kopīgot Atvērt ar Atvērt pārlūkā Atcelt Uzstādīt Netika atrasts video atskaņotājs (jūs variet uzstādīt VLC, lai to atskaņotu). - Netika atrasts video atskaņotājs. Uzstādīt VLC? + Netika atrasts video atskaņotājs. Vai uzstādīt VLC? Publicēts %1$s - Nospiediet uz meklēšanas ikonas, lai sāktu. + Nospiediet uz meklēšanas ikonas, lai atrastu vēlamo saturu. Pielāgot paziņojumu krāsu - Nekas + Neko Ielādējas Sajaukt Atkārtot - Jūs varat izvēlēties ne vairāk kā 3 darbības, kuras rādīs kompaktajā paziņojumā! - Rediģējiet katru paziņojuma darbību, pieskaroties tai. Izvēlieties trīs darbības, kuras rādīs kompaktā paziņojumā, izmantojot rūtiņas labajā pusē. + Jūs variet atlasīt ne vairāk kā 3 darbības, ko rādīt kompaktajā paziņojumā! + Rediģējiet katru zemāk redzamo paziņojuma darbību, pieskaroties tai. Atķeksējiet izvēles rūtiņas labajā pusē, lai atlasītu līdz pat trīm darbībām, kuras rādīt kompaktajā paziņojumā. Piektā darbības poga Ceturtā darbības poga Trešā darbības poga Otrā darbības poga Pirmā darbības poga - Apgriezt video attēlu, kuru rāda paziņojumā, no 16:9 uz 1:1 proporciju (iespējams, attēls būs izstiepts) - Apgriezt video attēlu uz 1:1 proporciju - Rādīt opciju atskaņot video ar Kodi mediju centru - Rādīt \"Atskaņot ar Kodi\" opciju - Uzstādīt trūkstošo Kore lietotni? - Atskaņot ar Kodi - Tikai dažas ierīcas var atskaņot 2K/4K videoklipus + Apgriež paziņojumā redzamo video sīkattēlu no 16:9 uz 1:1 malu attiecību (iespējams, attēls būs izstiepts) + Apgriezt video sīkattēlu uz 1:1 malu attiecību + Rādīt opciju atskaņot video Kodi mediju centrā + Rādīt \"Atskaņot Kodi\" opciju + Uzstādīt trūkstošo Kore, tālvadības pults, lietotni? + Atskaņot Kodi + Ne visas ierīcas var atskaņot 2K/4K izšķirtspējas video Rādīt augstākas izšķirtspējas Noklusējuma izšķirtspēja - Izvēlieties lejupielādes mapi priekš audio failiem - Lejupielādētie audio faili tiek glabāti šeit + Atlasīt lejupielādes mapi, kur glabāt audio datnes + Lejupielādētās audio datnes tiek glabātas šeit Audio lejupielādes mape - Izvēlaties lejupielādes mapi priekš video failiem + Atlasīt lejupielādes mapi, kur glabāt video datnes Lejupielādētās video datnes tiek glabātas šeit Video lejupielādes mape Pievienot - Klausīties fonā + Klausīt fonā Atlasiet cilni Saglabātie saraksti Abonementi Rādīt informāciju Abonementu nevarēja atjaunināt - Nevarēja mainīt abonementu + Abonementu nevarēja mainīt Atcelts kanāla abonements Atcelt abonementu Abonēts Abonēt Izmantot ārējo audio atskaņotāju - Noņem skaņu dažās izšķirtspējās + Dažās izšķirtspējās nav pieejami skaņas celiņi Izmantot ārējo video atskaņotāju Kopīgot ar Tiek rādīti %s rezultāti - Vai jūs domājāt \"%1$s\"\? + Varbūt jūs gribējāt meklēt \"%1$s\"? Iestatījumi Meklēt Lejupielādēt video datni @@ -613,9 +601,9 @@ Izslēgt multivides tuneļošanu Izslēdziet multivides tuneļošanu, ja jums video atskaņošanas laikā parādās melns ekrāns vai aizķeršanās. Ieslēgt teksta atlasīšanu video aprakstā - Lejupielādes mape vēl nav iestatīta, izvēlieties noklusējuma lejupielādes mapi + Lejupielādes mape vēl nav iestatīta, atlasiet noklusējuma lejupielādes mapi tagad Pavelciet atlasīto elementu pa kreisi vai labi, lai to aizvāktu - Lokālie meklēšanas ieteikumi + Lokālos meklēšanas ieteikumus Augstas kvalitātes (lielāks) Pārbaudīt atjauninājumus Pašrocīgi pārbaudīt jaunas versijas pieejamību @@ -635,7 +623,7 @@ Privātums Sarakstā neiekļauts Uzņēmums - Servera meklēšanas ieteikumi + Servera meklēšanas ieteikumus Atzīmēt kā noskatītu Apstrādā... Var aizņemt kādu laiku @@ -666,7 +654,7 @@ Kļūdas ziņojuma paziņojums Atskaņošanas ielādes intervāla lielums NewPipe radās kļūdu, pieskarieties, lai ziņotu - Kreisā žesta darbība + Kreisās puses žesta darbība Neizdevās kopēt starpliktuvē Noņemt pastāvīgo sīktēlu Pārbaudīt, vai nav jaunas tiešraides @@ -678,20 +666,20 @@ Izveidot kļūdas paziņojumu Jebkurš tīkls Jums ir jaunākā NewPipe versija - Noderīgi, piemēram, lietojot austiņas ar bojātām pogām - Atskaņos skaņu celiņu ar audio aprakstiem vājredzīgajiem, ja tāds ir pieejams - Ignorēt ierīces multimēdiju pogas + Noder, piemēram, kad lietojiet austiņas ar bojātām pogām + Atskaņos skaņas celiņu ar audio aprakstiem vājredzīgajiem, ja tāds ir pieejams + Ignorēt pieslēgtās ierīces multimēdiju pogas Izdzēst visus lejupielādētos failus\? Jaunumi kanālā Dot priekšroku oriģinālajai skaņai - Atskaņos oriģinālo skaņu celiņu neatkarīgi no valodas + Atskaņos oriģinālo skaņas celiņu neatkarīgi no iestatītās valodas Dot priekšroku skaņu celiņam ar audio aprakstu - Izvēlēties žestu kreisajai atskaņotāja ekrāna pusei - Izvēlēties žestu labajai atskaņotāja ekrāna pusei - Labējā žesta darbība - Spilgtums - Skaļums - Nekā + Atlasiet žestu atskaņotāja ekrāna kreisajai pusei + Atlasiet žestu atskaņotāja ekrāna labajai pusei + Labās puses žesta darbība + Regulēt spilgtumu + Regulēt skaļumu + Darīt neko Abonementus var ievietot vai izgūt, izmantojot 3-punktoto izvēlni augšējā labajā ekrāna stūrī Ja Jums rodas problēmas ar lietotni, noteikti apskatiet šīs atbildes bieži uzdotiem jautājumiem! Skatīt tīkla vietnē @@ -706,13 +694,13 @@ Vai vēlaties dzēst visus tiešraižu dublikātus šajā sarakstā\? Rādīt/slēpt tiešraides Ātrais režīms - Paziņot par jaunām tiešraidēm no abonementiem + Informē par jaunām abonementu tiešraidēm Procenti Pustonis Paziņojumi par jaunām tiešraidēm Pārbaužu biežums Galvenās cilnes atlasītāja pārvietošana uz apakšu - Rediģējiet katru turpmāk norādīto paziņojuma darbību, pieskaroties tai. Pirmās trīs darbības (atskaņošana/pauze, iepriekšējais un nākamais) ir iestatītas sistēmā, un tās nevar pielāgot. + Rediģējiet katru zemāk redzamo paziņojuma darbību, pieskaroties tai. Pirmās trīs darbības (atskaņot/pauze, iepriekšējais un nākamais) ir sistēmas iestatītas, un tās nevar pielāgot. Mainīt progresīvā satura ielādes intervāla lielumu (pašlaik %s). Mazāka vērtība var paātrināt to sākotnējo ielādi @@ -726,12 +714,12 @@ Par Sīkattēli Kārtot - NewPipe var pati automātiski pārbaudīt jaunas versijas pieejamību laiku pa laikam un informēt jūs, kad tā ir pieejama.\nVai jūs tiešām gribiet ieslēgt šo funkciju? + NewPipe pati var automātiski pārbaudīt jaunas versijas pieejamību laiku pa laikam un informēt jūs, kad tā ir pieejama.\nVai jūs tiešām gribiet ieslēgt šo funkciju? Netika atrasts atbilstošs failu pārvaldnieks šai darbībai. \nLūdzu instalējiet failu pārvaldnieku vai pamēģiniet atspējot \'%s\' lejuplādēšanas iestatījumos oriģinālais Nepieciešams tīkla savienojums - Atiestatīt visus iestatījumus uz to sākotnējām vērtībām + Atiestata visus iestatījumus uz to sākotnējām vērtībām Atiestatīt iestatījumus Visu iestatījumu atiestatošana atmetīs visus jūsu izvēlētos iestatījumus un restartēs aplikāciju. \n @@ -760,7 +748,7 @@ Rādīt kļūdas paziņojumu Piegādāt kanālu cilnes Cilnes, kuras piegādāt, atjaunojot jauninājumus. Šai opcijai nav nekādas iedarbības, ja kanāls tiek atjaunots ātrajā režīmā. - Multivides tuneļošana tika atspēkota pēc noklusējuma tādēļ, ka ir zināms, ka jūsu ierīces modelis to neatbalsta. + Multivides tunelēšana tika atspējota pēc noklusējuma tādēļ, ka ir zināms, ka jūsu ierīces modelis to neatbalsta. Izvēlēties kvalitāti ārējiem atskaņotājiem ExoPlayer iestatījumi Kanālu cilnes @@ -771,8 +759,8 @@ Apakškanālu avatāri Augšuplādētāju avatāri Ilgums - Attīt - Patīt + Attīt - tīt atpakaļ + Tīt uz priekšu Izvēlēties attēlu kvalitāti un vai vispār ielādēt attēlus, lai samazinātu datu un atmiņas lietojumu. Izmaiņas iztīra iekšējās atmiņas un diska attēlu kešatmiņu — %s %s atbildes @@ -838,5 +826,14 @@ “Ļaut rādīt virs citām lietotnēm” Meklēt %1$s Meklēt %1$s (%2$s) - SoundCloud Top 50 lapa noņemta + SoundCloud Top 50 lapa likvidēta + Vēl nav izveidota neviena abonementu grupa + Konts slēgts\n\n%1$s norāda, ka iemesls kādēļ: %2$s + Atskaņošanas laikā no servera saņemta HTTP 403 kļūda, ko, iespējams, izraisīja straumēšanas URL derīguma beigu termiņš vai IP aizliegums + Atskaņošanas laikā no servera saņemta HTTP %1$s kļūda + Atskaņošanas laikā no servera saņemta HTTP 403 kļūda, ko, iespējams, izraisīja IP aizliegums vai straumēšanas URL atšifrēšanas (deobfuskācijas) problēmas + 2025. gada augustā Google paziņoja, ka, sākot ar 2026. gada septembri, lai uzstādītu lietotnes, būs nepieciešama izstrādātāja verifikācija visām Android lietotnēm sertificētajās ierīcēs, tostarp arī tām, kuras uzstādītas ārpus Play veikala. Tā kā NewPipe izstrādātāji nepiekrīt un negrib pieņemt šo prasību, pēc šī datuma NewPipe vairs nedarbosies sertificētajās Android ierīcēs. + Detalizētāka informācija + Risinājums + SoundCloud likvidēja oriģinālos Top 50 topus. Atbilstošā cilne noņemta no jūsu galvenās lapas. diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index f14d2e402..8bee327f3 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -144,7 +144,7 @@ Eliminar ficheiros descarregados Idioma da aplicação Utilizadores - Os vídeos que tenham sido vistos antes e depois de serem adicionados à lista de reprodução serão removidos. \nTem a certeza? Esta ação não pode ser revertida! + Os vídeos que tenham sido vistos antes e após serem adicionados à lista de reprodução serão removidos. \nTem a certeza? %s a ver %s a ver @@ -861,4 +861,7 @@ Este conteúdo não está disponível para o país de conteúdo atualmente selecionado.\n\nAltere a sua seleção de \"Configurações > Conteúdo > País predefinido de conteúdo\". Erro HTTP 403 recebido do servidor durante a reprodução, provavelmente causado pela URL de streaming expirado ou IP banido Erro HTTP 403 recebido do servidor durante a reprodução, provavelmente causado por um bloqueio de IP ou problemas de desofuscação da URL de streaming + Em agosto de 2025, o Google anunciou que, a partir de setembro de 2026, a instalação de apps exigirá a verificação do programador para todas as apps Android em dispositivos certificados, incluindo aqueles instalados fora da Play Store. Como os programadores do NewPipe não concordam com este requisito, o NewPipe já não funcionará em dispositivos Android certificados após essa data. + Pormenores + Solução diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index 8d2d369e3..a8d6ff26a 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -517,7 +517,7 @@ Este vídeo está restringido a adultos. \n \nPara o poder ver, tem que ativar \"%1$s\" nas definições. - Os vídeos que tenham sido vistos antes e depois de serem adicionados à lista de reprodução serão removidos. \nTem a certeza? Esta ação não pode ser revertida! + Os vídeos que tenham sido vistos antes e após serem adicionados à lista de reprodução serão removidos. \nTem a certeza? Sim e também os vídeos parcialmente vistos Remover transmissões vistas? Remover visualizados @@ -861,7 +861,7 @@ Este conteúdo não está disponível para o país de conteúdo atualmente selecionado.\n\nAltere a sua seleção de \"Configurações > Conteúdo > País predefinido de conteúdo\". Erro HTTP 403 recebido do servidor durante a reprodução, provavelmente causado pela URL de streaming expirado ou IP banido Erro HTTP 403 recebido do servidor durante a reprodução, provavelmente causado por um bloqueio de IP ou problemas de desofuscação da URL de streaming - O Google anunciou que, a partir de 2026/2027, todos os aplicativos em dispositivos Android certificados exigirão que os desenvolvedores forneçam seus dados pessoais de identidade diretamente ao Google. Como os desenvolvedores deste aplicativo não concordam com esse requisito, o aplicativo deixará de funcionar em dispositivos Android certificados após essa data. + Em agosto de 2025, o Google anunciou que, a partir de setembro de 2026, a instalação de apps exigirá a verificação do programador para todas as apps Android em dispositivos certificados, incluindo aqueles instalados fora da Play Store. Como os programadores do NewPipe não concordam com este requisito, o NewPipe já não funcionará em dispositivos Android certificados após essa data. Detalhes Solução diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index f32b69d74..5bacb22ef 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -633,7 +633,7 @@ Ошибка загрузки подписки Открыть веб-сайт Аккаунт отключён - Начиная с Android 10 поддерживается только «Storage Access Framework» + Начиная с Android 10, поддерживается только \"Storage Access Framework\" Спрашивать, куда сохранять каждую загрузку Папка для загрузки ещё не выбрана, укажите папку для загрузки сейчас Отключить @@ -866,7 +866,7 @@ Во время воспроизведения получена ошибка HTTP 403 от сервера, вероятно, вызванная блокировкой IP-адреса или проблемами деобфускации URL-адреса потоковой передачи %1$s отказался предоставить данные, запросив логин для подтверждения, что запросчик не бот.\n\nВозможно, ваш IP-адрес временно заблокирован %1$s. Вы можете подождать некоторое время или переключиться на другой IP-адрес (например, включив/выключив VPN или переключившись с Wi-Fi на мобильный интернет). Этот контент недоступен для выбранной страны контента.\n\nИзмените свой выбор в разделе «Настройки > Контент > Страна контента по умолчанию». - Google объявила, что начиная с 2026/2027 года все приложения на сертифицированных устройствах Android будут требовать от разработчиков предоставления своих личных данных для идентификации напрямую Google. Так как разработчики этого приложения не согласны с этим требованием, приложение перестанет работать на сертифицированных устройствах Android после этого времени. + В августе 2025 года, Google анонсировала, что с сентября 2026 года, установка приложений потребует верификации разработчика для всех Android приложений на сертифицированных устройствах, включая те, которые были установлены не через Play Store. Поскольку разработчики NewPipe не согласны с этим требованием, NewPipe перестанет работать на сертифицированных Android устройствах после этой даты. Подробнее Решение diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml index 6b5728d7d..f38397497 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -862,7 +862,7 @@ Chyba HTTP 403 prijatá zo servera počas prehrávania, pravdepodobne spôsobená zákazom IP adresy alebo problémami s deobfuskáciou streamingovej URL adresy %1$s odmietol poskytnúť údaje, žiada o prihlásenie na potvrdenie, že žiadateľ nie je bot.\n\nVaša IP adresa mohla byť dočasne zakázaná %1$s, môžete nejaký čas počkať alebo prejsť na inú IP adresu (napríklad zapnutím/vypnutím VPN alebo prepnutím z WiFi na mobilné dáta). Tento obsah nie je dostupný pre aktuálne zvolenú krajinu obsahu.\n\nZmeňte výber v ponuke \"Nastavenia > Obsah > Predvolená krajina obsahu\". - Google oznámil, že od roku 2026/2027 budú všetky aplikácie na certifikovaných zariadeniach s Androidom vyžadovať, aby vývojári odovzdali svoje osobné identifikačné údaje priamo Googlu. Keďže vývojári tejto aplikácie s touto požiadavkou nesúhlasia, aplikácia po tomto termíne na certifikovaných zariadeniach s Androidom prestane fungovať. + V auguste 2025 spoločnosť Google oznámila, že od septembra 2026 bude inštalácia aplikácií vyžadovať overenie vývojára pre všetky aplikácie Android na certifikovaných zariadeniach, vrátane tých, ktoré sú inštalované mimo obchodu Play Store. Keďže vývojári NewPipe s touto požiadavkou nesúhlasia, NewPipe po tomto termíne nebude na certifikovaných zariadeniach Android fungovať. Podrobnosti Riešenie diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index a223548fe..84590e255 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -847,7 +847,7 @@ Oynatırken sunucudan HTTP 403 hatası alındı, IP engeli ya da akış URL’si çözme sorunları olabilir %1$s veri sağlamayı geri çevirdi, istekçinin robot olmadığını doğrulaması için oturum açmasını istiyor.\n\n%1$s, IP adresinizi geçici olarak engellemiş olabilir, bir süre bekleyebilir ya da başka IP\'ye geçebilirsiniz (örneğin VPN\'i açıp/kapatarak ya da WiFi\'den mobil veriye geçerek). Bu içerik şu anda seçili içerik ülkesinde kullanılamıyor.\n\nSeçiminizi \"Ayarlar > İçerik > Öntanımlı içerik ülkesi\"nden değiştirin. - Google, 2026/2027 yılından itibaren sertifikalı Android cihazlardaki tüm uygulamaların, geliştiricilerin kişisel kimlik bilgilerini doğrudan Google’a göndermesini gerektireceğini duyurdu. Bu uygulamanın geliştiricileri bu gerekliliği kabul etmediğinden, uygulama bu tarihten sonra sertifikalı Android cihazlarda çalışmayacaktır. + Google, Eylül 2026\'dan itibaren sertifikalı Android cihazlardaki Play Store harici olmak üzere tüm uygulamaların, geliştiricilerin kişisel kimlik bilgilerini doğrudan Google’a göndermesini gerektireceğini duyurdu. NewPipe geliştiricileri bu zorunluluğu kabul etmediğinden, NewPipe bu tarihten sonra sertifikalı Android cihazlarda çalışmayacaktır. Detaylar Çözüm diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index c6dcdbdc1..c3595ebec 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -491,7 +491,7 @@ Звичайний режим Швидкий режим Доступно для деяких служб, швидке, але може повертати не весь вміст каналу і часто неповну інформацію (тривалість, тип елемента, статус трансляції) - Оновлення з RSS, коли воно є + Отримувати з виділеної стрічки, коли доступно Оновлювати постійно Період актуальності підписок після поновлення — %s Поріг оновлення підписок @@ -510,8 +510,8 @@ Останнє оновлення: %s Через обмеження ExoPlayer точність перемотування становить %d секунд Так, а також частково переглянуті відео - Відео, які Ви переглядали до та після додавання в добірку, вилучатимуться. \nВи впевнені? Це незворотна дія! - Видалити переглянуті відео? + Потоки, які були переглянуті до та після додавання в добірку, будуть видалені. \nВи впевнені? + Видалити переглянуті потоки? Видалити переглянуті Створено автоматично (автора не знайдено) ∞ вiдео @@ -604,7 +604,7 @@ Обрізати мініатюру відео показувану в сповіщенні з пропорцій 16: 9 до 1:1 Вимкнення тунелювання медіаданих за наявності чорного екрана або гальмування під час відтворення відео. Вимкнути тунелювання медіа - «Фреймворк доступу до сховища» (SAF) підтримується лише починаючи з Android 10 + Починаючи з Android 10, підтримується тільки \"Storage Access Framework\" Вас питатиме, куди зберігати кожне завантаження Не вказано теки завантаження, оберіть типову теку завантаження зараз Відкрити вебсайт @@ -866,4 +866,7 @@ Під час відтворення від сервера отримано помилку HTTP 403, ймовірно, через заборону IP-адреси або проблеми з деобфускацією URL-адреси потокової передачі %1$s відмовився надати дані, запитуючи логін для підтвердження того, що запитувач не є ботом.\n\nВаша IP-адреса могла бути тимчасово заблокована %1$s. Ви можете почекати деякий час або перейти на іншу IP-адресу (наприклад, увімкнувши/вимкнувши VPN або переключившись з Wi-Fi на мобільні дані). Цей контент недоступний для вибраної країни контенту.\n\nЗмініть свій вибір у розділі \"Налаштування > Контент > Країна контенту за замовчуванням\". + У серпні 2025 року, Google анонсувала, що з вересня 2026 року, для встановлення застосунків буде потрібна верифікація розробника для всіх Android застосунків на сертифікованих пристроях, включаючи ті, що були встановлені не через Play Store. Оскільки розробники NewPipe не згодні з цією вимогою, NewPipe перестане працювати на сертифікованих Android пристроях після цієї дати. + Детальніше + Вирішення diff --git a/fastlane/metadata/android/cs/changelogs/1009.txt b/fastlane/metadata/android/cs/changelogs/1009.txt new file mode 100644 index 000000000..7c4309387 --- /dev/null +++ b/fastlane/metadata/android/cs/changelogs/1009.txt @@ -0,0 +1,14 @@ +Důležité +Přidány informace a výzva k akci v rámci kampaně Keep Android Open: https://www.keepandroidopen.org/ + +Vylepšeno +[Feed] Změna pořadí aktualizace starších odběrů +Zrušeno kupení stránek s komentáři +Nepředávání události kliknutí podkladovým zobrazením při kliknutí na stránku s podrobnostmi o videu + +Opraveno +Rozložení záhlaví odpovědí na komentáře bez avataru +Několik oprav rozhraní souvisejících s přehrávačem +[SoundCloud] Oprava streamů s dlouhými ID + +a další opravy a vylepšení! diff --git a/fastlane/metadata/android/de/changelogs/1009.txt b/fastlane/metadata/android/de/changelogs/1009.txt new file mode 100644 index 000000000..31d65bc86 --- /dev/null +++ b/fastlane/metadata/android/de/changelogs/1009.txt @@ -0,0 +1,14 @@ +Wichtig +Informationen zur Kampagne „Keep Android Open“: https://keepandroidopen.org/de/ + +Verbessert +[Feed] Die Reihenfolge, in der veraltete Abos aktualisiert werden +Kommentarseiten nicht stapeln +Beim Klicken auf die Videodetailseite keine Klickereignisse an darunterliegende Ansichten weiterleiten + +Behoben +Layout der Kommentarantworten ohne Profilbild +Mehrere Player-bezogene Korrekturen der Bedienoberfläche +[SoundCloud] Streams mit langen IDs + +und weitere Korrekturen und Verbesserungen! diff --git a/fastlane/metadata/android/de/changelogs/999.txt b/fastlane/metadata/android/de/changelogs/999.txt index 059b4e081..770017d06 100644 --- a/fastlane/metadata/android/de/changelogs/999.txt +++ b/fastlane/metadata/android/de/changelogs/999.txt @@ -7,6 +7,6 @@ Verbessert • [Bandcamp] Anzeige zusätzlicher Informationen im Radio-Kiosk Behoben -• [YouTube] Behebung gelegentlicher HTTP-403-Fehler am Anfang oder in der Mitte von Videos -• [YouTube] Extrahieren von Avataren und Banner aus mehr Kanal-Header-Typen -• [Bandcamp] Verschiedene Fehler behoben und HTTPS wird stets verwendet +• [YouTube] Gelegentliche HTTP-403-Fehler am Anfang oder in der Mitte von Videos +• [YouTube] Extrahieren von Profilbildern und Banner aus mehr Kanal-Header-Typen +• [Bandcamp] Verschiedene Fehler behoben und HTTPS wird immer verwendet diff --git a/fastlane/metadata/android/fr/changelogs/1009.txt b/fastlane/metadata/android/fr/changelogs/1009.txt new file mode 100644 index 000000000..468ab4cec --- /dev/null +++ b/fastlane/metadata/android/fr/changelogs/1009.txt @@ -0,0 +1,15 @@ +Important +Informations et appel à l'action pour la campagne Keep Android Open ajoutés : https://www.keepandroidopen.org/ + +Améliorations +[Flux] Ordre de mise à jour des abonnements obsolètes aléatoire +Pages de commentaires non empilées +Événements de clic désactivés sur la page de détails d'une vidéo + + +Corrections +Affichage de l'en-tête des réponses aux commentaires sans image d'avatar +Corrections d'interface utilisateur pour plusieurs lecteurs +[SoundCloud] Correction des flux avec des identifiants longs + +Et bien d'autres corrections et améliorations ! diff --git a/fastlane/metadata/android/ja/changelogs/1001.txt b/fastlane/metadata/android/ja/changelogs/1001.txt new file mode 100644 index 000000000..4f89e86bc --- /dev/null +++ b/fastlane/metadata/android/ja/changelogs/1001.txt @@ -0,0 +1,6 @@ +改善策 +・Android 13以降ではプレーヤーの通知設定の変更を常に許可してください + +修正済 +・データベース/登録チャンネルのエクスポートで既存のファイルが切り捨てられず、エクスポートが破損する可能性がある問題を修正 +・タイムスタンプをクリックするとプレーヤーが最初から再開される問題を修正 diff --git a/fastlane/metadata/android/ja/changelogs/1002.txt b/fastlane/metadata/android/ja/changelogs/1002.txt new file mode 100644 index 000000000..78cf732a6 --- /dev/null +++ b/fastlane/metadata/android/ja/changelogs/1002.txt @@ -0,0 +1,4 @@ +YouTubeでストリームが再生されない問題を修正しました。 + +このリリースでは、YouTubeの動画の詳細が読み込まれないという最も深刻なエラーのみを修正しています。 +他にも問題があることを認識しており、近日中に別のリリースで解決する予定です。 diff --git a/fastlane/metadata/android/lv/changelogs/1001.txt b/fastlane/metadata/android/lv/changelogs/1001.txt index 4525874fd..39fab6e79 100644 --- a/fastlane/metadata/android/lv/changelogs/1001.txt +++ b/fastlane/metadata/android/lv/changelogs/1001.txt @@ -1,6 +1,6 @@ Uzlabojumi -• Vienmēr atļauj nomainīt atskaņotāja paziņojumu iestatījumus uz ierīcēm ar Android 13+ +• Vienmēr atļauj nomainīt atskaņotāja paziņojumu iestatījumus uz Android 13+ ierīcēm Salabots -• Datubāzes/abonementu izgūšana vairs neapcērp iepriekš eksistējošo datni, kas, iespējams, izraisīja bojātu datni +• Datubāzes/abonementu izgūšana vairs neapcērp iepriekš eksistējošo datni, kas, iespējams, radīja bojātu datni • Novērsta atskaņotāja atsākšana no paša sākuma, kad noklikšķina uz laika zīmoga diff --git a/fastlane/metadata/android/lv/changelogs/64.txt b/fastlane/metadata/android/lv/changelogs/64.txt index 9a362aa95..fc5d29764 100644 --- a/fastlane/metadata/android/lv/changelogs/64.txt +++ b/fastlane/metadata/android/lv/changelogs/64.txt @@ -5,4 +5,4 @@ - pievienots (darbojošs) multimediju sesijas atbalsts #1433 ### Salabots -- Salabota lietotnes nobrukšana, kad atvēra Lejupielādes (labojums pieejams relīzes laidienos) #1441 +- Salabota lietotnes nobrukšana, kad atvēra Lejupielādes (labojums pieejams izlaiduma laidienos) #1441 diff --git a/fastlane/metadata/android/lv/changelogs/770.txt b/fastlane/metadata/android/lv/changelogs/770.txt index a46cda84a..b4b970280 100644 --- a/fastlane/metadata/android/lv/changelogs/770.txt +++ b/fastlane/metadata/android/lv/changelogs/770.txt @@ -1,4 +1,4 @@ Izmaiņas 0.17.2 versijā Salabots -• Novērsta problēma, ka videoklips bija nepieejams +• Novērsta problēma, ka video bija nepieejams diff --git a/fastlane/metadata/android/lv/changelogs/850.txt b/fastlane/metadata/android/lv/changelogs/850.txt index 20c79661b..cc8e048ac 100644 --- a/fastlane/metadata/android/lv/changelogs/850.txt +++ b/fastlane/metadata/android/lv/changelogs/850.txt @@ -1 +1 @@ -Šī versijas relīze iekļauj atjaunināto YouTube vietnes versiju. Vecās vietnes versijas atbalsts tiks pārtraukta martā, un tāpēc jums ir nepieciešams atjaunināt NewPipe. +Šis versijas izlaidums iekļauj atjaunināto YouTube vietnes versiju. Vecās vietnes versijas pieejamība tiks pārtraukta martā, un tāpēc jums ir nepieciešams atjaunināt NewPipe. diff --git a/fastlane/metadata/android/lv/changelogs/910.txt b/fastlane/metadata/android/lv/changelogs/910.txt index 8e7b9d227..06eecc81a 100644 --- a/fastlane/metadata/android/lv/changelogs/910.txt +++ b/fastlane/metadata/android/lv/changelogs/910.txt @@ -1 +1 @@ -Salabota datu bāzes migrācija, kas retos gadījumos neļāva NewPipe palaisties. +Salabota datubāzes migrācija, kas retos gadījumos neļāva NewPipe palaisties. diff --git a/fastlane/metadata/android/lv/changelogs/950.txt b/fastlane/metadata/android/lv/changelogs/950.txt index f9a82fe20..699bd8a46 100644 --- a/fastlane/metadata/android/lv/changelogs/950.txt +++ b/fastlane/metadata/android/lv/changelogs/950.txt @@ -1,4 +1,4 @@ -Šajā versijā ir veikti tikai trīs nelieli labojumi: +Šajā versijā veikti tikai trīs nelieli labojumi: • Salabota piekļuve krātuvei Android 10+ operētājsistēmās • Salabota kiosku atvēršana -• Salabota ilguma noteikšana ilgiem videoklipiem +• Salabota ilguma noteikšana ilgiem video diff --git a/fastlane/metadata/android/lv/changelogs/956.txt b/fastlane/metadata/android/lv/changelogs/956.txt new file mode 100644 index 000000000..eafb4c727 --- /dev/null +++ b/fastlane/metadata/android/lv/changelogs/956.txt @@ -0,0 +1 @@ +[YouTube] Novērsta lietotnes avarēšana pie jebkuras video ielādes diff --git a/fastlane/metadata/android/lv/changelogs/982.txt b/fastlane/metadata/android/lv/changelogs/982.txt new file mode 100644 index 000000000..a775fd35b --- /dev/null +++ b/fastlane/metadata/android/lv/changelogs/982.txt @@ -0,0 +1 @@ +Novērsta problēma, kuras dēļ YouTube nevarēja atskaņot nevienu straumi. diff --git a/fastlane/metadata/android/lv/changelogs/985.txt b/fastlane/metadata/android/lv/changelogs/985.txt new file mode 100644 index 000000000..0ad24abc4 --- /dev/null +++ b/fastlane/metadata/android/lv/changelogs/985.txt @@ -0,0 +1 @@ +Novērsta problēma, kuras dēļ YouTube nevarēja atskaņot nevienu straumi diff --git a/fastlane/metadata/android/lv/changelogs/989.txt b/fastlane/metadata/android/lv/changelogs/989.txt index f680eced4..c131df9e4 100644 --- a/fastlane/metadata/android/lv/changelogs/989.txt +++ b/fastlane/metadata/android/lv/changelogs/989.txt @@ -1,3 +1,3 @@ -• [YouTube] Novērsta bezgalīgā video ielāde pie jebkuru video atskaņošanu -• [YouTube] Novērsta dažu videoklipu lēnā ielāde (straumēšanas ierobežošanas problēma) +• [YouTube] Novērsta bezgalīgi ilgā video ielāde pie jebkuru video atskaņošanu +• [YouTube] Novērsta dažu video lēnā ielāde (straumēšanas ierobežošanas problēma) • Atjaunināta jsoup bibliotēka uz 1.15.3 versiju, kas ietver drošības labojumus diff --git a/fastlane/metadata/android/lv/changelogs/998.txt b/fastlane/metadata/android/lv/changelogs/998.txt index 79e4f3162..f69425343 100644 --- a/fastlane/metadata/android/lv/changelogs/998.txt +++ b/fastlane/metadata/android/lv/changelogs/998.txt @@ -1,4 +1,4 @@ Salabota YouTube nespēja atskaņot jebkādu straumi HTTP 403 kļūdu dēļ. Nejaušas HTTP 403 kļūdas YouTube video skatīšanās laikā vēl nav novērstas. -Konkrētā problēma tiks atrisināta nākamajā labojumfailu laidienā, cik drīz vien iespējams. +Konkrētā problēma tiks atrisināta cik drīz vien iespējama nākamajā labojumfailu izlaidumā. diff --git a/fastlane/metadata/android/pl/changelogs/1009.txt b/fastlane/metadata/android/pl/changelogs/1009.txt new file mode 100644 index 000000000..7f99742a7 --- /dev/null +++ b/fastlane/metadata/android/pl/changelogs/1009.txt @@ -0,0 +1,14 @@ +Ważne +- Dodano informację i wezwanie do działania w ramach kampanii Keep Android Open: https://www.keepandroidopen.org/ + +Ulepszone +- [Kanał] Losowa kolejność aktualizacji nieaktualnych subskrypcji +- Nienakładanie się stron komentarzy +- Nieprzekazywanie naciśnięć do przesłoniętych widoków przy naciskaniu strony szczegółów wideo + +Naprawione +- Układ nagłówka odpowiedzi na komentarze bez awatara +- Wiele poprawek UI związanych z odtwarzaczem +- [SoundCloud] Strumienie z długimi ID + +i wiele innych! diff --git a/fastlane/metadata/android/sk/changelogs/1009.txt b/fastlane/metadata/android/sk/changelogs/1009.txt new file mode 100644 index 000000000..de2629994 --- /dev/null +++ b/fastlane/metadata/android/sk/changelogs/1009.txt @@ -0,0 +1,14 @@ +Dôležité +Pridané informácie a výzva k akcii v rámci kampane Keep Android Open: https://www.keepandroidopen.org/ + +Vylepšené +[Feed] Prehodenie poradia, v ktorom sa aktualizujú neaktuálne odbery +Nehromadenie stránok s komentármi +Pri kliknutí na stránku s podrobnosťami o videu sa neprenášajú udalosti kliknutia do podkladových zobrazení + +Opravené +Rozloženie záhlavia odpovedí na komentáre bez avataru +Viacero opráv používateľského rozhrania súvisiacich s prehrávačom +[SoundCloud] Oprava streamov s dlhými ID + +a ďalšie opravy a vylepšenia! diff --git a/fastlane/metadata/android/ta/changelogs/1000.txt b/fastlane/metadata/android/ta/changelogs/1000.txt index 43842685f..5377ef633 100644 --- a/fastlane/metadata/android/ta/changelogs/1000.txt +++ b/fastlane/metadata/android/ta/changelogs/1000.txt @@ -1,13 +1,13 @@ -மேம்படுத்தப்பட்டது - / மேலும் / குறைவான உள்ளடக்கத்தைக் காட்ட பிளேலிச்ட் விளக்கத்தைச் சொடுக்கு செய்யவும் - • [PEERTUBE] `charbisto.me` உதாரணமாக இணைப்புகளைத் தானாகவே கையாளவும் - The வரலாற்றுத் திரையில் ஒற்றை உருப்படியை மட்டுமே இயக்கத் தொடங்குங்கள் +மேம்படுத்தப்பட்டது +• அதிகமான / குறைவான உள்ளடக்கத்தைக் காட்ட, பிளேலிச்ட் விளக்கத்தை சொடுக்கு செய்யக்கூடியதாக மாற்றவும் +• [PeerTube] தானாகவே `subscribeto.me` நிகழ்வு இணைப்புகளைக் கையாளவும் +• வரலாற்றுத் திரையில் ஒற்றை உருப்படியை மட்டும் இயக்கத் தொடங்குங்கள் - சரி - RS RSS பொத்தான் தெரிவுநிலையை சரிசெய்யவும் - See gaekbar முன்னோட்ட செயலிழப்புகளை சரிசெய்யவும் - Play ஒரு சிறுபடம் இல்லாத உருப்படியைப் பிளேலிச்டிங் சரிசெய்யவும் - The பதிவிறக்க உரையாடல் தோன்றுவதற்கு முன்பு வெளியேறுவதை சரிசெய்யவும் - Tied தொடர்புடைய உருப்படிகளைச் சரிசெய்யவும் பட்டியல் enqueue பாப்அப் - Plale பிளேலிச்ட் உரையாடலில் கூட்டு இல் ஆர்டரை சரிசெய்யவும் - Plale பிளேலிச்ட் புத்தகக்குறி உருப்படி தளவமைப்பை சரிசெய்யவும் +சரி செய்யப்பட்டது +• RSS பொத்தான் தெரிவுநிலையை சரிசெய்யவும் +• சீக்பார் முன்னோட்ட செயலிழப்புகளை சரிசெய்யவும் +• சிறுபடம் இல்லாத உருப்படியை பிளேலிச்ட் செய்வதை சரிசெய்யவும் +• பதிவிறக்க உரையாடல் தோன்றும் முன் அதிலிருந்து வெளியேறுவதைச் சரிசெய்யவும் +• தொடர்புடைய உருப்படிகளின் பட்டியல் என்கியூ பாப்அப்பை சரிசெய்யவும் +• பிளேலிச்ட் உரையாடலில் சேர்க்கும் வரிசையை சரிசெய்யவும் +• பிளேலிச்ட் புத்தகக்குறி உருப்படி தளவமைப்பைச் சரிசெய்யவும் diff --git a/fastlane/metadata/android/ta/changelogs/1005.txt b/fastlane/metadata/android/ta/changelogs/1005.txt new file mode 100644 index 000000000..2d3b17a19 --- /dev/null +++ b/fastlane/metadata/android/ta/changelogs/1005.txt @@ -0,0 +1,17 @@ +புதியது +• ஆண்ட்ராய்டு Autoக்கான ஆதரவைச் சேர்க்கவும் +• ஊட்ட குழுக்களை முதன்மையான திரை தாவல்களாக அமைக்க அனுமதிக்கவும் +• [YouTube] தற்காலிக பிளேலிச்ட்டாகப் பகிரவும் +• [SoundCloud] சேனல் தாவலை விரும்புகிறது + +மேம்படுத்தப்பட்டது +• சிறந்த தேடல் பட்டி குறிப்புகள் +• பதிவிறக்கங்களில் பதிவிறக்க தேதியைக் காட்டு +• ஒவ்வொரு ஆப்ச் மொழிக்கும் ஆண்ட்ராய்டு 13ஐப் பயன்படுத்தவும் + +சரி செய்யப்பட்டது +• உடைந்த உரை வண்ணங்களை இருண்ட பயன்முறையில் சரிசெய்யவும் +• [YouTube] 100 உருப்படிகளுக்கு மேல் ஏற்றப்படாமல் இருக்கும் பிளேலிச்ட்களை சரிசெய்யவும் +• [YouTube] விடுபட்ட பரிந்துரைக்கப்பட்ட வீடியோக்களை சரிசெய்யவும் +• வரலாறு பட்டியல் காட்சியில் சிதைவுகளைச் சரிசெய்யவும் +• கருத்து பதில்களில் நேர முத்திரைகளை சரிசெய்யவும் diff --git a/fastlane/metadata/android/ta/changelogs/1006.txt b/fastlane/metadata/android/ta/changelogs/1006.txt new file mode 100644 index 000000000..98d1b4756 --- /dev/null +++ b/fastlane/metadata/android/ta/changelogs/1006.txt @@ -0,0 +1,16 @@ +# மேம்படுத்தப்பட்டது +நேர முத்திரைகளைக் சொடுக்கு செய்யும் போது தற்போதைய பிளேயரை வைத்திருங்கள் +முடிந்தால், நிலுவையிலுள்ள பதிவிறக்கப் பணிகளை மீட்டெடுக்க முயற்சிக்கவும் +கோப்பை நீக்காமல் பதிவிறக்கத்தை நீக்க விருப்பத்தைச் சேர்க்கவும் +மேலடுக்கு அனுமதி: Android > R க்கான விளக்க உரையாடலைக் காண்பி +உதவி on.soundcloud இணைப்பு திறப்பு +நிறைய சிறிய மேம்பாடுகள் மற்றும் மேம்படுத்தல்கள் + +# சரி செய்யப்பட்டது +7க்குக் கீழே உள்ள ஆண்ட்ராய்டு பதிப்புகளுக்கான குறுகிய எண்ணிக்கை வடிவமைப்பைச் சரிசெய்யவும் +பேய் அறிவிப்புகளை சரிசெய்யவும் +SRT வசனக் கோப்புகளுக்கான திருத்தங்கள் +நிலையான டன் விபத்துக்கள் + +#வளர்ச்சி +உள் குறியீடு நவீனமயமாக்கல் diff --git a/fastlane/metadata/android/ta/changelogs/1008.txt b/fastlane/metadata/android/ta/changelogs/1008.txt new file mode 100644 index 000000000..e25981458 --- /dev/null +++ b/fastlane/metadata/android/ta/changelogs/1008.txt @@ -0,0 +1,4 @@ +∙ கடைசி பிளேபேக் நிலையில் நிலையான ரெச்யூமிங் ச்ட்ரீம்கள் +∙ [YouTube] மேலும் சேனல் முகவரி வடிவங்களுக்கான உதவி சேர்க்கப்பட்டது +∙ [YouTube] மேலும் வீடியோ metainfo வடிவங்களுக்கான உதவி சேர்க்கப்பட்டது +∙ புதுப்பிக்கப்பட்ட மொழிபெயர்ப்புகள் diff --git a/fastlane/metadata/android/ta/changelogs/1009.txt b/fastlane/metadata/android/ta/changelogs/1009.txt new file mode 100644 index 000000000..da35a071b --- /dev/null +++ b/fastlane/metadata/android/ta/changelogs/1009.txt @@ -0,0 +1,14 @@ +முக்கியமானது +Keep ஆண்ட்ராய்டு திற பிரச்சாரத்திற்கான செய்தி மற்றும் நடவடிக்கைக்கான அழைப்பு சேர்க்கப்பட்டது: https://www.keepandroidopen.org/ + +மேம்படுத்தப்பட்டது +[Feed] ஆர்டர் காலாவதியான சந்தாக்கள் புதுப்பிக்கப்பட்டதை மாற்றவும் +கருத்துப் பக்கங்களை அடுக்க வேண்டாம் +வீடியோ விவரம் பக்கத்தில் சொடுக்கு செய்யும் போது, சொடுக்கு நிகழ்வுகளை அடிப்படை பார்வைகளுக்கு அனுப்ப வேண்டாம் + +சரி செய்யப்பட்டது +அவதார் படம் இல்லாமல் தலைப்பு தளவமைப்பை கருத்து பதிலளிக்கிறது +பல பிளேயர் தொடர்பான இடைமுகம் திருத்தங்கள் +[SoundCloud] நீண்ட ஐடிகளுடன் ச்ட்ரீம்களை சரிசெய்யவும் + +மேலும் திருத்தங்கள் மற்றும் மேம்பாடுகள்! diff --git a/fastlane/metadata/android/ta/changelogs/65.txt b/fastlane/metadata/android/ta/changelogs/65.txt index 05fd375e6..ebea2e29d 100644 --- a/fastlane/metadata/android/ta/changelogs/65.txt +++ b/fastlane/metadata/android/ta/changelogs/65.txt @@ -1,26 +1,26 @@ -### மேம்பாடுகள் +### மேம்பாடுகள் -- பர்கர்மெனு ஐகான் அனிமேஷன் முடக்கு #1486 -- பதிவிறக்கங்கள் நீக்க #1472 செயல்தவிர்க்கவும் -- பங்கு மெனுவில் விருப்பத்தைப் பதிவிறக்கவும் #1498 -- நீண்ட குழாய் மெனு # 1454 பங்கு விருப்பத்தை சேர்க்கப்பட்டது -- வெளியேறும் #1354 இல் முக்கிய வீரரைக் குறைக்கவும் -- நூலக பதிப்பு மேம்படுத்தல் மற்றும் தரவுத்தள காப்பு திருத்தம் #1510 -- ExoPlayer 2.8.2 மேம்படுத்தல் #1392 - - வேகமான வேக மாற்றத்திற்கான வெவ்வேறு படி அளவுகளை ஆதரிக்க பின்னணி வேகக் கட்டுப்பாட்டு உரையாடலை மறுவேலை செய்தது. - - பின்னணி வேக கட்டுப்பாடு மௌனங்கள் போது வேகமாக முன்னோக்கி ஒரு நிலைமாற்றி சேர்க்கப்பட்டது. இது ஆடியோபுக்குகள் மற்றும் சில இசை வகைகளுக்கு உதவியாக இருக்க வேண்டும், மேலும் உண்மையான தடையற்ற அனுபவத்தைக் கொண்டுவர முடியும் (மேலும் நிறைய மௌனங்களுடன் ஒரு பாடலை உடைக்க முடியும் =). - - மெட்டாடேட்டாவை கைமுறையாக செய்வதை விட, பிளேயரில் உள்நாட்டில் மீடியாவுடன் மெட்டாடேட்டாவை அனுப்ப அனுமதிக்க மறுசீரமைக்கப்பட்ட ஊடக மூல தீர்மானம். இப்போது எங்களிடம் மெட்டாடேட்டாவின் ஒற்றை ஆதாரம் உள்ளது மற்றும் பிளேபேக் தொடங்கும் போது நேரடியாக கிடைக்கும். - - நிலையான தொலை பிளேலிஸ்ட் மெட்டாடேட்டா பிளேலிஸ்ட் துண்டு திறக்கப்படும் போது புதிய மெட்டாடேட்டா கிடைக்கும் போது புதுப்பிக்கப்படவில்லை. - - பல்வேறு UI திருத்தங்கள்: #1383, பின்னணி பிளேயர் அறிவிப்பு கட்டுப்பாடுகள் இப்போது எப்போதும் வெள்ளை, எளிதாக ஃப்ளிங்கிங் மூலம் பாப்அப் பிளேயர் மூட எளிதாக -- மல்டிசர்வீஸிற்கான மறுசீரமைக்கப்பட்ட கட்டமைப்புடன் புதிய பிரித்தெடுத்தலைப் பயன்படுத்தவும் +- பர்கர்மெனு படவுரு அனிமேசனை முடக்கு #1486 +- பதிவிறக்கங்களின் நீக்குதலை செயல்தவிர்க்கவும் #1472 +- சேர் பட்டியல் #1498 இல் பதிவிறக்க விருப்பம் +- நீண்ட தட்டு பட்டியல் #1454 இல் பகிர்வு விருப்பம் சேர்க்கப்பட்டது +- வெளியேறும் #1354 இல் முதன்மையான வீரரைக் குறைக்கவும் +- நூலக பதிப்பு புதுப்பித்தல் மற்றும் தரவுத்தள காப்புப்பிரதி திருத்தம் #1510 +- ExoPlayer 2.8.2 மேம்படுத்தல் #1392 +- வேகமான வேக மாற்றத்திற்காக வெவ்வேறு படி அளவுகளை ஆதரிக்க, பிளேபேக் வேகக் கட்டுப்பாட்டு உரையாடலை மீண்டும் உருவாக்கியது. +- பிளேபேக் வேகக் கட்டுப்பாட்டில் நிசப்தத்தின் போது வேகமாக முன்னோக்கிச் செல்வதற்கான நிலைமாற்றம் சேர்க்கப்பட்டது. இது ஆடியோபுக்குகள் மற்றும் சில இசை வகைகளுக்கு உதவியாக இருக்க வேண்டும், மேலும் ஒரு உண்மையான தடையற்ற அனுபவத்தைக் கொண்டு வர முடியும் (மேலும் நிறைய அமைதியுடன் ஒரு பாடலை உடைக்க முடியும் =\\). +- மீடியா மூலத் தெளிவுத்திறன் மறுவடிவமைக்கப்பட்ட மீடியாவை கைமுறையாகச் செய்வதை விட, பிளேயரில் உள்ள மீடியாவுடன் சேர்த்து அனுப்ப அனுமதிக்கிறது. இப்போது எங்களிடம் மெட்டாடேட்டாவின் ஒற்றை சான்று உள்ளது மற்றும் பிளேபேக் தொடங்கும் போது நேரடியாகக் கிடைக்கும். +- பிளேலிச்ட் துண்டு திறக்கப்படும்போது புதிய மேனிலை தரவு கிடைக்கும்போது நிலையான ரிமோட் பிளேலிச்ட் மேனிலை தரவு புதுப்பிக்கப்படாது. +- பல்வேறு இடைமுகம் திருத்தங்கள்: #1383, பின்னணி பிளேயர் அறிவிப்புக் கட்டுப்பாடுகள் இப்போது எப்போதும் வெண்மையாக இருக்கும், மேல்தோன்றல் பிளேயரை ஃபிலிங் செய்வதன் மூலம் மூடுவது எளிது +- பல சேவைகளுக்கு மறுசீரமைக்கப்பட்ட கட்டமைப்புடன் புதிய பிரித்தெடுக்கும் கருவியைப் பயன்படுத்தவும் -### திருத்தங்கள் +### திருத்தங்கள் -- #1440 உடைந்த வீடியோ தகவல் தளவமைப்பு #1491 சரி -- வரலாறு திருத்தம் #1497 பார்க்க - - #1495, பயனர் பிளேலிஸ்ட்டை அணுகியவுடன் மெட்டாடேட்டாவை (சிறுபடம், தலைப்பு மற்றும் வீடியோ எண்ணிக்கை) புதுப்பிப்பதன் மூலம். - - #1475, பயனர் விவரம் துண்டு வெளிப்புற பிளேயர் ஒரு வீடியோ தொடங்கும் போது தரவுத்தளத்தில் ஒரு பார்வை பதிவு மூலம். -- பாப்அப் பயன்முறையில் க்ரீன் டைம்அவுட்டை சரிசெய்யவும். #1463 (நிலையான #640) -- முக்கிய வீடியோ பிளேயர் திருத்தம் #1509 - - [#1412] பிளேயர் செயல்பாடு பின்னணியில் இருக்கும்போது புதிய நோக்கம் பெறும்போது பிளேயர் NPE ஐ ஏற்படுத்தும் நிலையான மீண்டும் பயன்முறை. - - பாப்அப் செய்ய நிலையான வீரர் குறைக்க பாப்அப் அனுமதி வழங்கப்படாதபோது வீரர் அழிக்க முடியாது. +- சரி #1440 உடைந்த வீடியோ செய்தி தளவமைப்பு #1491 +- சரித்திர சரித்திரத்தைக் காண்க #1497 +- #1495, பயனர் பிளேலிச்ட்டை அணுகியவுடன் மெட்டாடேட்டாவை (சிறுபடம், தலைப்பு மற்றும் வீடியோ எண்ணிக்கை) புதுப்பித்தல். +- #1475, விவரத் துண்டில் வெளிப்புற பிளேயரில் பயனர் வீடியோவைத் தொடங்கும் போது தரவுத்தளத்தில் பார்வையைப் பதிவு செய்வதன் மூலம். +- மேல்தோன்றல் பயன்முறையில் திரையின் காலக்கெடுவை சரிசெய்யவும். #1463 (நிலையான #640) +- முதன்மை வீடியோ பிளேயர் திருத்தம் #1509 +- [#1412] பிளேயர் செயல்பாடு பின்னணியில் இருக்கும்போது புதிய எண்ணம் பெறப்படும்போது பிளேயர் NPEயை ஏற்படுத்தும் நிலையான ரிப்பீட் பயன்முறை. +- மேல்தோன்றல் இசைவு வழங்கப்படாதபோது பிளேயரை பாப்அப்பிற்குக் குறைப்பது நிலையானது பிளேயரை அழிக்காது. diff --git a/fastlane/metadata/android/ta/changelogs/66.txt b/fastlane/metadata/android/ta/changelogs/66.txt index ba6cfae1c..b3076700d 100644 --- a/fastlane/metadata/android/ta/changelogs/66.txt +++ b/fastlane/metadata/android/ta/changelogs/66.txt @@ -1,21 +1,33 @@ -# v0.13.7 இன் சேஞ்ச் +v0.13.7 இன் # சேஞ்ச்லாக் -### சரி செய்யப்பட்டது -- v0.13.6 வரிசை வடிகட்டி சிக்கல்களை சரிசெய்யவும் +### சரி செய்யப்பட்டது +- v0.13.6 இன் வரிசை வடிகட்டி சிக்கல்களை சரிசெய்யவும் -# v0.13.6 இன் சேஞ்ச் +# சேஞ்ச்லாக் இன் v0.13.6 -### மேம்பாடுகள் +### மேம்பாடுகள் -- பர்கர்மெனு ஐகான் அனிமேஷன் முடக்கு #1486 -- பதிவிறக்கங்கள் நீக்க #1472 செயல்தவிர்க்கவும் -- பங்கு மெனுவில் விருப்பத்தைப் பதிவிறக்கவும் #1498 -- நீண்ட குழாய் மெனு # 1454 பங்கு விருப்பத்தை சேர்க்கப்பட்டது -- வெளியேறும் #1354 இல் முக்கிய வீரரைக் குறைக்கவும் -- நூலக பதிப்பு மேம்படுத்தல் மற்றும் தரவுத்தள காப்பு திருத்தம் #1510 +- பர்கர்மெனு படவுரு அனிமேசனை முடக்கு #1486 +- பதிவிறக்கங்களின் நீக்குதலை செயல்தவிர்க்கவும் #1472 +- சேர் பட்டியல் #1498 இல் பதிவிறக்க விருப்பம் +- நீண்ட தட்டு பட்டியல் #1454 இல் பகிர்வு விருப்பம் சேர்க்கப்பட்டது +- வெளியேறும் #1354 இல் முதன்மையான வீரரைக் குறைக்கவும் +- நூலக பதிப்பு புதுப்பித்தல் மற்றும் தரவுத்தள காப்புப்பிரதி திருத்தம் #1510 +- ExoPlayer 2.8.2 மேம்படுத்தல் #1392 +- வேகமான வேக மாற்றத்திற்காக வெவ்வேறு படி அளவுகளை ஆதரிக்க, பிளேபேக் வேகக் கட்டுப்பாட்டு உரையாடலை மீண்டும் உருவாக்கியது. +- பிளேபேக் வேகக் கட்டுப்பாட்டில் நிசப்தத்தின் போது வேகமாக முன்னோக்கிச் செல்வதற்கான நிலைமாற்றம் சேர்க்கப்பட்டது. இது ஆடியோபுக்குகள் மற்றும் சில இசை வகைகளுக்கு உதவியாக இருக்க வேண்டும், மேலும் ஒரு உண்மையான தடையற்ற அனுபவத்தைக் கொண்டு வர முடியும் (மேலும் நிறைய அமைதியுடன் ஒரு பாடலை உடைக்க முடியும் =\\). +- மீடியா மூலத் தெளிவுத்திறன் மறுவடிவமைக்கப்பட்ட மீடியாவை கைமுறையாகச் செய்வதை விட, பிளேயரில் உள்ள மீடியாவுடன் சேர்த்து அனுப்ப அனுமதிக்கிறது. இப்போது எங்களிடம் மெட்டாடேட்டாவின் ஒற்றை சான்று உள்ளது மற்றும் பிளேபேக் தொடங்கும் போது நேரடியாகக் கிடைக்கும். +- பிளேலிச்ட் துண்டு திறக்கப்படும்போது புதிய மேனிலை தரவு கிடைக்கும்போது நிலையான ரிமோட் பிளேலிச்ட் மேனிலை தரவு புதுப்பிக்கப்படாது. +- பல்வேறு இடைமுகம் திருத்தங்கள்: #1383, பின்னணி பிளேயர் அறிவிப்புக் கட்டுப்பாடுகள் இப்போது எப்போதும் வெண்மையாக இருக்கும், மேல்தோன்றல் பிளேயரை ஃபிலிங் செய்வதன் மூலம் மூடுவது எளிது +- பல சேவைகளுக்கு மறுசீரமைக்கப்பட்ட கட்டமைப்புடன் புதிய பிரித்தெடுக்கும் கருவியைப் பயன்படுத்தவும் -- ExoPlayer 2.8.2 மேம்படுத்தல் #1392 - - வேகமான வேக மாற்றத்திற்கான வெவ்வேறு படி அளவுகளை ஆதரிக்க பின்னணி வேகக் கட்டுப்பாட்டு உரையாடலை மறுவேலை செய்தது. - - பின்னணி வேக கட்டுப்பாடு மௌனங்கள் போது வேகமாக முன்னோக்கி ஒரு நிலைமாற்றி சேர்க்கப்பட்டது. இது ஆடியோபுக்குகள் மற்றும் சில இசை வகைகளுக்கு உதவியாக இருக்க வேண்டும், மேலும் உண்மையான தடையற்ற அனுபவத்தைக் கொண்டுவர முடியும் (மேலும் நிறைய மௌனங்களுடன் ஒரு பாடலை உடைக்க முடியும் =). - - மெட்டாடேட்டாவை கைமுறையாக செய்வதை விட, பிளேயரில் உள்நாட்டில் மீடியாவுடன் மெட்டாடேட்டாவை அனுப்ப அனுமதிக்க மறுசீரமைக்கப்பட்ட ஊடக மூல தீர்மானம். இப்போது எங்களிடம் மெட்டாடேட்டாவின் ஒற்றை ஆதாரம் உள்ளது மற்றும் பிளேபேக் தொடங்கும் போது நேரடியாக கிடைக்கும். - - நிலையான தொலை பிளேலிஸ்ட் மெட்டாடேட்டா இல்லை +### திருத்தங்கள் + +- சரி #1440 உடைந்த வீடியோ செய்தி தளவமைப்பு #1491 +- சரித்திர சரித்திரத்தைக் காண்க #1497 +- #1495, பயனர் பிளேலிச்ட்டை அணுகியவுடன் மெட்டாடேட்டாவை (சிறுபடம், தலைப்பு மற்றும் வீடியோ எண்ணிக்கை) புதுப்பித்தல். +- #1475, விவரத் துண்டில் வெளிப்புற பிளேயரில் பயனர் வீடியோவைத் தொடங்கும் போது தரவுத்தளத்தில் பார்வையைப் பதிவு செய்வதன் மூலம். +- மேல்தோன்றல் பயன்முறையில் திரையின் காலக்கெடுவை சரிசெய்யவும். #1463 (நிலையான #640) +- முதன்மை வீடியோ பிளேயர் திருத்தம் #1509 +- [#1412] பிளேயர் செயல்பாடு பின்னணியில் இருக்கும்போது புதிய எண்ணம் பெறப்படும்போது பிளேயர் NPEயை ஏற்படுத்தும் நிலையான ரிப்பீட் பயன்முறை. +- மேல்தோன்றல் இசைவு வழங்கப்படாதபோது பிளேயரை பாப்அப்பிற்குக் குறைப்பது நிலையானது பிளேயரை அழிக்காது. diff --git a/fastlane/metadata/android/ta/changelogs/68.txt b/fastlane/metadata/android/ta/changelogs/68.txt index 9bada1861..1d0b6ca1a 100644 --- a/fastlane/metadata/android/ta/changelogs/68.txt +++ b/fastlane/metadata/android/ta/changelogs/68.txt @@ -1,31 +1,31 @@ -# v0.14.1 மாற்றங்கள் +v0.14.1 இன் # மாற்றங்கள் -### சரி செய்யப்பட்டது -- வீடியோ url #1659 மறைகுறியாக்க சரி தோல்வி -- நிலையான விளக்கம் இணைப்பு நன்றாக பிரித்தெடுக்க இல்லை #1657 +### சரி செய்யப்பட்டது +- வீடியோ முகவரி #1659 ஐ மறைகுறியாக்குவதில் தோல்வி சரி செய்யப்பட்டது +- நிலையான விளக்கம் இணைப்பு நன்றாக பிரித்தெடுக்கப்படவில்லை #1657 -# v0.14.0 மாற்றங்கள் +v0.14.0 இன் # மாற்றங்கள் -### புதியது -- புதிய அலமாரியின் வடிவமைப்பு #1461 -- புதிய வாடிக்கையாளர்களின் முன் பக்கம் #1461 +### புதியது +- புதிய டிராயர் வடிவமைப்பு #1461 +- புதிய தனிப்பயனாக்கக்கூடிய முதல் பக்கம் #1461 -### மேம்பாடுகள் +### மேம்பாடுகள் - மறுவேலை செய்யப்பட்ட சைகை கட்டுப்பாடுகள் #1604 -- பாப்அப் பிளேயர் #1597 மூட புதிய வழி +- மேல்தோன்றல் பிளேயரை மூடுவதற்கான புதிய வழி #1597 - -### சரி செய்யப்பட்டது -- சந்தா எண்ணிக்கை கிடைக்காதபோது பிழையை சரிசெய்யவும். #1649 ஐ மூடுகிறது. - - அந்த சந்தர்ப்பங்களில் "சந்தாதாரர் எண்ணிக்கை கிடைக்கவில்லை" என்பதைக் காட்டு -- YouTube பிளேலிஸ்ட் காலியாக இருக்கும்போது NPE ஐ சரிசெய்யவும் -- SoundCloud இல் கியோஸ்க்குகளுக்கான விரைவான திருத்தம் -- Refactor மற்றும் பிழைத்திருத்தம் #1623 - - சுழற்சி தேடல் விளைவாக #1562 சரி - - சரி சீக் பட்டி நிலையாக இடப்படவில்லை - - YT பிரீமியம் வீடியோ சரியாக தடுக்கப்படவில்லை என்பதை சரிசெய்யவும் - - சில நேரங்களில் ஏற்றப்படாத வீடியோக்களை சரிசெய்யவும் (DASH பாகுபடுத்தல் காரணமாக) - - வீடியோ விளக்கத்தில் இணைப்புகளை சரிசெய்யவும் - - யாராவது வெளிப்புற SDCARD க்கு பதிவிறக்க முயற்சிக்கும்போது எச்சரிக்கையைக் காட்டு - - எதுவும் காட்டப்படவில்லை விதிவிலக்கு தூண்டுதல்கள் அறிக்கை சரி - - சிறு அண்ட்ராய்டு பின்னணி பிளேயர் காட்டப்படவில்லை 8.1 [இங்கே பார்க்கவும்](https://github.com/TeamNewPip +### சரி செய்யப்பட்டது +- சந்தா எண்ணிக்கை கிடைக்காதபோது பிழையை சரிசெய்யவும். மூடுகிறது #1649. +- அந்த சந்தர்ப்பங்களில் "சந்தாதாரர் எண்ணிக்கை கிடைக்கவில்லை" என்பதைக் காட்டு +- YouTube பிளேலிச்ட் காலியாக இருக்கும்போது NPEஐ சரிசெய்யவும் +- SoundCloud இல் உள்ள கியோச்க்குகளை விரைவாக சரிசெய்தல் +- ரீஃபாக்டர் மற்றும் பிழைத்திருத்தம் #1623 +- சுழற்சி தேடல் முடிவை சரிசெய்யவும் #1562 +- ஃபிக்ச் சீக் பட்டி நிலையானதாக இல்லை +- ஃபிக்ச் YT காப்பீடு வீடியோ சரியாகத் தடுக்கப்படவில்லை +- சில நேரங்களில் ஏற்றப்படாமல் இருக்கும் வீடியோக்களை சரிசெய்யவும் (DASH பாகுபடுத்தல் காரணமாக) +- வீடியோ விளக்கத்தில் இணைப்புகளை சரிசெய்யவும் +- வெளிப்புற sdcard க்கு யாராவது பதிவிறக்க முயற்சிக்கும்போது எச்சரிக்கையைக் காட்டு +- எதுவும் காட்டப்படாத விதிவிலக்கு தூண்டுதல் அறிக்கையை சரிசெய்யவும் +- ஆண்ட்ராய்டு 8.1க்கான பின்னணி பிளேயரில் சிறுபடம் காட்டப்படவில்லை [இங்கே பார்க்கவும்](https://github.com/TeamNewPipe/NewPipe/issues/943) +- ஒளிபரப்பு பெறுநரின் பதிவை சரிசெய்தல். மூடுகிறது #1641. diff --git a/fastlane/metadata/android/ta/changelogs/69.txt b/fastlane/metadata/android/ta/changelogs/69.txt index 0c2c47e48..e5e5ab606 100644 --- a/fastlane/metadata/android/ta/changelogs/69.txt +++ b/fastlane/metadata/android/ta/changelogs/69.txt @@ -1,19 +1,19 @@ -### புதியது - - சந்தாக்களில் #1516 இல் நீண்ட-தட்டுதல் நீக்கவும் பகிரவும் - - டேப்லெட் யுஐ மற்றும் கட்டம் பட்டியல் தளவமைப்பு #1617 +### புதியது +- நீண்ட நேரம் நீக்கு மற்றும் சந்தாக்கள் #1516 இல் பகிரவும் +- டேப்லெட் இடைமுகம் மற்றும் கட்டம் பட்டியல் தளவமைப்பு #1617 - ### மேம்பாடுகள் - - கடைசியாக பயன்படுத்தப்பட்ட விகித விகிதத்தை #1748 சேமித்து மீண்டும் ஏற்றவும் - - முழு வீடியோ பெயர்களுடன் பதிவிறக்கங்களின் செயல்பாட்டில் நேரியல் தளவமைப்பை இயக்கவும் #1771 - - சந்தாக்கள் தாவல் #1516 க்குள் இருந்து நேரடியாக சந்தாக்களை நீக்கி பகிரவும் - - நாடக வரிசை ஏற்கனவே #1783 முடிந்துவிட்டால், இப்போது வீடியோ விளையாடுவதைத் தூண்டுகிறது - - தொகுதி மற்றும் ஒளி சைகைகளுக்கான தனி அமைப்புகள் #1644 - - உள்ளூர்மயமாக்கலுக்கான ஆதரவைச் சேர்க்கவும் #1792 +### மேம்பாடுகள் +- கடைசியாகப் பயன்படுத்திய #1748 விகிதத்தை சேமித்து மீண்டும் ஏற்றவும் +- முழு வீடியோ பெயர்கள் #1771 உடன் பதிவிறக்கங்கள் செயல்பாட்டில் நேரியல் தளவமைப்பை இயக்கவும் +- சந்தாக்கள் தாவல் #1516 இலிருந்து நேரடியாக சந்தாக்களை நீக்கி பகிரவும் +- ப்ளே வரிசை ஏற்கனவே #1783 முடிவடைந்திருந்தால், இப்போது வரிசைப்படுத்துவது வீடியோவை இயக்கத் தூண்டுகிறது +- தொகுதி மற்றும் பிரகாச சைகைகளுக்கான தனி அமைப்புகள் #1644 +- உள்ளூர்மயமாக்கல் #1792க்கான ஆதரவைச் சேர்க்கவும் - ### திருத்தங்கள் - - நேர பாகுபடுத்தும் நேரத்தை சரிசெய்யவும். வடிவம், எனவே புதிய பக்கத்தை பின்லாந்தில் பயன்படுத்தலாம் - - சந்தா எண்ணிக்கையை சரிசெய்யவும் - - பநிஇ 28+ சாதனங்களுக்கான முன் பணி அனுமதியை #1830 சேர்க்கவும் +### திருத்தங்கள் +- க்கு நேரம் பாகுபடுத்துதல். வடிவம், எனவே நியூபைப்பை ஃபின்லாந்தில் பயன்படுத்தலாம் +- சந்தா எண்ணிக்கையை சரிசெய்யவும் +- பநிஇ 28+ சாதனங்களுக்கு முன்புற பணி அனுமதியைச் சேர்க்கவும் #1830 - ### அறியப்பட்ட பிழைகள் - - அண்ட்ராய்டு பி இல் பிளேபேக் நிலையை சேமிக்க முடியாது +### தெரிந்த பிழைகள் +- பிளேபேக் நிலையை Android P இல் சேமிக்க முடியாது diff --git a/fastlane/metadata/android/ta/changelogs/70.txt b/fastlane/metadata/android/ta/changelogs/70.txt index a314d7ac9..747ee2f16 100644 --- a/fastlane/metadata/android/ta/changelogs/70.txt +++ b/fastlane/metadata/android/ta/changelogs/70.txt @@ -1,25 +1,25 @@ -கவனம்: இந்த பதிப்பு கடைசியாக இருப்பதைப் போலவே ஒரு பிழைத்திருத்தமாகும். இருப்பினும் 17 முதல் முழு பணிநிறுத்தம் காரணமாக. உடைந்த பதிப்பு சிறந்தது, பின்னர் பதிப்பு இல்லை. சரி? ¯ \ _ (ツ) _/ +கவனம்: கடந்த பதிப்பைப் போலவே இந்தப் பதிப்பும் ஒரு பக்ஃபெச்டாக இருக்கலாம். எனினும் 17 முதல் முழு பணிநிறுத்தம் காரணமாக. உடைந்த பதிப்பு சிறந்த பதிப்பு இல்லை. சரியா? ¯\_(ツ)_/¯ - ### மேம்பாடுகள் - * பதிவிறக்கம் செய்யப்பட்ட கோப்புகளை இப்போது ஒரு சொடுக்கு #1879 உடன் திறக்கலாம் - * ஆண்ட்ராய்டு 4.1 - 4.3 #1884 க்கான ஆதரவை கைவிடவும் - * பழைய பிளேயரை அகற்று #1884 - * தற்போதைய நாடக வரிசையில் இருந்து ச்ட்ரீம்களை வலதுபுறமாக ச்வைப் செய்வதன் மூலம் அகற்றவும் #1915 - * ஒரு புதிய ச்ட்ரீம் கைமுறையாக #1878 - * பதிவிறக்கங்களுக்கான போச்ட்ரோசெசிங் மற்றும் காணாமல் போன அம்சங்களை செயல்படுத்துதல் #1759 bykapodamy - * பிந்தைய செயலாக்க உள்கட்டமைப்பு - * சரியான பிழை "உள்கட்டமைப்பு" (பதிவிறக்கத்திற்கு) - * பல பதிவிறக்கங்களுக்கு பதிலாக வரிசை - * பயன்பாட்டு தரவுக்கு சீரியலைச் நிலுவையில் உள்ள பதிவிறக்கங்களை (`.கிகா` கோப்புகள்) நகர்த்தவும் - * அதிகபட்ச பதிவிறக்க மீண்டும் முயற்சிக்கவும் - * சரியான மல்டி-த்ரெட் பதிவிறக்கம் இடைநிறுத்தம் - * மொபைல் நெட்வொர்க்கிற்கு மாறும்போது பதிவிறக்கங்களை நிறுத்துங்கள் (ஒருபோதும் செயல்படாது, 2 வது புள்ளியைப் பார்க்கவும்) - * அடுத்த பதிவிறக்கங்களுக்கான நூல் எண்ணிக்கையைச் சேமிக்கவும் - * நிறைய முரண்பாடுகள் சரி செய்யப்பட்டன +### மேம்பாடுகள் +பதிவிறக்கம் செய்யப்பட்ட கோப்புகளை இப்போது ஒரே கிளிக்கில் திறக்கலாம் #1879 +* ஆண்ட்ராய்டு 4.1 - 4.3 #1884க்கான ஆதரவை கைவிடவும் +* பழைய பிளேயரை அகற்றவும் #1884 +* ச்ட்ரீம்களை வலது #1915 க்கு ச்வைப் செய்வதன் மூலம் தற்போதைய பிளே வரிசையிலிருந்து அகற்றவும் +* ஒரு புதிய ச்ட்ரீம் கைமுறையாக #1878 வரிசைப்படுத்தப்படும் போது தானாக வரிசைப்படுத்தப்பட்ட ச்ட்ரீமை அகற்றவும் +* பதிவிறக்கங்களுக்கான பின்செயலாக்குதல் மற்றும் @kapodamy ஆல் விடுபட்ட நற்பொருத்தங்கள் #1759 செயல்படுத்துதல் +* செயலாக்கத்திற்குப் பின் உள்கட்டமைப்பு +* சரியான பிழை கையாளுதல் "உள்கட்டமைப்பு" (பதிவிறக்குபவருக்கு) +* பல பதிவிறக்கங்களுக்குப் பதிலாக வரிசை +* வரிசைப்படுத்தப்பட்ட நிலுவையிலுள்ள பதிவிறக்கங்களை (`.giga` கோப்புகள்) பயன்பாட்டுத் தரவுக்கு நகர்த்தவும் +* அதிகபட்ச பதிவிறக்க மறு முயற்சியை செயல்படுத்தவும் +* முறையான பல நூல் பதிவிறக்கம் இடைநிறுத்தம் +* மொபைல் நெட்வொர்க்கிற்கு மாறும்போது பதிவிறக்கங்களை நிறுத்துங்கள் (ஒருபோதும் வேலை செய்யாது, 2வது புள்ளியைப் பார்க்கவும்) +* அடுத்த பதிவிறக்கங்களுக்கு நூல் எண்ணிக்கையைச் சேமிக்கவும் +* பல முரண்பாடுகள் சரி செய்யப்பட்டன - ### சரி செய்யப்பட்டது - * இயல்புநிலை தெளிவுத்திறனுடன் செயலிழப்பை சரிசெய்யவும் சிறந்த மற்றும் வரையறுக்கப்பட்ட மொபைல் தரவு தீர்மானம் #1835 - * பாப்-அப் பிளேயர் செயலிழப்பு சரி #1874 - * பின்னணி பிளேயரைத் திறக்க முயற்சிக்கும்போது NPE #1901 - * ஆட்டோ வரிசை இயக்கப்பட்டிருக்கும் போது புதிய ச்ட்ரீம்களைச் செருகுவதை சரிசெய்யவும் #1878 - * டெசிபரிங் சட்டவுன் சிக்கல் சரி செய்யப்பட்டது +### சரி செய்யப்பட்டது +* சிறந்த மற்றும் வரையறுக்கப்பட்ட மொபைல் டேட்டா தெளிவுத்திறன் #1835க்கு அமைக்கப்பட்ட இயல்புநிலை தெளிவுத்திறனுடன் செயலிழப்பை சரிசெய்யவும் +* பாப்-அப் பிளேயர் செயலிழப்பு சரி செய்யப்பட்டது #1874 +* NPE பின்னணி பிளேயர் #1901 ஐ திறக்க முயற்சிக்கும்போது +* தானாக வரிசைப்படுத்துதல் #1878 இயக்கப்பட்டிருக்கும் போது புதிய ச்ட்ரீம்களைச் செருகுவதை சரிசெய்யவும் +* டிசைப்பரிங் சட்டவுன் சிக்கல் சரி செய்யப்பட்டது diff --git a/fastlane/metadata/android/ta/changelogs/71.txt b/fastlane/metadata/android/ta/changelogs/71.txt index 278cb41c0..4c677d3a0 100644 --- a/fastlane/metadata/android/ta/changelogs/71.txt +++ b/fastlane/metadata/android/ta/changelogs/71.txt @@ -1,10 +1,10 @@ -### மேம்பாடுகள் - * அறிவிலிமையம் பில்டிற்கான பயன்பாட்டு புதுப்பிப்பு அறிவிப்பை சேர்க்கவும் (#1608 bykrtkush) - * பதிவிறக்கத்தின் பல்வேறு மேம்பாடுகள் (#1944 bykapodamy): - * காணாமல் போன வெள்ளை ஐகான்களைச் சேர்த்து, படவுரு வண்ணங்களை மாற்ற ஆர்ட்கோர்டு வழியைப் பயன்படுத்தவும் - * ஐடரேட்டர் துவக்கப்பட்டதா என்பதை சரிபார்க்கவும் (திருத்தங்கள் #2031) - * புதிய மக்சரில் "பிந்தைய செயலாக்க தோல்வியுற்ற" பிழையுடன் மீண்டும் பதிவிறக்கங்களை மீண்டும் எடுக்க அனுமதிக்கவும் - * புதிய MPEG-4 மக்சர் ஒத்திசைவு அல்லாத வீடியோ மற்றும் ஆடியோ ச்ட்ரீம்களை சரிசெய்கிறது (#2039) +### மேம்பாடுகள் +* GitHub உருவாக்கத்திற்கான பயன்பாட்டு புதுப்பிப்பு அறிவிப்பைச் சேர்க்கவும் (#1608 by @krtkush) +* டவுன்லோடருக்கு பல்வேறு மேம்பாடுகள் (#1944 by @kapodamy): +* விடுபட்ட வெள்ளை ஐகான்களைச் சேர்த்து, படவுரு வண்ணங்களை மாற்ற ஆர்ட்கோர்டு வழியைப் பயன்படுத்தவும் +* இடிரேட்டர் துவக்கப்பட்டதா என சரிபார்க்கவும் (சரிசெய்தல் #2031) +* புதிய muxer இல் "பிந்தைய செயலாக்கம் தோல்வியடைந்தது" பிழையுடன் மீண்டும் பதிவிறக்கங்களை அனுமதிக்கவும் +* புதிய MPEG-4 muxer ஒத்திசைவற்ற வீடியோ மற்றும் ஆடியோ ச்ட்ரீம்களை சரிசெய்கிறது (#2039) - ### சரி செய்யப்பட்டது - * யூடியூப் லைவ் ச்ட்ரீம்கள் குறுகிய காலத்திற்குப் பிறகு விளையாடுவதை நிறுத்துகின்றன (#1996 @yausername) +### சரி செய்யப்பட்டது +* YouTube லைவ் ச்ட்ரீம்கள் சிறிது நேரத்திற்குப் பிறகு இயங்குவதை நிறுத்துகின்றன (#1996 by @yausername) diff --git a/fastlane/metadata/android/ta/changelogs/740.txt b/fastlane/metadata/android/ta/changelogs/740.txt index f3c18d5bc..ce8085728 100644 --- a/fastlane/metadata/android/ta/changelogs/740.txt +++ b/fastlane/metadata/android/ta/changelogs/740.txt @@ -1,23 +1,23 @@ -

மேம்பாடுகள்

-
    -
  • கருத்துக்களில் இணைப்புகளை சொடுக்கு செய்யக்கூடியது, உரை அளவை அதிகரிக்கவும்
  • -
  • கருத்துகளில் நேர முத்திரை இணைப்புகளைக் சொடுக்கு செய்வதைத் தேடுங்கள்
  • -
  • அண்மைக் காலத்தில் தேர்ந்தெடுக்கப்பட்ட நிலையின் அடிப்படையில் விருப்பமான தாவலைக் காட்டு
  • -
  • ' பின்னணி ' பிளேலிச்ட் சாளரத்தில்
  • -
  • பகிரப்பட்ட உரையை முகவரி இல்லாதபோது தேடுங்கள்
  • -
  • சேர் & quot; தற்போதைய நேரத்தில் பகிரவும் & quot; முதன்மையான வீடியோ பிளேயருக்கு பொத்தான்
  • -
  • வீடியோ வரிசை முடிந்ததும் முதன்மையான பிளேயருக்கு மூடு பொத்தானைச் சேர்க்கவும்
  • -
  • & quot; பின்னணியில் நேரடியாக விளையாடுங்கள் & quot; வீடியோ பட்டியல் உருப்படிகளுக்கான லாங் பிரச் மெனுவுக்கு
  • -
  • விளையாட்டு/enqueue கட்டளைகளுக்கான ஆங்கில மொழிபெயர்ப்புகளை மேம்படுத்தவும்
  • -
  • சிறிய செயல்திறன் மேம்பாடுகள்
  • -
  • பயன்படுத்தப்படாத கோப்புகளை அகற்று
  • -
  • எக்சோப்ளேயரை 2.9.6 க்கு புதுப்பிக்கவும்
  • -
  • வன்கவர்வு இணைப்புகளுக்கு ஆதரவைச் சேர்க்கவும்
  • -
-

சரி செய்யப்பட்டது

-
    -
  • நிலையான சுருள் w/ கருத்துகள் மற்றும் தொடர்புடைய ச்ட்ரீம்கள் முடக்கப்பட்டன -
  • நிலையான CheckFornewAppversionTask அது செய்யப்படும்போது செயல்படுத்தப்படும் ' t
  • -
  • நிலையான YouTube சந்தா இறக்குமதி: தவறான முகவரி உடன் புறக்கணித்து, வெற்று தலைப்பைக் கொண்டு வைக்கவும்
  • -
  • தவறான YouTube முகவரி ஐ சரிசெய்யவும்: கையொப்பம் குறிச்சொல் பெயர் எப்போதும் ச்ட்ரீம்களை ஏற்றுவதைத் தடுக்கும் "கையொப்பம்"
  • -
+

மேம்பாடுகள்

+
    +
  • கருத்துகளில் இணைப்புகளைக் சொடுக்கு செய்யக்கூடியதாக ஆக்குங்கள், உரை அளவை அதிகரிக்கவும்
  • +
  • கருத்துகளில் நேரமுத்திரை இணைப்புகளைக் சொடுக்கு செய்வதைத் தேடுங்கள்
  • +
  • சமீபத்தில் தேர்ந்தெடுக்கப்பட்ட மாநிலத்தின் அடிப்படையில் விருப்பமான தாவலைக் காட்டு
  • +'பின்னணி' பிளேலிச்ட் சாளரத்தில் +
  • பகிர்ந்த உரை முகவரி இல்லாவிடில் தேடவும்
  • +
  • சேர் "தற்போதைய நேரத்தில் பகிர்" முக்கிய வீடியோ பிளேயருக்கான பொத்தான்
  • +
  • வீடியோ வரிசை முடிந்ததும் மெயின் பிளேயருக்கு மூடு பட்டனைச் சேர்க்கவும்
  • +
  • சேர் "பின்னணியில் நேரடியாக விளையாடு" வீடியோ பட்டியல் உருப்படிகளுக்கான மெனுவை நீண்ட அழுத்தவும்
  • +
  • Play/Enqueue கட்டளைகளுக்கான ஆங்கில மொழிபெயர்ப்புகளை மேம்படுத்தவும்
  • +
  • சிறிய செயல்திறன் மேம்பாடுகள்
  • +
  • பயன்படுத்தாத கோப்புகளை அகற்று
  • +
  • ExoPlayerஐ 2.9.6க்கு புதுப்பிக்கவும்
  • +
  • Invidious இணைப்புகளுக்கான ஆதரவைச் சேர்க்கவும்
  • +
+

நிலையானது

+
    +
  • நிலையான ச்க்ரோல் w/ கருத்துகள் மற்றும் தொடர்புடைய ச்ட்ரீம்கள் முடக்கப்பட்டன
  • +
  • நிச்சயமான CheckForNewAppVersionTask செயல்படாத போது செயல்படுத்தப்படுகிறது
  • +
  • நிலையான யூடியூப் சந்தா இறக்குமதி: தவறான முகவரி உள்ளவற்றைப் புறக்கணித்து, வெற்று தலைப்பில் உள்ளவற்றை வைத்திருங்கள்
  • +
  • தவறான YouTube முகவரி ஐ சரிசெய்யவும்: கையொப்ப குறிச்சொல் பெயர் எப்போதும் ச்ட்ரீம்களை ஏற்றுவதைத் தடுக்கும் "கையொப்பம்" அல்ல
  • +
diff --git a/fastlane/metadata/android/ta/changelogs/750.txt b/fastlane/metadata/android/ta/changelogs/750.txt index 08631498c..f975f7b71 100644 --- a/fastlane/metadata/android/ta/changelogs/750.txt +++ b/fastlane/metadata/android/ta/changelogs/750.txt @@ -1,22 +1,22 @@ -புதியது - பிளேபேக் விண்ணப்பம் #2288 - Last கடைசியாக நீங்கள் நிறுத்திய இடத்தில் நீரோடைகளை மீண்டும் தொடங்குங்கள் - பதிவிறக்க மேம்பாடுகள் #2149 - St வெளிப்புற எச்டி-கார்டுகளில் பதிவிறக்கங்களை சேமிக்க சேமிப்பக அணுகல் கட்டமைப்பைப் பயன்படுத்தவும் - Mp புதிய எம்பி 4 மக்சர் - பதிவிறக்கம் பதிவிறக்கத்தைத் தொடங்குவதற்கு முன் பதிவிறக்க கோப்பகத்தை விருப்பமாக மாற்றவும் - Meade மீட்டெடுக்கப்பட்ட நெட்வொர்க்குகளை மரியாதை +புதியது +பிளேபேக் ரெச்யூம் #2288 +• கடைசியாக நீங்கள் நிறுத்திய ச்ட்ரீம்களை மீண்டும் தொடங்கவும் +டவுன்லோடர் மேம்பாடுகள் #2149 +• வெளிப்புற SD கார்டுகளில் பதிவிறக்கங்களைச் சேமிக்க சேமிப்பக அணுகல் கட்டமைப்பைப் பயன்படுத்தவும் +• புதிய mp4 muxer +• பதிவிறக்கத்தைத் தொடங்கும் முன் பதிவிறக்க கோப்பகத்தை விருப்பமாக மாற்றவும் +• மீட்டர் நெட்வொர்க்குகளை மதிக்கவும் - மேம்படுத்தப்பட்டது - • அகற்றப்பட்ட செமா சரங்கள் #2295 - Life செயல்பாட்டு வாழ்க்கை சுழற்சி #2444 இன் போது கையாளுதல் (ஆட்டோ) சுழற்சி மாற்றங்கள் - Long நீண்ட அழுத்த மெனுக்களை சீரானதாக மாற்றவும் #2368 +மேம்படுத்தப்பட்டது +• நீக்கப்பட்ட செமா சரங்கள் #2295 +• செயல்பாட்டு வாழ்க்கைச் சுழற்சியின் போது (தானியங்கு) சுழற்சி மாற்றங்களைக் கையாளவும் #2444 +• நீண்ட அழுத்த மெனுக்களை சீரான #2368 ஆக்குங்கள் - சரி - • நிலையான தேர்ந்தெடுக்கப்பட்ட வசன பாதை பெயர் காண்பிக்கப்படவில்லை #2394 - பயன்பாடு பயன்பாட்டு புதுப்பிப்பு தோல்வியுற்றால் செயலிழக்க வேண்டாம் (கிதுப் பதிப்பு) #2423 - • நிலையான பதிவிறக்கங்கள் 99.9% #2440 இல் சிக்கியுள்ளன - Play ப்ளே வரிசை மேனிலை தரவு #2453 ஐப் புதுப்பிக்கவும் - • [சவுண்ட்க்ளூட்] பிளேலிச்ட்கள் டீம்நியூபைப்/நியூபிபீக்ச்ட்ராக்டர்#170 ஐ ஏற்றும்போது நிலையான செயலிழப்பு - • [YouTube] நிலையான கால அளவு paresd teamnewpipe/newPipeextractor#177 ஆக இருக்க முடியாது +சரி செய்யப்பட்டது +• நிலையான தேர்ந்தெடுக்கப்பட்ட வசன டிராக் பெயர் #2394 காட்டப்படவில்லை +• ஆப்ச் புதுப்பிப்பு தோல்வியுற்றால் செயலிழக்க வேண்டாம் (GitHub பதிப்பு) #2423 +• நிலையான பதிவிறக்கங்கள் 99.9% #2440 இல் சிக்கியுள்ளன +• பிளே வரிசை மேனிலை தரவு #2453ஐப் புதுப்பிக்கவும் +• [SoundCloud] பிளேலிச்ட்களை ஏற்றும்போது நிலையான செயலிழப்பு TeamNewPipe/NewPipeExtractor#170 +• [YouTube] நிலையான கால அளவு TeamNewPipe/NewPipeExtractor#177 diff --git a/fastlane/metadata/android/ta/changelogs/760.txt b/fastlane/metadata/android/ta/changelogs/760.txt index b2252d179..2ef083c00 100644 --- a/fastlane/metadata/android/ta/changelogs/760.txt +++ b/fastlane/metadata/android/ta/changelogs/760.txt @@ -1,43 +1,43 @@ -0.17.1 இல் மாற்றங்கள் +0.17.1 இல் மாற்றங்கள் - புதியது - • தாய் உள்ளூர்மயமாக்கல் +புதியது +• தாய் உள்ளூர்மயமாக்கல் - மேம்படுத்தப்பட்டது - The பிளேலிச்ட்களுக்கான லாங்-பிரச் மெனுக்களில் மீண்டும் விளையாடத் தொடங்குங்கள் #2518 - SAF SAF / மரபு கோப்பு பிக்கர் #2521 க்கு சுவிட்சைச் சேர்க்கவும் +மேம்படுத்தப்பட்டது +• பிளேலிச்ட்களுக்கான நீண்ட அழுத்த மெனுக்களில் மீண்டும் விளையாடத் தொடங்கும் செயலைச் சேர்க்கவும் #2518 +• SAF / மரபு கோப்பு தேர்வி #2521க்கான சுவிட்சைச் சேர்க்கவும் - சரி - இடு பயன்பாடுகளை மாற்றும்போது பதிவிறக்கங்களில் காணாமல் போகும் பொத்தான்களை சரிசெய்யவும் #2487 - Watch வாட்ச் வரலாறு முடக்கப்பட்டிருந்தாலும் பிளேபேக் நிலை சேமிக்கப்படுகிறது - Tiews பட்டியல் காட்சிகள் #2517 இல் பிளேபேக் நிலையால் ஏற்படும் குறைக்கப்பட்ட செயல்திறனை சரிசெய்யவும் - • [பிரித்தெடுத்தல்] recaptchaactivity #2527, TeamNewPipe/NewPipeextractor #186 ஐ சரிசெய்யவும் - • [பிரித்தெடுத்தல்] [YouTube] பிளேலிச்ட்கள் முடிவுகளில் இருக்கும்போது சாதாரண தேடல் பிழையை சரிசெய்யவும் teamnewpipe/newPipeextractor#185 +சரி செய்யப்பட்டது +• பயன்பாடுகள் #2487 ஐ மாற்றும்போது பதிவிறக்கங்கள் பார்வையில் மறைந்து வரும் பொத்தான்களை சரிசெய்யவும் +• பார்வை வரலாறு முடக்கப்பட்டிருந்தாலும், ஃபிக்ச் பிளேபேக் நிலை சேமிக்கப்படும் +• பட்டியல் காட்சிகள் #2517 இல் பிளேபேக் நிலை காரணமாக குறைக்கப்பட்ட செயல்திறனை சரிசெய்யவும் +• [எக்ச்ட்ராக்டர்] ReCaptchaActivity #2527, TeamNewPipe/NewPipeExtractor#186 +• [எக்ச்ட்ராக்டர்] [YouTube] பிளேலிச்ட்கள் முடிவுகளில் இருக்கும்போது சாதாரண தேடல் பிழையை சரிசெய்யவும் TeamNewPipe/NewPipeExtractor#185 - 0.17.0 இல் மாற்றங்கள் +0.17.0 இல் மாற்றங்கள் - புதியது - பிளேபேக் விண்ணப்பம் #2288 - Last கடைசியாக நீங்கள் நிறுத்திய இடத்தில் நீரோடைகளை மீண்டும் தொடங்குங்கள் - பதிவிறக்க மேம்பாடுகள் #2149 - St வெளிப்புற எச்டி-கார்டுகளில் பதிவிறக்கங்களை சேமிக்க சேமிப்பக அணுகல் கட்டமைப்பைப் பயன்படுத்தவும் - Mp புதிய எம்பி 4 மக்சர் - பதிவிறக்கம் பதிவிறக்கத்தைத் தொடங்குவதற்கு முன் பதிவிறக்க கோப்பகத்தை விருப்பமாக மாற்றவும் - Meade மீட்டெடுக்கப்பட்ட நெட்வொர்க்குகளை மரியாதை +புதியது +பிளேபேக் ரெச்யூம் #2288 +• கடைசியாக நீங்கள் நிறுத்திய ச்ட்ரீம்களை மீண்டும் தொடங்கவும் +டவுன்லோடர் மேம்பாடுகள் #2149 +• வெளிப்புற SD கார்டுகளில் பதிவிறக்கங்களைச் சேமிக்க சேமிப்பக அணுகல் கட்டமைப்பைப் பயன்படுத்தவும் +• புதிய mp4 muxer +• பதிவிறக்கத்தைத் தொடங்கும் முன் பதிவிறக்க கோப்பகத்தை விருப்பமாக மாற்றவும் +• மீட்டர் நெட்வொர்க்குகளை மதிக்கவும் - மேம்படுத்தப்பட்டது - • அகற்றப்பட்ட செமா சரங்கள் #2295 - Life செயல்பாட்டு வாழ்க்கை சுழற்சி #2444 இன் போது கையாளுதல் (ஆட்டோ) சுழற்சி மாற்றங்கள் - Long நீண்ட அழுத்த மெனுக்களை சீரானதாக மாற்றவும் #2368 +மேம்படுத்தப்பட்டது +• நீக்கப்பட்ட செமா சரங்கள் #2295 +• செயல்பாட்டு வாழ்க்கைச் சுழற்சியின் போது (தானியங்கு) சுழற்சி மாற்றங்களைக் கையாளவும் #2444 +• நீண்ட அழுத்த மெனுக்களை சீரான #2368 ஆக்குங்கள் - சரி - • நிலையான தேர்ந்தெடுக்கப்பட்ட வசன பாதை பெயர் காண்பிக்கப்படவில்லை #2394 - பயன்பாடு பயன்பாட்டு புதுப்பிப்பு தோல்வியுற்றால் செயலிழக்க வேண்டாம் (கிதுப் பதிப்பு) #2423 - • நிலையான பதிவிறக்கங்கள் 99.9% #2440 இல் சிக்கியுள்ளன - Play ப்ளே வரிசை மேனிலை தரவு #2453 ஐப் புதுப்பிக்கவும் - • [சவுண்ட்க்ளூட்] பிளேலிச்ட்கள் டீம்நியூபைப்/நியூபிபீக்ச்ட்ராக்டர்#170 ஐ ஏற்றும்போது நிலையான செயலிழப்பு - • [YouTube] நிலையான கால அளவு paresd teamnewpipe/newPipeextractor#177 ஆக இருக்க முடியாது +சரி செய்யப்பட்டது +• நிலையான தேர்ந்தெடுக்கப்பட்ட வசன டிராக் பெயர் #2394 காட்டப்படவில்லை +• ஆப்ச் புதுப்பிப்பு தோல்வியுற்றால் செயலிழக்க வேண்டாம் (GitHub பதிப்பு) #2423 +• நிலையான பதிவிறக்கங்கள் 99.9% #2440 இல் சிக்கியுள்ளன +• பிளே வரிசை மேனிலை தரவு #2453ஐப் புதுப்பிக்கவும் +• [SoundCloud] பிளேலிச்ட்களை ஏற்றும்போது நிலையான செயலிழப்பு TeamNewPipe/NewPipeExtractor#170 +• [YouTube] நிலையான கால அளவு TeamNewPipe/NewPipeExtractor#177 diff --git a/fastlane/metadata/android/ta/changelogs/780.txt b/fastlane/metadata/android/ta/changelogs/780.txt index 7d6d57a1c..56e6bcfe7 100644 --- a/fastlane/metadata/android/ta/changelogs/780.txt +++ b/fastlane/metadata/android/ta/changelogs/780.txt @@ -1,12 +1,12 @@ -0.17.3 இல் மாற்றங்கள் +0.17.3 இல் மாற்றங்கள் - மேம்படுத்தப்பட்டது - The பிளேபேக் நிலைகளை அழிக்க விருப்பம் சேர்க்கப்பட்டது #2550 - The கோப்பு பிக்கர் #2591 இல் மறைக்கப்பட்ட கோப்பகங்களைக் காட்டு - புதிய NewPipe #2488 உடன் திறக்கப்பட வேண்டிய `invidio.us` நிகழ்வுகளிலிருந்து முகவரி களை ஆதரிக்கவும் - `Music.youtube.com` urls teamnewpipe/newPipeextractor#194 க்கான ஆதரவைச் சேர்க்கவும் +மேம்படுத்தப்பட்டது +• பிளேபேக் நிலைகளை அழிக்க விருப்பம் சேர்க்கப்பட்டது #2550 +• கோப்பு தேர்வி #2591 இல் மறைக்கப்பட்ட கோப்பகங்களைக் காட்டு +• NewPipe #2488 உடன் திறக்கப்பட வேண்டிய `invidio.us` நிகழ்வுகளின் உதவி URLகள் +• `music.youtube.com` URLகளுக்கான ஆதரவைச் சேர்க்கவும் TeamNewPipe/NewPipeExtractor#194 - சரி - • [YouTube] நிலையான 'java.lang.ilegalargumentexception #192 - • [YouTube] நிலையான நேரடி ச்ட்ரீம்கள் டீம்நியூபைப்/நியூபிபீக்ச்ட்ராக்டர்#195 வேலை செய்யாது - And ஆண்ட்ராய்டு பை ஒரு ச்ட்ரீம் பதிவிறக்கும்போது நிலையான செயல்திறன் சிக்கல் #2592 +சரி செய்யப்பட்டது +• [YouTube] நிலையான 'java.lang.IllegalArgumentException #192 +• [YouTube] நிலையான நேரடி ச்ட்ரீம்கள் வேலை செய்யவில்லை TeamNewPipe/NewPipeExtractor#195 +• ச்ட்ரீம் #2592 ஐப் பதிவிறக்கும் போது ஆண்ட்ராய்டு பையில் செயல்திறன் சிக்கல் சரி செய்யப்பட்டது diff --git a/fastlane/metadata/android/ta/changelogs/790.txt b/fastlane/metadata/android/ta/changelogs/790.txt index 1c9236d44..20ddb787c 100644 --- a/fastlane/metadata/android/ta/changelogs/790.txt +++ b/fastlane/metadata/android/ta/changelogs/790.txt @@ -1,14 +1,14 @@ -மேம்படுத்தப்பட்டது - Bland பார்வையற்றவர்களுக்கான அணுகலை மேம்படுத்த கூடுதல் தலைப்புகளைச் சேர்க்கவும் #2655 - பதிவிறக்கம் பதிவிறக்க கோப்புறையின் மொழியை மிகவும் சீரானதாகவும், தெளிவற்றதாகவும் மாற்றவும் #2637 +மேம்படுத்தப்பட்டது +• பார்வையற்றவர்களுக்கான அணுகலை மேம்படுத்த மேலும் தலைப்புகளைச் சேர்க்கவும் #2655 +• பதிவிறக்க கோப்புறை அமைப்பை மிகவும் சீரானதாகவும் தெளிவற்றதாகவும் மாற்றவும் #2637 - சரி - The தொகுதியில் கடைசி பைட் பதிவிறக்கம் செய்யப்பட்டதா என்று சரிபார்க்கவும் #2646 - ஒளிதோற்றம் வீடியோ விவரம் துண்டு #2672 இல் நிலையான ச்க்ரோலிங் - Teark இரட்டை தேடல் தெளிவான பெட்டி அனிமேசன்களை ஒரு #2695 க்கு அகற்று - • [சவுண்ட்க்ளூட்] கிளையன்ட்_ஐடி பிரித்தெடுத்தல் #2745 ஐ சரிசெய்யவும் +சரி செய்யப்பட்டது +• பிளாக்கில் கடைசி பைட் #2646 பதிவிறக்கம் செய்யப்பட்டுள்ளதா எனச் சரிபார்க்கவும் +• வீடியோ விவரத் துண்டு #2672 இல் ச்க்ரோலிங் சரி செய்யப்பட்டது +• இரட்டை தேடல் தெளிவான பெட்டி அனிமேசன்களை #2695 க்கு அகற்றவும் +• [SoundCloud] கிளையன்ட்_ஐடி பிரித்தெடுத்தலை சரிசெய்யவும் #2745 - வளர்ச்சி - புதிய நியூபிபீக்ச்ட்ராக்டரிடமிருந்து பெறப்பட்ட காணாமல் போன சார்புகளை நியூபைப் #2535 இல் சேர்க்கவும் - And Androidx #2685 க்கு இடம்பெயர்வு - Ex எக்சோப்ளேயருக்கு புதுப்பிப்பு 2.10.6 #2697, #2736 +வளர்ச்சி +• NewPipeExtractor இலிருந்து பெறப்பட்ட விடுபட்ட சார்புகளை NewPipe #2535 இல் சேர்க்கவும் +• AndroidX #2685க்கு மாற்றவும் +• ExoPlayer 2.10.6 #2697, #2736 க்கு புதுப்பிக்கவும் diff --git a/fastlane/metadata/android/ta/changelogs/800.txt b/fastlane/metadata/android/ta/changelogs/800.txt index 9108f0dea..e67680227 100644 --- a/fastlane/metadata/android/ta/changelogs/800.txt +++ b/fastlane/metadata/android/ta/changelogs/800.txt @@ -1,27 +1,27 @@ -புதியது - P பி 2 பி (#2201) இல்லாமல் PEERTUBE உதவி [பீட்டா]: - ஒப்பி Peertube நிகழ்வுகளிலிருந்து வீடியோக்களைப் பார்த்து பதிவிறக்கவும் - Per முழுமையான PEERTUBE உலகத்தை அணுக அமைப்புகளில் நிகழ்வுகளைச் சேர்க்கவும் - And ஆண்ட்ராய்டு 4.4 மற்றும் 7.1 இல் எச்எச்எல் ஏண்ட்சேக்குகளில் சிக்கல்கள் இருக்கலாம், இதன் விளைவாக பிணைய பிழையின் விளைவாக சில நிகழ்வுகளை அணுகலாம். +புதியது +• P2P இல்லாமல் PeerTube உதவி (#2201) [பீட்டா]: +◦ PeerTube நிகழ்வுகளில் இருந்து வீடியோக்களைப் பார்க்கவும் பதிவிறக்கவும் +◦ முழுமையான PeerTube உலகத்தை அணுக அமைப்புகளில் நிகழ்வுகளைச் சேர்க்கவும் +◦ ஆண்ட்ராய்டு 4.4 மற்றும் 7.1 இல் SSL ஏண்ட்சேக்குகளில் சிக்கல்கள் இருக்கலாம், சில நிகழ்வுகளை அணுகும்போது பிணையப் பிழை ஏற்படலாம். - • பதிவிறக்குபவர் (#2679): - பதிவிறக்கம் பதிவிறக்க ETA ஐக் கணக்கிடுங்கள் - OP OGG ஆக OPUS (WEBM கோப்புகள்) பதிவிறக்கவும் - Pac நீண்ட இடைநிறுத்தத்திற்குப் பிறகு பதிவிறக்கங்களை மீண்டும் தொடங்குவதற்கான காலாவதியான பதிவிறக்க இணைப்புகளை மீட்டெடுக்கவும் +• பதிவிறக்குபவர் (#2679): +◦ பதிவிறக்க ETAஐக் கணக்கிடவும் +◦ ஓபசை (வெப்எம் கோப்புகள்) ogg ஆகப் பதிவிறக்கவும் +◦ நீண்ட இடைநிறுத்தத்திற்குப் பிறகு பதிவிறக்கங்களை மீண்டும் தொடங்க, காலாவதியான பதிவிறக்க இணைப்புகளை மீட்டெடுக்கவும் - மேம்படுத்தப்பட்டது - Contase விருப்பமான உள்ளடக்க நாட்டில் ஏற்படும் மாற்றங்கள் குறித்து கியோச்கிராக்மென்ட்டை அறிந்து கொள்ளுங்கள் மற்றும் அனைத்து முக்கிய தாவல்களின் செயல்திறனை மேம்படுத்தவும் #2742 - Tract பிரித்தெடுத்தல் #2713 இலிருந்து புதிய உள்ளூர்மயமாக்கல் மற்றும் பதிவிறக்க செயலாக்கங்களைப் பயன்படுத்தவும் - • "இயல்புநிலை கியோச்க்" சரத்தை மொழிபெயர்க்கக்கூடியதாக மாற்றவும் - • கருப்பு கருப்பொருள் #2569 க்கான கருப்பு வழிசெலுத்தல் பட்டி +மேம்படுத்தப்பட்டது +• விருப்பமான உள்ளடக்க நாட்டில் ஏற்படும் மாற்றங்கள் குறித்து கியோச்க் ஃபிராக்மென்ட்டுக்கு தெரியப்படுத்தவும் மற்றும் அனைத்து முக்கிய தாவல்களின் செயல்திறனை மேம்படுத்தவும் #2742 +• எக்ச்ட்ராக்டர் #2713 இலிருந்து புதிய உள்ளூர்மயமாக்கல் மற்றும் டவுன்லோடர் செயலாக்கங்களைப் பயன்படுத்தவும் +• "இயல்புநிலை கியோச்க்" சரத்தை மொழிபெயர்க்கலாம் +• கருப்பு கருப்பொருள் #2569க்கான கருப்பு வழிசெலுத்தல் பட்டி - சரி - Pop பாப்அப் பிளேயரை நகர்த்தும்போது பாப்அப் பிளேயரை நகர்த்த முடியாத ஒரு பிழை சரி செய்யப்பட்டது, பாப்அப் பிளேயரை நகர்த்தும்போது #2772 - Allial ஒரு பதிவேற்றியைக் காணாமல் பிளேலிச்ட்களை அனுமதிக்கவும், இந்த சிக்கல் தொடர்பான செயலிழப்புகளை சரிசெய்யவும் #2724, டீம்நியூபைப்/நியூபிபீக்ச்ட்ராக்டர் #219 - And ஆண்ட்ராய்டு 4.4 சாதனங்களில் (API 19/KITKAT) TLS1.1/1.2 ஐ இயக்குதல் TLS ஏண்ட்சேக்கை MEDIACCC மற்றும் சில PEERTUBE நிகழ்வுகள் #2792 - • [சவுண்ட்க்ளூட்] நிலையான கிளையண்ட்_ஐடி பிரித்தெடுத்தல் டீம்நியூபைப்/நியூபிபீக்ச்ட்ராக்டர்#217 - • [சவுண்ட்க்ளூட்] ஆடியோ ச்ட்ரீம் பிரித்தெடுத்தலை சரிசெய்யவும் +சரி செய்யப்பட்டது +• மேல்தோன்றல் பிளேயரை நகர்த்தும்போது மற்றொரு விரலை வைத்தால் மேல்தோன்றல் பிளேயரை நகர்த்த முடியாத பிழை சரி செய்யப்பட்டது #2772 +• பதிவேற்றியவரைக் காணாத பிளேலிச்ட்களை அனுமதிக்கவும் மேலும் இந்தச் சிக்கல் தொடர்பான செயலிழப்புகளைச் சரிசெய்யவும் #2724, TeamNewPipe/NewPipeExtractor#219 +• MediaCCC மற்றும் சில PeerTube நிகழ்வுகளுடன் TLS ஏண்ட்சேக்கை சரிசெய்ய Android 4.4 சாதனங்களில் (API 19/KitKat) TLS1.1/1.2 ஐ இயக்குகிறது #2792 +• [SoundCloud] நிலையான கிளையன்ட்_ஐடி பிரித்தெடுத்தல் TeamNewPipe/NewPipeExtractor#217 +• [SoundCloud] ஆடியோ ச்ட்ரீம் பிரித்தெடுத்தலை சரிசெய்யவும் - வளர்ச்சி - Ex எக்சோப்ளேயரை 2.10.8 #2791, #2816 க்கு புதுப்பிக்கவும் - • கிரேடில் 3.5.1 ஆகப் புதுப்பித்து, கோட்லின் உதவி #2714 ஐச் சேர்க்கவும் +வளர்ச்சி +• ExoPlayer ஐ 2.10.8 #2791, #2816 க்கு புதுப்பிக்கவும் +• Gradleஐ 3.5.1க்கு புதுப்பித்து, Kotlin ஆதரவைச் சேர்க்கவும் #2714 diff --git a/fastlane/metadata/android/ta/changelogs/810.txt b/fastlane/metadata/android/ta/changelogs/810.txt index b4a697b6e..205cc5b8e 100644 --- a/fastlane/metadata/android/ta/changelogs/810.txt +++ b/fastlane/metadata/android/ta/changelogs/810.txt @@ -1,19 +1,19 @@ -புதியது - The பின்னணியில் விளையாடும்போது பூட்டுத் திரையில் வீடியோ சிறுபடத்தைக் காட்டுங்கள் +புதியது +• பின்னணியில் விளையாடும்போது பூட்டுத் திரையில் வீடியோ சிறுபடத்தைக் காட்டு - மேம்படுத்தப்பட்டது - Fact பின்னணி / பாப்அப் பொத்தானை நீண்ட நேரம் அழுத்தும்போது வரிசைப்படுத்த உள்ளக பிளேலிச்ட்டைச் சேர்க்கவும் - Page முதன்மையான பக்க தாவல்களை உருட்டலாம் மற்றும் ஒரு தாவல் மட்டுமே இருக்கும்போது மறைக்கவும் - Player பின்னணி பிளேயரில் அறிவிப்பு சிறு புதுப்பிப்புகளின் அளவைக் கட்டுப்படுத்துங்கள் - Local வெற்று உள்ளக பிளேலிச்ட்களுக்கு போலி சிறு உருவத்தைச் சேர்க்கவும் - *. - Dopstion பதிவிறக்கம் செய்யப்பட்ட கோப்புகளை நீக்க பொத்தானைச் சேர்க்கவும் அல்லது வரலாற்றை "பதிவிறக்கங்களில்" பதிவிறக்கவும் - • [YouTube] /c /groldened_url சேனல் இணைப்புகளுக்கு ஆதரவைச் சேர்க்கவும் +மேம்படுத்தப்பட்டது +• பின்னணி / மேல்தோன்றல் பட்டனை நீண்ட நேரம் அழுத்தும் போது உள்ளக பிளேலிச்ட்டை வரிசையில் சேர்க்கவும் +• முதன்மையான பக்க தாவல்களை ச்க்ரோல் செய்யக்கூடியதாக மாற்றவும் மற்றும் ஒரே ஒரு தாவல் இருக்கும் போது மறைக்கவும் +• பின்னணி பிளேயரில் அறிவிப்பு சிறுபட புதுப்பிப்புகளின் வரம்பு +• காலியான உள்ளக பிளேலிச்ட்களுக்கு போலி சிறுபடத்தைச் சேர்க்கவும் +• *.webm க்குப் பதிலாக *.opus கோப்பு நீட்டிப்பைப் பயன்படுத்தவும், பதிவிறக்க கீழ்தோன்றும் இடத்தில் "WebM Opus" என்பதற்குப் பதிலாக வடிவமைப்பு லேபிளில் "opus" என்பதைக் காட்டவும் +• "பதிவிறக்கங்களில்" பதிவிறக்கப்பட்ட கோப்புகள் அல்லது பதிவிறக்க வரலாற்றை நீக்க பொத்தானைச் சேர்க்கவும் +• [YouTube] /c/shortened_url சேனல் இணைப்புகளுக்கு ஆதரவைச் சேர்க்கவும் - சரி - புழம்பு நியூ பைப்பிற்கு ஒரு வீடியோவைப் பகிர்ந்துகொண்டு அதன் ச்ட்ரீம்களை நேரடியாக பதிவிறக்கும் போது பல சிக்கல்கள் சரி செய்யப்பட்டன - • நிலையான பிளேயர் அதன் உருவாக்கும் நூலில் இருந்து அணுகல் - • நிலையான தேடல் முடிவு பேசிங் - • [YouTube] NPE ஐ ஏற்படுத்தும் பூச்யத்தில் நிலையான மாறுதல் - • [YouTube] ஒரு Invidio.us முகவரி ஐத் திறக்கும்போது நிலையான பார்வை கருத்துகள் - • [சவுண்ட்க்ளூட்] புதுப்பிக்கப்பட்ட கிளையண்ட்_ஐடி +சரி செய்யப்பட்டது +• நியூபைப்பில் வீடியோவைப் பகிரும்போதும் அதன் ச்ட்ரீம்களை நேரடியாகப் பதிவிறக்கும்போதும் பல சிக்கல்கள் சரி செய்யப்பட்டன +• அதன் உருவாக்கத் தொடரிலிருந்து நிலையான பிளேயர் அணுகல் +• நிலையான தேடல் முடிவு பக்கமாக்கல் +• [YouTube] NPE க்கு காரணமான பூச்யத்தில் மாறுதல் நிலையானது +• [YouTube] invidio.us urlஐத் திறக்கும்போது கருத்துகளைப் பார்ப்பது நிலையானது +• [SoundCloud] updated client_id diff --git a/fastlane/metadata/android/ta/changelogs/840.txt b/fastlane/metadata/android/ta/changelogs/840.txt index 44eed054d..50f999f87 100644 --- a/fastlane/metadata/android/ta/changelogs/840.txt +++ b/fastlane/metadata/android/ta/changelogs/840.txt @@ -1,22 +1,22 @@ -புதியது - பயன்பாடு பயன்பாட்டு மொழியை மாற்ற மொழி தேர்வாளரைச் சேர்த்தது - Mally பிளேயர் மடக்கக்கூடிய மெனுவுக்கு கோடி பொத்தானை அனுப்பவும் - Press நீண்ட பத்திரிகையில் கருத்துகளை நகலெடுக்கும் திறன் சேர்க்கப்பட்டது +புதியது +• பயன்பாட்டு மொழியை மாற்ற, மொழி தேர்வி சேர்க்கப்பட்டது +• பிளேயர் மடிக்கக்கூடிய பட்டியலில் 'கோடிக்கு அனுப்பு' பட்டன் சேர்க்கப்பட்டது +• நீண்ட அழுத்தத்தில் கருத்துகளை நகலெடுக்கும் திறன் சேர்க்கப்பட்டது - மேம்படுத்தப்பட்டது - Rececaptaca செயல்பாட்டை சரிசெய்து, பெறப்பட்ட குக்கீகளை சரியாக சேமிக்கவும் - பெறுநர் டி டாட்-மெனுவை அலமாரிக்கு ஆதரவாக மற்றும் மறைக்க வரலாறு பொத்தானை அமைப்புகளில் வாட்ச் வரலாறு இயக்கப்படாதபோது - And ஆண்ட்ராய்டு 6 மற்றும் அதற்குப் பிறகு அமைப்புகளில் மற்ற பயன்பாடுகளின் இசைவு மீது காட்சி கேட்கவும் - Bouk புக்மார்க்கெட் பிராக்மென்ட்டில் நீண்ட காலமாக சொடுக்கு செய்வதன் மூலம் உள்ளக பிளேலிச்ட்டை மறுபெயரிடுங்கள் - Per பல்வேறு PEERTUBE மேம்பாடுகள் - • பல ஆங்கில மூல சரங்களை மேம்படுத்தியது +மேம்படுத்தப்பட்டது +• ReCaptcha செயல்பாட்டைச் சரிசெய்து, பெறப்பட்ட குக்கீகளை சரியாகச் சேமிக்கவும் +• டிராயருக்கு ஆதரவாக புள்ளி-மெனு அகற்றப்பட்டது மற்றும் அமைப்புகளில் பார்வை வரலாறு இயக்கப்படாதபோது வரலாற்றை மறைக்கும் பட்டன் +• ஆண்ட்ராய்டு 6 மற்றும் அதற்குப் பிந்தைய பதிப்பில் உள்ள அமைப்புகளில், பிற ஆப்சைக் காட்ட இசைவு கேட்கவும் +• புத்தகக்குறி ஃபிராக்மென்ட்டில் நீண்ட நேரம் சொடுக்கு செய்வதன் மூலம் உள்ளக பிளேலிச்ட்டின் பெயரை மாற்றவும் +• பல்வேறு PeerTube மேம்பாடுகள் +• பல ஆங்கில மூல சரங்கள் மேம்படுத்தப்பட்டது - சரி - • நிலையான பிளேயர் மீண்டும் தொடங்குகிறது, இருப்பினும் இது "பயன்பாட்டு சுவிட்சைக் குறைத்தல்" இயக்கப்பட்டிருக்கும்போது, புதிய அளவைக் குறைக்கும்போது அது இடைநிறுத்தப்படுகிறது - The சைகைக்கு ஆரம்ப பிரகாச மதிப்பை சரிசெய்யவும் - • நிலையான .SRT வசன பதிவிறக்கங்கள் அனைத்து வரி இடைவெளிகளும் இல்லை - And சில ஆண்ட்ராய்டு 5 சாதனங்கள் CTF இணக்கமானவை அல்ல என்பதால் SD கார்டுக்கு நிலையான பதிவிறக்கம் தோல்வியடைகிறது - And ஆண்ட்ராய்டு Kitkat இல் நிலையான பதிவிறக்குதல் - • நிலையான ஊழல் வீடியோ .mp4 கோப்பு ஆடியோ கோப்பாக அங்கீகரிக்கப்பட்டுள்ளது - சீன மொழி குறியீடுகள் உட்பட பல உள்ளூர்மயமாக்கல் சிக்கல்கள் நிலையானவை - • [YouTube] விளக்கத்தில் உள்ள நேர முத்திரைகள் மீண்டும் சொடுக்கு செய்யக்கூடியவை +சரி செய்யப்பட்டது +• ஃபிக்ச்டு பிளேயர் மீண்டும் தொடங்கும், இருப்பினும் "மினிமைச் ஆன் ஆப் ஆப் ச்விட்ச்" விருப்பம் இயக்கப்பட்டு, நியூபைப் சிறிதாக்கப்பட்டால் அது இடைநிறுத்தப்பட்டது. +• சைகைக்கான ஆரம்ப பிரகாச மதிப்பை சரிசெய்யவும் +• நிலையான .srt வசனப் பதிவிறக்கங்கள் அனைத்து வரி முறிவுகளையும் கொண்டிருக்கவில்லை +• சில Android 5 சாதனங்கள் CTF இணங்காததால் SD கார்டில் நிலையான பதிவிறக்கம் தோல்வியடைந்தது +• ஆண்ட்ராய்டு KitKat இல் பதிவிறக்குவது நிலையானது +• நிலையான சிதைந்த வீடியோ .mp4 கோப்பு ஆடியோ கோப்பாக அங்கீகரிக்கப்படுகிறது +• தவறான சீன மொழி குறியீடுகள் உட்பட பல உள்ளூர்மயமாக்கல் சிக்கல்கள் சரி செய்யப்பட்டன +• [YouTube] விளக்கத்தில் உள்ள நேர முத்திரைகள் மீண்டும் சொடுக்கு செய்யலாம் diff --git a/fastlane/metadata/android/ta/changelogs/900.txt b/fastlane/metadata/android/ta/changelogs/900.txt index 5cd4788dd..d2e534eec 100644 --- a/fastlane/metadata/android/ta/changelogs/900.txt +++ b/fastlane/metadata/android/ta/changelogs/900.txt @@ -1,14 +1,14 @@ -புதியது - • சந்தா குழுக்கள் மற்றும் வரிசைப்படுத்தப்பட்ட ஊட்டங்கள் - • வீரர்களில் முடக்கு பொத்தான் +புதியது +• சந்தா குழுக்கள் மற்றும் வரிசைப்படுத்தப்பட்ட ஊட்டங்கள் +• பிளேயர்களில் முடக்கு பொத்தான் - மேம்படுத்தப்பட்டது - Music இசை.youtube.com மற்றும் media.ccc.de இணைப்புகளை நியூபைப்பில் திறக்க அனுமதிக்கவும் - Settements தோற்றத்திலிருந்து உள்ளடக்கத்திற்கு இரண்டு அமைப்புகளை இடமாற்றம் செய்யுங்கள் - Seecediveditional 5, 15, 25 நொடி தேடு விருப்பங்களை மறைக்கவும். +மேம்படுத்தப்பட்டது +• NewPipe இல் music.youtube.com மற்றும் media.ccc.de இணைப்புகளைத் திறக்க அனுமதிக்கவும் +• தோற்றத்தில் இருந்து உள்ளடக்கத்திற்கு இரண்டு அமைப்புகளை மாற்றவும் +• inexact search இயக்கப்பட்டிருந்தால், 5, 15, 25 second தேடல் விருப்பங்களை மறை - சரி - விரலிடைத் தோல் சில வெப்எம் வீடியோக்கள் தேட முடியாது - And ஆண்ட்ராய்டில் தரவுத்தள காப்புப்பிரதி ப - பதிவிறக்கம் செய்யப்பட்ட கோப்பைப் பகிரும்போது செயலிழப்பு - You டன் யூடியூப் பிரித்தெடுத்தல் சிக்கல் மற்றும் பல ... +சரி செய்யப்பட்டது +• சில WebM வீடியோக்களை தேட முடியாது +• ஆண்ட்ராய்டு P இல் தரவுத்தள காப்புப்பிரதி +• பதிவிறக்கம் செய்யப்பட்ட கோப்பைப் பகிரும்போது செயலிழக்கும் +• டன் YouTube பிரித்தெடுத்தல் சிக்கல் மற்றும் பல ... diff --git a/fastlane/metadata/android/ta/changelogs/930.txt b/fastlane/metadata/android/ta/changelogs/930.txt index 7635500bd..5cb7a8425 100644 --- a/fastlane/metadata/android/ta/changelogs/930.txt +++ b/fastlane/metadata/android/ta/changelogs/930.txt @@ -1,19 +1,19 @@ -புதியது - You யூடியூப் இசையில் தேடுங்கள் - And அடிப்படை ஆண்ட்ராய்டு டிவி ஆதரவு +புதியது +• YouTube Music இல் தேடவும் +• அடிப்படை ஆண்ட்ராய்டு TV உதவி - மேம்படுத்தப்பட்டது - அனைத்தும் உள்ளக பிளேலிச்ட்டிலிருந்து பார்த்த அனைத்து வீடியோக்களையும் அகற்றும் திறனைச் சேர்த்தது - Contence விபத்துக்கு பதிலாக உள்ளடக்கம் இன்னும் ஆதரிக்கப்படாதபோது செய்தியைக் காட்டு - Pop மேம்பட்ட பாப்அப் பிளேயர் பிஞ்ச் சைகைகளுடன் மறுஅளவிடுகிறது - Sananment சேனலில் பின்னணி மற்றும் பாப்அப் பொத்தான்களில் நீண்ட அழுத்தத்தில் உள்ள ச்ட்ரீம்கள் - Tra டிராயர் தலைப்பு தலைப்பின் மேம்பட்ட அளவு கையாளுதல் +மேம்படுத்தப்பட்டது +• உள்ளக பிளேலிச்ட்டில் இருந்து பார்த்த அனைத்து வீடியோக்களையும் அகற்றும் திறன் சேர்க்கப்பட்டது +• செயலிழப்பதற்குப் பதிலாக உள்ளடக்கம் இன்னும் ஆதரிக்கப்படாதபோது செய்தியைக் காட்டு +• பிஞ்ச் சைகைகள் மூலம் மேம்படுத்தப்பட்ட மேல்தோன்றல் பிளேயர் அளவு +• சேனலில் பின்னணி மற்றும் மேல்தோன்றல் பொத்தான்களில் நீண்ட நேரம் அழுத்தினால் ச்ட்ரீம்களை என்கியூவில் வைக்கவும் +• டிராயர் எடர் தலைப்பின் மேம்படுத்தப்பட்ட அளவு கையாளுதல் - சரி - Age நிலையான அகவை தடைசெய்யப்பட்ட உள்ளடக்க அமைப்பு செயல்படவில்லை - • சில வகையான ரெக்காப்டாக்கள் சரி செய்யப்பட்டன - B புக்மார்க்குகளைத் திறக்கும்போது நிலையான செயலிழப்பு பிளேலிச்ட் `NULL` - பிணையம் பிணையம் தொடர்பான விதிவிலக்குகளின் நிலையான கண்டறிதல் - Sub சந்தாக்கள் துண்டில் குழு வரிசை பொத்தானின் நிலையான தெரிவுநிலை +சரி செய்யப்பட்டது +• நிர்ணயிக்கப்பட்ட அகவை வரம்பிடப்பட்ட உள்ளடக்க அமைப்பு வேலை செய்யவில்லை +• குறிப்பிட்ட வகையான reCAPTCHAகள் சரி செய்யப்பட்டன +• பிளேலிச்ட் `பூச்யமாக' இருக்கும் போது புக்மார்க்குகளைத் திறக்கும்போது நிலையான செயலிழப்பு +• பிணையம் தொடர்பான விதிவிலக்குகளை நிலையான கண்டறிதல் +• சந்தாத் துண்டில் குழு வரிசை பட்டனின் நிலையான தெரிவுநிலை - மேலும் +மேலும் diff --git a/fastlane/metadata/android/ta/changelogs/940.txt b/fastlane/metadata/android/ta/changelogs/940.txt index 738a70d1b..cea749c09 100644 --- a/fastlane/metadata/android/ta/changelogs/940.txt +++ b/fastlane/metadata/android/ta/changelogs/940.txt @@ -1,16 +1,16 @@ -புதியது - Chound சவுண்ட்க்ளூட் கருத்துகளுக்கான ஆதரவைச் சேர்க்கவும் - You யூடியூப் தடைசெய்யப்பட்ட பயன்முறை அமைப்பைச் சேர்க்கவும் - The Peretube பெற்றோர் சேனல் விவரங்களைக் காட்டு +புதியது +• SoundCloud கருத்துகளுக்கான ஆதரவைச் சேர்க்கவும் +• YouTube கட்டுப்படுத்தப்பட்ட பயன்முறை அமைப்பைச் சேர்க்கவும் +• PeerTube பெற்றோர் சேனல் விவரங்களைக் காட்டு - மேம்படுத்தப்பட்டது - Surects உதவி சேவைகளுக்கு மட்டுமே கோர் பொத்தானைக் காட்டு - Navigational வழிசெலுத்தல் பார் அல்லது ச்டேட்டச்பாரில் தொடங்கும் பிளேயர் சைகைகள் - Retry பணி வண்ணத்தின் அடிப்படையில் மீண்டும் மீண்டும் மாற்றவும் மற்றும் குழுசேர் பொத்தான்கள் பின்னணி வண்ணம் +மேம்படுத்தப்பட்டது +• ஆதரிக்கப்படும் சேவைகளுக்கு மட்டும் கோர் பட்டனைக் காட்டு +• NavigationBar அல்லது StatusBar இல் தொடங்கும் பிளேயர் சைகைகளைத் தடுக்கவும் +• பணி நிறத்தின் அடிப்படையில் மீண்டும் முயற்சிக்கவும் & குழுசேரவும் பொத்தான்களின் பின்னணி நிறத்தை மாற்றவும் - சரி - The பதிவிறக்கம் உரையாடல் முடக்கம் சரிசெய்யவும் - • உலாவி பொத்தானைத் திறக்கவும் இப்போது உலாவியில் உண்மையில் திறக்கிறது - வீடியோக்களைத் திறப்பதில் விபத்தை சரிசெய்யவும், "இந்த ச்ட்ரீமை இயக்க முடியவில்லை" +சரி செய்யப்பட்டது +• பதிவிறக்க உரையாடல் முடக்கத்தை சரிசெய்யவும் +• உலாவியில் திற பொத்தான் இப்போது உண்மையில் உலாவியில் திறக்கும் +• வீடியோக்களைத் திறப்பதில் ஏற்படும் செயலிழப்பு மற்றும் "இந்த ச்ட்ரீமை இயக்க முடியவில்லை" - மேலும் +மேலும் diff --git a/fastlane/metadata/android/ta/changelogs/951.txt b/fastlane/metadata/android/ta/changelogs/951.txt index 5059ce78a..edb9c6c74 100644 --- a/fastlane/metadata/android/ta/changelogs/951.txt +++ b/fastlane/metadata/android/ta/changelogs/951.txt @@ -1,17 +1,17 @@ -புதியது - குழு ஊட்டக் குழு உரையாடலில் சந்தா தேர்வாளருக்கான தேடலைச் சேர்க்கவும் - குழு குழுவாகக் காட்ட ஊட்டக் குழு உரையாடலில் வடிகட்டியைச் சேர்க்கவும் - Page முதன்மையான பக்கத்தில் பிளேலிச்ட் தாவலைச் சேர்க்கவும் - Pact பின்னணி/பாப்-அப் பிளேயர் வரிசையில் வேகமாக முன்னோக்கி/முன்னாடி - தேடல் தேடல் ஆலோசனையைக் காண்பி: நீங்கள் சொல்வது மற்றும் முடிவைக் காட்டினீர்களா? +புதியது +• ஊட்டக் குழு உரையாடலில் சந்தா தேர்விக்கான தேடலைச் சேர்க்கவும் +• தொகுக்கப்படாத சந்தாக்களை மட்டும் காட்ட ஊட்டக் குழு உரையாடலில் வடிப்பானைச் சேர்க்கவும் +• முதன்மைப் பக்கத்தில் பிளேலிச்ட் தாவலைச் சேர்க்கவும் +• பின்னணி/பாப்-அப் பிளேயர் வரிசையில் வேகமாக முன்னோக்கி/ரீவைண்ட் +• தேடல் பரிந்துரையைக் காட்டு: அதற்கான முடிவைக் காட்டுகிறீர்களா? - மேம்படுத்தப்பட்டது - Application மக்சட் கோப்புகளில் பயன்பாட்டு மெட்டாடேட்டாவை எழுதுவதை விடுங்கள் - தோல்வியுற்ற நீரோடைகளை வரிசையில் இருந்து அகற்ற வேண்டாம் - பெறுநர் கருவிப்பட்டி வண்ணத்துடன் பொருந்தக்கூடிய நிலை பட்டி வண்ணத்தைப் புதுப்பிக்கவும் +மேம்படுத்தப்பட்டது +• கலவையான கோப்புகளில் பயன்பாட்டு மெட்டாடேட்டாவை எழுதுவதை கைவிடவும் +• தோல்வியுற்ற ச்ட்ரீம்களை வரிசையில் இருந்து அகற்ற வேண்டாம் +• கருவிப்பட்டியின் நிறத்துடன் பொருந்த, நிலைப் பட்டியின் நிறத்தைப் புதுப்பிக்கவும் - சரி - • மிதக்கும் புள்ளி ஒட்டுமொத்த பிழைகள் காரணமாக நிலையான ஆடியோ/வீடியோ டிசின்க் - • [PEERTUBE] நீக்கப்பட்ட கருத்துகளைக் கையாளவும் +சரி செய்யப்பட்டது +• ஃப்ளோட்டிங் பாயின்ட் க்யூமுலேட்டிவ் பிழைகளால் ஏற்படும் நிலையான ஆடியோ/வீடியோ ஒத்திசைவு +• [PeerTube] நீக்கப்பட்ட கருத்துகளைக் கையாளவும் - மேலும் +மேலும் diff --git a/fastlane/metadata/android/ta/changelogs/954.txt b/fastlane/metadata/android/ta/changelogs/954.txt index 5943b457e..c902e7a5b 100644 --- a/fastlane/metadata/android/ta/changelogs/954.txt +++ b/fastlane/metadata/android/ta/changelogs/954.txt @@ -1,9 +1,9 @@ -Applic புதிய பயன்பாட்டு பணிப்பாய்வு: விவரம் பக்கத்தில் வீடியோக்களை இயக்கவும், பிளேயரைக் குறைக்க ச்வைப் செய்யவும் - • மீடியாச்டைல் அறிவிப்புகள்: அறிவிப்புகள், செயல்திறன் மேம்பாடுகள் ஆகியவற்றில் தனிப்பயனாக்கக்கூடிய செயல்கள் - பூச்சி டெச்க்டாப் பயன்பாடாக நியூபிப்பைப் பயன்படுத்தும் போது அடிப்படை மறுஅளவிடுதல் +• புதிய பயன்பாட்டுப் பணிப்பாய்வு: விவரப் பக்கத்தில் வீடியோக்களை இயக்கவும், பிளேயரைக் குறைக்க கீழே ச்வைப் செய்யவும் +• MediaStyle அறிவிப்புகள்: அறிவிப்புகளில் தனிப்பயனாக்கக்கூடிய செயல்கள், செயல்திறன் மேம்பாடுகள் +• டெச்க்டாப் பயன்பாடாக NewPipe ஐப் பயன்படுத்தும் போது அடிப்படை மறுஅளவிடுதல் - ஆதரிக்கப்படாத முகவரி சிற்றுண்டி விசயத்தில் திறந்த விருப்பங்களுடன் உரையாடலைக் காட்டு - Re தொலைதூரங்களை பெற முடியாதபோது தேடல் பரிந்துரை அனுபவத்தை மேம்படுத்தவும் - இயல்புநிலை இயல்புநிலை வீடியோ தகுதி 720p60 (பயன்பாட்டில் உள்ள பிளேயர்) மற்றும் 480p (பாப்-அப் பிளேயர்) ஆக அதிகரித்தது +• ஆதரிக்கப்படாத URL டோச்ட்டின் போது திறந்த விருப்பங்களுடன் உரையாடலைக் காட்டு +• தொலைவில் உள்ளவற்றைப் பெற முடியாதபோது, தேடல் பரிந்துரை அனுபவத்தை மேம்படுத்தவும் +• இயல்புநிலை வீடியோ தகுதி 720p60 (இன்-ஆப் பிளேயர்) மற்றும் 480p (பாப்-அப் பிளேயர்) ஆக அதிகரிக்கப்பட்டது - • டன் பிழை திருத்தங்கள் மற்றும் பல +• பல பிழை திருத்தங்கள் மற்றும் பல diff --git a/fastlane/metadata/android/ta/changelogs/957.txt b/fastlane/metadata/android/ta/changelogs/957.txt index 3b4c1ea7e..c9e57658d 100644 --- a/fastlane/metadata/android/ta/changelogs/957.txt +++ b/fastlane/metadata/android/ta/changelogs/957.txt @@ -1,10 +1,10 @@ -என் குறிப்பிட்ட enqueue செயல்களை ஒன்றில் ஒன்றிணைக்கவும் - Player வீரரை மூடி இரண்டு விரல் சைகை - Rec ரெகாப்ட்சா குக்கீகளை அழிக்க அனுமதிக்கவும் - அறிவிப்பை வண்ணமயமாக்காத விருப்பம் - புதிய நியூபைப் மற்றும் பிற முரண்பாடுகளைப் பகிரும்போது எல்லையற்ற இடையக, தரமற்ற நடத்தை ஆகியவற்றை சரிசெய்ய வீடியோ விவரங்கள் எவ்வாறு திறக்கப்படுகின்றன என்பதை மேம்படுத்தவும் - You யூடியூப் வீடியோக்களை விரைவுபடுத்தி, அகவை தடைசெய்யப்பட்டவற்றை சரிசெய்யவும் - Ford வேகமான முன்னோக்கி/முன்னோடிகளில் செயலிழப்பை சரிசெய்யவும் - Promang சிறு உருவங்களை இழுப்பதன் மூலம் பட்டியல்களை மறுசீரமைக்க வேண்டாம் - Pop எப்போதும் பாப்அப் பண்புகளை நினைவில் கொள்ளுங்கள் - Sandandali மொழியைச் சேர்க்கவும் +• குறிப்பிட்ட வரிசை செயல்களை ஒன்றாக இணைக்கவும் +• பிளேயரை மூட இரண்டு விரல் சைகை +• reCAPTCHA குக்கீகளை அழிக்க அனுமதிக்கவும் +• அறிவிப்பை வண்ணமாக்காத விருப்பம் +• நியூபைப்பில் பகிரும் போது எல்லையற்ற பஃபரிங், தரமற்ற நடத்தை மற்றும் பிற முரண்பாடுகளை சரிசெய்ய வீடியோ விவரங்கள் எவ்வாறு திறக்கப்படுகின்றன என்பதை மேம்படுத்தவும் +• YouTube வீடியோக்களை விரைவுபடுத்துங்கள் மற்றும் அகவை வரம்புக்குட்பட்டவற்றை சரிசெய்யவும் +• வேகமாக முன்னோக்கி/முன்னோக்கிச் செல்லும் போது செயலிழப்பை சரிசெய்யவும் +• சிறுபடங்களை இழுத்து பட்டியல்களை மறுசீரமைக்க வேண்டாம் +• மேல்தோன்றல் பண்புகளை எப்போதும் நினைவில் கொள்ளுங்கள் +• சந்தாலி மொழியைச் சேர்க்கவும் diff --git a/fastlane/metadata/android/ta/changelogs/958.txt b/fastlane/metadata/android/ta/changelogs/958.txt index 6d9b9e041..71f673627 100644 --- a/fastlane/metadata/android/ta/changelogs/958.txt +++ b/fastlane/metadata/android/ta/changelogs/958.txt @@ -1,15 +1,15 @@ -புதிய மற்றும் மேம்பட்ட: - The பூட்டுத் திரையில் சிறுபடத்தை மறைக்க மீண்டும் சேர்க்கப்பட்ட விருப்பம் - தீவனம் தீவனத்தை புதுப்பிக்க இழுக்கவும் - Lical உள்ளக பட்டியல்களைப் பெறும்போது மேம்பட்ட செயல்திறன் +புதியது மற்றும் மேம்படுத்தப்பட்டது: +• பூட்டுத் திரையில் சிறுபடத்தை மறைக்க விருப்பம் மீண்டும் சேர்க்கப்பட்டது +• ஊட்டத்தைப் புதுப்பிக்க இழுக்கவும் +• உள்ளக பட்டியல்களைப் பெறும்போது மேம்படுத்தப்பட்ட செயல்திறன் - சரி: - Bipe நியூபைப் ராமில் இருந்து அகற்றப்பட்ட பிறகு அதைத் தொடங்கும்போது நிலையான செயலிழப்பு - இணைய இணைப்பு இல்லாதபோது தொடக்கத்தில் நிலையான செயலிழப்பு - • நிலையான மரியாதைக்குரிய பிரகாசம்- மற்றும் தொகுதி-குறிப்பிட்ட அமைப்புகள் - • [YouTube] நிலையான நீண்ட பிளேலிச்ட்கள் +சரி செய்யப்பட்டது: +• RAM இலிருந்து அகற்றப்பட்ட பிறகு NewPipe ஐத் தொடங்கும் போது நிலையான செயலிழப்பு +• இணைய இணைப்பு இல்லாதபோது தொடக்கத்தில் நிலையான செயலிழப்பு +• ஒளி மற்றும் வால்யூம் சைகை அமைப்புகளைப் பொறுத்து சரி செய்யப்பட்டது +• [YouTube] நிலையான நீண்ட பிளேலிச்ட்கள் - மற்றவை: - • குறியீடு தூய்மைப்படுத்தல் மற்றும் பல உள் மேம்பாடுகள் - • சார்பு புதுப்பிப்புகள் - • மொழிபெயர்ப்பு புதுப்பிப்புகள் +மற்றவை: +• குறியீடு தூய்மை மற்றும் பல உள் மேம்பாடுகள் +• சார்பு மேம்படுத்தல்கள் +• மொழிபெயர்ப்பு புதுப்பிப்புகள் diff --git a/fastlane/metadata/android/ta/changelogs/964.txt b/fastlane/metadata/android/ta/changelogs/964.txt index da068f948..be6de6f06 100644 --- a/fastlane/metadata/android/ta/changelogs/964.txt +++ b/fastlane/metadata/android/ta/changelogs/964.txt @@ -1,8 +1,8 @@ -Player பிளேயர் கட்டுப்பாடுகளில் அத்தியாயங்களுக்கான உதவி சேர்க்கப்பட்டது - • [PEERTUBE] செபியா தேடலைச் சேர்த்தது - Wideed வீடியோ விவரம் பார்வையில் மீண்டும் சேர்க்கப்பட்ட பகிர்வு பொத்தானை மற்றும் ச்ட்ரீம் விளக்கத்தை தாவல் தளவமைப்பில் நகர்த்தியது - • ஒளி சைகை முடக்கப்பட்டிருந்தால் பிரகாசத்தை மீட்டெடுப்பதை முடக்கு - கோடியில் வீடியோவை இயக்க பட்டியல் உருப்படியைச் சேர்த்தது - Star சில சாதனங்களில் இயல்புநிலை உலாவி அமைக்கப்படும்போது நிலையான செயலிழப்பு மற்றும் பங்கு உரையாடல்களை மேம்படுத்தவும் - Full முழு அளவிலான பிளேயரில் வன்பொருள் விண்வெளி பொத்தானைக் கொண்டு நாடகம்/இடைநிறுத்துங்கள் - • [Media.ccc.de] பல்வேறு திருத்தங்கள் மற்றும் மேம்பாடுகள் +• பிளேயர் கட்டுப்பாடுகளில் அத்தியாயங்களுக்கான உதவி சேர்க்கப்பட்டது +• [PeerTube] Sepia தேடல் சேர்க்கப்பட்டது +• வீடியோ விவரக் காட்சியில் பகிர்வு பொத்தான் மீண்டும் சேர்க்கப்பட்டு, தாவல் தளவமைப்பிற்கு ச்ட்ரீம் விளக்கம் நகர்த்தப்பட்டது +• ஒளி சைகை முடக்கப்பட்டிருந்தால், பிரகாசத்தை மீட்டெடுப்பதை முடக்கவும் +• கோடியில் வீடியோவை இயக்க பட்டியல் உருப்படி சேர்க்கப்பட்டது +• சில சாதனங்களில் இயல்புநிலை உலாவி அமைக்கப்படாதபோது நிலையான செயலிழப்பு மற்றும் பகிர்வு உரையாடல்களை மேம்படுத்தலாம் +• முழுத்திரை பிளேயரில் ஆர்டுவேர் ச்பேச் பட்டன் மூலம் பிளே/இடைநிறுத்தத்தை நிலைமாற்று +• [media.ccc.de] பல்வேறு திருத்தங்கள் மற்றும் மேம்பாடுகள் diff --git a/fastlane/metadata/android/ta/changelogs/966.txt b/fastlane/metadata/android/ta/changelogs/966.txt index e7f22ff44..6e1ca2322 100644 --- a/fastlane/metadata/android/ta/changelogs/966.txt +++ b/fastlane/metadata/android/ta/changelogs/966.txt @@ -1,14 +1,14 @@ -புதியது: - பணி ஒரு புதிய சேவையைச் சேர்க்கவும்: பேண்ட்கேம்ப் +புதிய: +• புதிய சேவையைச் சேர்க்கவும்: Bandcamp - மேம்படுத்தப்பட்டது: - பயன்பாடு பயன்பாட்டைப் பெற ஒரு விருப்பத்தைச் சேர்க்கவும் சாதனத்தின் கருப்பொருளைப் பின்தொடரவும் - Ever மேம்பட்ட பிழை பேனலைக் காண்பிப்பதன் மூலம் சில செயலிழப்புகளைத் தடுக்கவும் - Contentance கிடைக்காத உள்ளடக்கம் ஏன் பற்றிய கூடுதல் தகவலைக் காட்டுங்கள் - • வன்பொருள் விண்வெளி பொத்தான் விளையாட்டு/இடைநிறுத்தத்தைத் தூண்டுகிறது - பெறுநர் சிற்றுண்டி "பதிவிறக்கம்" சிற்றுண்டியைக் காட்டு +மேம்படுத்தப்பட்டது: +• சாதனத்தின் கருப்பொருளை ஆப்சைப் பின்பற்றுவதற்கான விருப்பத்தைச் சேர்க்கவும் +• மேம்படுத்தப்பட்ட பிழை பேனலைக் காண்பிப்பதன் மூலம் சில செயலிழப்புகளைத் தடுக்கவும் +• உள்ளடக்கம் ஏன் கிடைக்கவில்லை என்பது பற்றிய கூடுதல் தகவலைக் காட்டு +• ஆர்டுவேர் ச்பேச் பட்டன் பிளே/இடைநிறுத்தத்தை தூண்டுகிறது +• "பதிவிறக்கம் தொடங்கியது" டோச்ட்டைக் காட்டு - சரி: - The பின்னணியில் விளையாடும்போது வீடியோ விவரங்களில் மிகச் சிறிய சிறுபடத்தை சரிசெய்யவும் - The குறைக்கப்பட்ட பிளேயரில் வெற்று தலைப்பை சரிசெய்யவும் - Rest கடைசி மறுசீரமைப்பு பயன்முறையை சரியாக மீட்டெடுக்கவில்லை +சரி செய்யப்பட்டது: +• பின்னணியில் விளையாடும் போது வீடியோ விவரங்களில் மிகச் சிறிய சிறுபடத்தைச் சரிசெய்யவும் +• குறைக்கப்பட்ட பிளேயரில் வெற்று தலைப்பை சரிசெய்யவும் +• சரியாக மீட்டெடுக்கப்படாத கடைசி மறுஅளவிடுதல் பயன்முறையைச் சரிசெய்யவும் diff --git a/fastlane/metadata/android/ta/changelogs/969.txt b/fastlane/metadata/android/ta/changelogs/969.txt index 93e0a695d..e1496df7c 100644 --- a/fastlane/metadata/android/ta/changelogs/969.txt +++ b/fastlane/metadata/android/ta/changelogs/969.txt @@ -1,8 +1,8 @@ -Storage வெளிப்புற சேமிப்பகத்தில் நிறுவலை அனுமதிக்கவும் - • [பேண்ட்கேம்ப்] முதல் மூன்று கருத்துகளை ச்ட்ரீமில் காண்பிப்பதற்கான ஆதரவைச் சேர்த்தது - பதிவிறக்கம் பதிவிறக்கம் தொடங்கும் போது 'பதிவிறக்கம் தொடங்கியது' சிற்றுண்டியைக் காட்டுங்கள் - Cook குக்கீ சேமிக்கப்படாதபோது ரெக்காப்ட்சா குக்கீயை அமைக்க வேண்டாம் - • [பிளேயர்] கேச் செயல்திறனை மேம்படுத்தவும் - • [பிளேயர்] நிலையான பிளேயர் தானாகவே விளையாடுவதில்லை - பதிவிறக்கம் பதிவிறக்கங்களை நீக்கும்போது முந்தைய சிற்றுண்டிகளை நிராகரிக்கவும் - • பட்டியலில் இல்லாத பொருளை நீக்க முயற்சித்தது +• வெளிப்புற சேமிப்பகத்தில் நிறுவலை அனுமதிக்கவும் +• [Bandcamp] ச்ட்ரீமில் முதல் மூன்று கருத்துகளைக் காண்பிப்பதற்கான உதவி சேர்க்கப்பட்டது +• பதிவிறக்கம் தொடங்கும் போது 'பதிவிறக்கம் தொடங்கியது' டோச்ட்டை மட்டும் காட்டவும் +• குக்கீகள் சேமிக்கப்படாதபோது reCaptcha குக்கீயை அமைக்க வேண்டாம் +• [பிளேயர்] கேச் செயல்திறனை மேம்படுத்தவும் +• [பிளேயர்] நிலையான பிளேயர் தானாகவே விளையாடுவதில்லை +• பதிவிறக்கங்களை நீக்கும் போது முந்தைய ச்நாக்பார்களை நிராகரிக்கவும் +• பட்டியலில் இல்லாத பொருளை நீக்க முயற்சிப்பது சரி செய்யப்பட்டது diff --git a/fastlane/metadata/android/ta/changelogs/970.txt b/fastlane/metadata/android/ta/changelogs/970.txt index 6db5c6810..c3b3e4147 100644 --- a/fastlane/metadata/android/ta/changelogs/970.txt +++ b/fastlane/metadata/android/ta/changelogs/970.txt @@ -1,11 +1,11 @@ -புதியது - Met உள்ளடக்க மெட்டாடேட்டாவைக் காண்பி (குறிச்சொற்கள், வகைகள், உரிமம், ...) விளக்கத்திற்கு கீழே - (தொலைநிலை (உள்ளூர் அல்லாத) பிளேலிச்ட்களில் "சேனல் விவரங்களைக் காட்டு" விருப்பத்தை சேர்த்தது - Lang நீண்ட அழுத்த பட்டியலில் "உலாவியில் திறக்கவும்" விருப்பத்தை சேர்க்கவும் +புதியது +• விளக்கத்திற்குக் கீழே உள்ளடக்க மெட்டாடேட்டாவை (குறிச்சொற்கள், வகைகள், உரிமம், ...) காட்டு +• ரிமோட் (உள்ளூர் அல்லாத) பிளேலிச்ட்களில் "சேனல் விவரங்களைக் காட்டு" விருப்பம் சேர்க்கப்பட்டது +• பட்டியலில் "உலாவியில் திற" விருப்பம் சேர்க்கப்பட்டது - சரி - ஒளிதோற்றம் வீடியோ விவரம் பக்கத்தில் நிலையான சுழற்சி செயலிழப்பு - • நிலையான "கோடி உடன் விளையாடுங்கள்" பொத்தானை பிளேயரில் எப்போதும் கோரை நிறுவத் தூண்டுகிறது - • நிலையான மற்றும் மேம்படுத்தப்பட்ட அமைப்பு இறக்குமதி மற்றும் ஏற்றுமதி பாதைகள் - • [YouTube] எண்ணிக்கை போன்ற நிலையான கருத்து - மேலும் பல +சரி செய்யப்பட்டது +• வீடியோ விவரம் பக்கத்தில் நிலையான சுழற்சி செயலிழப்பு +• பிளேயரில் நிலையான "கோடியுடன் விளையாடு" பொத்தான் எப்போதும் கோரை நிறுவும்படி கேட்கும் +• நிலையான மற்றும் மேம்படுத்தப்பட்ட அமைப்பு இறக்குமதி மற்றும் ஏற்றுமதி பாதைகள் +• [YouTube] எண்ணிக்கை போன்ற நிலையான கருத்து +மேலும் பல diff --git a/fastlane/metadata/android/ta/changelogs/972.txt b/fastlane/metadata/android/ta/changelogs/972.txt index e89986f6a..30f6ef86f 100644 --- a/fastlane/metadata/android/ta/changelogs/972.txt +++ b/fastlane/metadata/android/ta/changelogs/972.txt @@ -1,14 +1,14 @@ -புதியது - நேர முத்திரைகள் மற்றும் ஏச்டேக்குகளை விளக்கத்தில் அங்கீகரிக்கவும் - கையேடு டேப்லெட் பயன்முறை அமைப்பு சேர்க்கப்பட்டது - ஒரு ஊட்டத்தில் விளையாடிய பொருட்களை மறைக்கும் திறன் சேர்க்கப்பட்டது +புதியது +விளக்கத்தில் நேர முத்திரைகள் மற்றும் ஏச்டேக்குகளை அங்கீகரிக்கவும் +கைமுறை டேப்லெட் பயன்முறை அமைப்பு சேர்க்கப்பட்டது +விளையாடிய பொருட்களை ஊட்டத்தில் மறைக்கும் திறன் சேர்க்கப்பட்டது - மேம்படுத்தப்பட்டது - சேமிப்பக அணுகல் கட்டமைப்பை சரியாக ஆதரிக்கவும் - கிடைக்காத மற்றும் நிறுத்தப்பட்ட சேனல்களின் சிறந்த பிழை - ஆண்ட்ராய்டு 10+ பயனர்களுக்கான ஆண்ட்ராய்டு பகிர்வு தாள் இப்போது உள்ளடக்க தலைப்பைக் காட்டுகிறது. - புதுப்பிக்கப்பட்ட நிகழ்வுகள் மற்றும் குழாய் இணைப்புகளை ஆதரிக்கின்றன. +மேம்படுத்தப்பட்டது +சேமிப்பக அணுகல் கட்டமைப்பை சரியாக ஆதரிக்கவும் +கிடைக்காத மற்றும் நிறுத்தப்பட்ட சேனல்களின் சிறந்த பிழை கையாளுதல் +Android 10+ பயனர்களுக்கான ஆண்ட்ராய்டு பகிர்வுத் தாள் இப்போது உள்ளடக்கத் தலைப்பைக் காட்டுகிறது. +இன்வைடியச் நிகழ்வுகள் மற்றும் உதவி பைப் இணைப்புகள் புதுப்பிக்கப்பட்டன. - சரி - [YouTube] அகவை தடைசெய்யப்பட்ட உள்ளடக்கம் - தேர்வு உரையாடலைத் திறக்கும்போது கசிந்த சாளர விதிவிலக்கைத் தடுக்கவும் +சரி செய்யப்பட்டது +[YouTube] அகவை வரம்பிடப்பட்ட உள்ளடக்கம் +தேர்வு உரையாடலைத் திறக்கும்போது கசிந்த சாளர விதிவிலக்கைத் தடுக்கவும் diff --git a/fastlane/metadata/android/ta/changelogs/975.txt b/fastlane/metadata/android/ta/changelogs/975.txt index 30cef4965..fa19c8dbc 100644 --- a/fastlane/metadata/android/ta/changelogs/975.txt +++ b/fastlane/metadata/android/ta/changelogs/975.txt @@ -1,17 +1,17 @@ -புதியது - Sting தேடும் போது சிறு முன்னோட்டத்தைக் காட்டு - Abable ஊனமுற்ற கருத்துகளைக் கண்டறிதல் - தீவனம் பார்த்தபடி தீவன உருப்படியைக் குறிக்க அனுமதிக்கவும் - The கருத்து இதயங்களைக் காட்டு +புதியது +• தேடும் போது சிறுபட மாதிரிக்காட்சியைக் காட்டு +• முடக்கப்பட்ட கருத்துகளைக் கண்டறியவும் +• ஊட்டப் பொருளைப் பார்த்ததாகக் குறிக்க அனுமதிக்கவும் +• கருத்து இதயங்களைக் காட்டு - மேம்படுத்தப்பட்டது - Met மேனிலை தரவு மற்றும் குறிச்சொற்கள் தளவமைப்பை மேம்படுத்தவும் - உ இடைமுகம் கூறுகளுக்கு பணி வண்ணத்தைப் பயன்படுத்துங்கள் +மேம்படுத்தப்பட்டது +• மேனிலை தரவு மற்றும் குறிச்சொற்களின் தளவமைப்பை மேம்படுத்தவும் +• இடைமுகம் கூறுகளுக்கு பணி வண்ணத்தைப் பயன்படுத்துங்கள் - சரி - Min மினி பிளேயரில் சிறு உருவத்தை சரிசெய்யவும் - The நகல் வரிசை உருப்படிகளில் முடிவற்ற இடையகத்தை சரிசெய்யவும் - Player சில பிளேயர் சுழற்சி மற்றும் வேகமாக மூடுவது போன்ற திருத்தங்கள் - • பின்னணியில் ஏற்றப்பட்ட மீதமுள்ள ரெக்காப்ட்சாவை சரிசெய்யவும் - தீவனம் ஊட்டத்தை புதுப்பிக்கும்போது கிளிக்குகளை முடக்கு - பதிவிறக்கம் சில பதிவிறக்க செயலிழப்புகளை சரிசெய்யவும் +சரி செய்யப்பட்டது +• மினி பிளேயரில் சிறுபடத்தை சரிசெய்யவும் +• நகல் வரிசை உருப்படிகளில் முடிவற்ற இடையகத்தை சரிசெய்யவும் +• சுழற்சி மற்றும் வேகமாக மூடுவது போன்ற சில பிளேயர் திருத்தங்கள் +• பின்னணியில் மீதமுள்ள ReCAPTCHA ஐ சரிசெய்யவும் +• ஊட்டத்தைப் புதுப்பிக்கும்போது கிளிக்குகளை முடக்கவும் +• சில டவுன்லோடர் செயலிழப்புகளை சரிசெய்யவும் diff --git a/fastlane/metadata/android/ta/changelogs/976.txt b/fastlane/metadata/android/ta/changelogs/976.txt index fa27c4036..d6644fea8 100644 --- a/fastlane/metadata/android/ta/changelogs/976.txt +++ b/fastlane/metadata/android/ta/changelogs/976.txt @@ -1,10 +1,10 @@ -Full முழு திரையில் நேரடியாக பிளேயரைத் திறக்க விருப்பம் சேர்க்கப்பட்டது - தேடல் எந்த வகையான தேடல் பரிந்துரைகளைக் காட்ட வேண்டும் என்பதைத் தேர்ந்தெடுக்க அனுமதிக்கவும் - • இருண்ட கருப்பொருள் இப்போது இருண்ட + இருண்ட ச்பிளாச் திரை சேர்க்கப்பட்டது - Un தேவையற்ற கோப்புகளை சாம்பல் நிறமாக்குவதற்கு மேம்படுத்தப்பட்ட கோப்பு பிக்கர் - You நிலையான இறக்குமதி YouTube சந்தாக்கள் - • ச்ட்ரீம் மீண்டும் இயக்க மீண்டும் மறுதொடக்கம் பொத்தானைத் தட்டவும் தேவைப்படுகிறது - Auldion நிலையான இறுதி ஆடியோ அமர்வு - • [Android TV] DPAD ஐப் பயன்படுத்தும் போது நிலையான நீண்ட சீக்பார் தாவல்கள் +• பிளேயரை முழுத்திரையில் நேரடியாகத் திறக்க விருப்பம் சேர்க்கப்பட்டது +• எந்த வகையான தேடல் பரிந்துரைகளைக் காட்ட வேண்டும் என்பதைத் தேர்ந்தெடுக்க அனுமதிக்கவும் +• டார்க் கருப்பொருள் இப்போது டார்க் + டார்க் ச்பிளாச் திரை சேர்க்கப்பட்டது +• தேவையற்ற கோப்புகளை சாம்பல் நிறமாக்க மேம்படுத்தப்பட்ட கோப்பு தேர்வி +• YouTube சந்தாக்களை இறக்குமதி செய்வது சரி செய்யப்பட்டது +• ச்ட்ரீமை மீண்டும் இயக்க, ரீப்ளே பட்டனை மீண்டும் தட்ட வேண்டும் +• நிலையான நிறைவு ஆடியோ அமர்வு +• [Android TV] DPad ஐப் பயன்படுத்தும் போது நிலையான நீண்ட சீக்பார் சம்ப்கள் - மேலும் மாற்றங்களைக் காண, கீழேயுள்ள இணைப்புகள் தாவலில் இருந்து சேஞ்ச்லாக் (மற்றும் வலைப்பதிவு இடுகை) காண்க. +மேலும் மாற்றங்களைப் பார்க்க, கீழே உள்ள இணைப்புகள் தாவலில் இருந்து சேஞ்ச்லாக் (மற்றும் வலைப்பதிவு இடுகை) பார்க்கவும். diff --git a/fastlane/metadata/android/ta/changelogs/977.txt b/fastlane/metadata/android/ta/changelogs/977.txt index 9c4aba10f..3cc1a7873 100644 --- a/fastlane/metadata/android/ta/changelogs/977.txt +++ b/fastlane/metadata/android/ta/changelogs/977.txt @@ -1,10 +1,10 @@ -Press நீண்ட அழுத்த பட்டியலில் "அடுத்து விளையாடுங்கள்" பொத்தானைச் சேர்த்துள்ளார் - You நோக்கம் வடிப்பானில் யூடியூப் சார்ட்ச் பாதை முன்னொட்டு சேர்க்கப்பட்டது - • நிலையான அமைப்புகள் இறக்குமதி - The வரிசை திரையில் பிளேயர் பொத்தான்களுடன் ச்வாப் சீக்பார் நிலையை மாற்றவும் - Metiase மீடியாசெசன் மேனேசர் தொடர்பான பல்வேறு திருத்தங்கள் - Videed வீடியோ முடிவுக்குப் பிறகு நிலையான சீக்பார் முடிக்கப்படவில்லை - Re ரியல் டெக்டிவியில் மீடியா சுரங்கப்பாதை - • விரிவாக்கப்பட்ட குறைக்கப்பட்ட பிளேயர் பொத்தான்கள் சொடுக்கு செய்யக்கூடிய பகுதி +• நீண்ட அழுத்த பட்டியலில் "அடுத்து விளையாடு" பொத்தான் சேர்க்கப்பட்டது +• யூடியூப் சார்ட்ச் பாதை முன்னொட்டு இன்டென்ட் ஃபில்டரில் சேர்க்கப்பட்டது +• நிலையான அமைப்புகள் இறக்குமதி +• வரிசை திரையில் பிளேயர் பட்டன்களுடன் சீக்பார் நிலையை மாற்றவும் +• MediasessionManager தொடர்பான பல்வேறு திருத்தங்கள் +• வீடியோ முடிந்த பிறகு நிலையான சீக்பார் முடிக்கப்படவில்லை +• RealtekATV இல் முடக்கப்பட்ட மீடியா டன்னலிங் +• விரிவாக்கப்பட்ட குறைக்கப்பட்ட பிளேயர் பொத்தான்கள் சொடுக்கு செய்யக்கூடிய பகுதி - மேலும் மாற்றங்களைக் காண, கீழேயுள்ள இணைப்புகள் தாவலில் இருந்து சேஞ்ச்லாக் (மற்றும் வலைப்பதிவு இடுகை) காண்க. +மேலும் மாற்றங்களைப் பார்க்க, கீழே உள்ள இணைப்புகள் தாவலில் இருந்து சேஞ்ச்லாக் (மற்றும் வலைப்பதிவு இடுகை) பார்க்கவும். diff --git a/fastlane/metadata/android/ta/changelogs/980.txt b/fastlane/metadata/android/ta/changelogs/980.txt index 3c5d38647..482d345f4 100644 --- a/fastlane/metadata/android/ta/changelogs/980.txt +++ b/fastlane/metadata/android/ta/changelogs/980.txt @@ -1,13 +1,13 @@ -புதியது - Men மெனுவைப் பகிர "பிளேலிச்ட்டில் சேர்" விருப்பத்தை சேர்க்கப்பட்டது - 2 Y2U.BE மற்றும் PEERTUBE குறுகிய இணைப்புகளுக்கான உதவி சேர்க்கப்பட்டது +புதியது +• மெனுவைப் பகிர "பிளேலிச்ட்டில் சேர்" விருப்பம் சேர்க்கப்பட்டது +• y2u.be மற்றும் PeerTube குறுகிய இணைப்புகளுக்கான உதவி சேர்க்கப்பட்டது - மேம்படுத்தப்பட்டது - Flaple பிளேபேக்-ச்பீட்-கட்டுப்பாடுகள் மிகவும் கச்சிதமானவை - • ஃபீட் இப்போது புதிய உருப்படிகளை எடுத்துக்காட்டுகிறது - • "பார்த்த உருப்படிகளைக் காட்டு" விருப்பம் இப்போது சேமிக்கப்படுகிறது +மேம்படுத்தப்பட்டது +• பிளேபேக்-வேக-கட்டுப்பாடுகள் மிகவும் கச்சிதமானவை +• தீவனம் இப்போது புதிய உருப்படிகளை முன்னிலைப்படுத்துகிறது +• ஊட்டத்தில் "பார்த்த பொருட்களைக் காட்டு" விருப்பம் இப்போது சேமிக்கப்பட்டது - சரி - You நிலையான YouTube லைக்குகள் மற்றும் பிரித்தெடுத்தல் ஆகியவற்றை விரும்புகிறது - The பின்னணியில் இருந்து திரும்பிய பிறகு நிலையான தானியங்கி மறுபதிப்பு - மேலும் பல +சரி செய்யப்பட்டது +• நிலையான YouTube விருப்பு வெறுப்புகள் பிரித்தெடுத்தல் +• பின்புலத்தில் இருந்து திரும்பிய பிறகு, தானியங்கி ரீப்ளே சரி செய்யப்பட்டது +மேலும் பல diff --git a/fastlane/metadata/android/ta/changelogs/983.txt b/fastlane/metadata/android/ta/changelogs/983.txt index e60933096..46f1a6e35 100644 --- a/fastlane/metadata/android/ta/changelogs/983.txt +++ b/fastlane/metadata/android/ta/changelogs/983.txt @@ -1,9 +1,9 @@ -புதிய இரட்டை-தட்டு-க்கு-தேடு இடைமுகம் மற்றும் நடத்தை சேர்க்கவும் - அமைப்புகளைத் தேடச் செய்யுங்கள் - பின் செய்யப்பட்ட கருத்துகளை முன்னிலைப்படுத்தவும் - FSFE இன் PEERTUBE நிகழ்வுக்கு திறந்த-பயன்பாட்டுடன் திறந்த நிலையில் சேர்க்கவும் - பிழை அறிவிப்புகளைச் சேர்க்கவும் - பிளேயர் மாற்றத்தில் முதல் வரிசை உருப்படியின் மறுபயன்பாட்டை சரிசெய்யவும் - தோல்வியுற்றதற்கு முன் லைவ்ச்ட்ரீம்களின் போது இடையகப்படுத்தும்போது அதிக நேரம் காத்திருங்கள் - உள்ளக தேடல் முடிவுகளின் வரிசையை சரிசெய்யவும் - விளையாட்டு வரிசையில் வெற்று உருப்படி புலங்களை சரிசெய்யவும் +புதிய இருமுறை தட்டுவதன் மூலம் தேடும் இடைமுகம் மற்றும் நடத்தையைச் சேர்க்கவும் +தேடக்கூடிய அமைப்புகளை உருவாக்கவும் +பின் செய்யப்பட்ட கருத்துகளை முன்னிலைப்படுத்தவும் +FSFE இன் PeerTube நிகழ்விற்கு திறந்த பயன்பாட்டு ஆதரவைச் சேர்க்கவும் +பிழை அறிவிப்புகளைச் சேர்க்கவும் +பிளேயரை மாற்றும்போது முதல் வரிசை உருப்படியை மீண்டும் இயக்குவதை சரிசெய்யவும் +லைவ்ச்ட்ரீம்களின் போது இடையீடு செய்யும் போது, தோல்வியடையும் முன் அதிக நேரம் காத்திருக்கவும் +உள்ளக தேடல் முடிவுகளின் வரிசையை சரிசெய்யவும் +விளையாட்டு வரிசையில் வெற்று உருப்படி புலங்களை சரிசெய்யவும் diff --git a/fastlane/metadata/android/ta/changelogs/984.txt b/fastlane/metadata/android/ta/changelogs/984.txt index f05c88884..86f73d140 100644 --- a/fastlane/metadata/android/ta/changelogs/984.txt +++ b/fastlane/metadata/android/ta/changelogs/984.txt @@ -1,7 +1,7 @@ -முழு திரையையும் நிரப்பவும், டேப்லெட்டுகள் மற்றும் டிவிகளில் ச்க்ரோலிங் சரிசெய்யவும் போதுமான ஆரம்ப உருப்படிகளை பட்டியல்களில் ஏற்றவும் - பட்டியல்கள் மூலம் ச்க்ரோலிங் செய்யும் போது சீரற்ற செயலிழப்புகளை சரிசெய்யவும் - கணினி இடைமுகம் இன் கீழ் பிளேயர் விரைவாக மேலடுக்கு வளைவைத் தேடுங்கள் - மல்டி சாளரத்தில் விளையாடும்போது கட்அவுட்களில் மாற்றங்களை மாற்றவும், சில தொலைபேசிகளில் தவறாக இடம்பிடித்த வீரர் பின்னடைவை ஏற்படுத்துகிறது - CompileSDK ஐ 30 முதல் 31 வரை அதிகரிக்கவும் - பிழை அறிக்கையிடல் நூலகத்தைப் புதுப்பிக்கவும் - பிளேயரில் சில குறியீட்டை மறுபரிசீலனை செய்யுங்கள் +முழுத் திரையையும் நிரப்பவும், டேப்லெட்டுகள் மற்றும் டிவிகளில் ச்க்ரோலிங் செய்வதை சரிசெய்யவும் போதுமான ஆரம்ப உருப்படிகளை பட்டியல்களில் ஏற்றவும் +பட்டியல்கள் மூலம் ச்க்ரோலிங் செய்யும் போது சீரற்ற செயலிழப்புகளை சரிசெய்யவும் +பிளேயர் ஃபாச்ட் சீக் ஓவர்லே ஆர்க் சிச்டம் யுஐயின் கீழ் செல்ல வேண்டும் +மல்டி விண்டோவில் விளையாடும் போது கட்அவுட்களுக்கு மாற்றங்களை மாற்றவும், இதனால் சில ஃபோன்களில் பிளேயரின் தவறான பின்னடைவு ஏற்படுகிறது +compileSdk ஐ 30 இலிருந்து 31 ஆக அதிகரிக்கவும் +பிழை அறிக்கையிடல் நூலகத்தைப் புதுப்பிக்கவும் +பிளேயரில் சில குறியீட்டை மறுவடிவமைக்கவும் diff --git a/fastlane/metadata/android/ta/changelogs/986.txt b/fastlane/metadata/android/ta/changelogs/986.txt index 0ab07442f..8b73c2dfa 100644 --- a/fastlane/metadata/android/ta/changelogs/986.txt +++ b/fastlane/metadata/android/ta/changelogs/986.txt @@ -1,16 +1,16 @@ -புதியது - Streams புதிய ச்ட்ரீம்களுக்கான அறிவிப்புகள் - Procetion பின்னணி மற்றும் வீடியோ பிளேயர்களுக்கு இடையில் தடையற்ற மாற்றம் - சே செமிடோன்களால் சுருதியை மாற்றவும் - Player முக்கிய பிளேயர் வரிசையை பிளேலிச்ட்டில் சேர்க்கவும் +புதியது +• புதிய ச்ட்ரீம்களுக்கான அறிவிப்புகள் +• பின்னணி மற்றும் வீடியோ பிளேயர்களுக்கு இடையே தடையற்ற மாற்றம் +• செமிடோன்கள் மூலம் சுருதியை மாற்றவும் +• பிளேலிச்ட்டில் முதன்மையான பிளேயர் வரிசையைச் சேர்க்கவும் - மேம்படுத்தப்பட்டது - விரைவு வேகம்/சுருதி படி அளவை நினைவில் கொள்ளுங்கள் - ஒளிதோற்றம் வீடியோ பிளேயரில் ஆரம்ப நீண்ட இடையகத்தைத் தணித்தல் - And ஆண்ட்ராய்டு டிவிக்கு பிளேயர் இடைமுகம் ஐ மேம்படுத்தவும் - பதிவிறக்கம் செய்யப்பட்ட அனைத்து கோப்புகளையும் நீக்குவதற்கு முன் உறுதிப்படுத்தவும் +மேம்படுத்தப்பட்டது +• வேகம்/சுருதி படி அளவை நினைவில் கொள்ளுங்கள் +• வீடியோ பிளேயரில் ஆரம்ப நீண்ட இடையகத்தைத் தணிக்கவும் +• ஆண்ட்ராய்டு TVக்கான பிளேயர் UIஐ மேம்படுத்தவும் +• பதிவிறக்கம் செய்யப்பட்ட அனைத்து கோப்புகளையும் நீக்கும் முன் உறுதிப்படுத்தவும் - சரி - ஊடகம் மீடியா பொத்தானை சரிசெய்யவும் பிளேயர் கட்டுப்பாடுகளை மறைக்கவில்லை - Player பிளேயர் வகை மாற்றத்தில் பிளேபேக் மீட்டமைப்பை சரிசெய்யவும் - Plale பிளேலிச்ட் உரையாடலை சுழற்றுவதை சரிசெய்யவும் +சரி செய்யப்பட்டது +• பிளேயர் கட்டுப்பாடுகளை மறைக்காத மீடியா பொத்தான்களை சரிசெய்யவும் +• பிளேயரின் வகை மாற்றத்தில் பிளேபேக் மீட்டமைப்பை சரிசெய்யவும் +• பிளேலிச்ட் உரையாடலைச் சுழற்றுவதைச் சரிசெய்யவும் diff --git a/fastlane/metadata/android/ta/changelogs/987.txt b/fastlane/metadata/android/ta/changelogs/987.txt index bad021dc2..9506125e3 100644 --- a/fastlane/metadata/android/ta/changelogs/987.txt +++ b/fastlane/metadata/android/ta/changelogs/987.txt @@ -1,12 +1,12 @@ -புதியது - Provelive முற்போக்கான HTTP ஐத் தவிர வேறு உதவி விநியோக முறைகள்: வேகமான பின்னணி ஏற்றுதல் நேரம், PEERTUBE மற்றும் SoundCloud க்கான திருத்தங்கள், அண்மைக் காலத்தில் முடிவடைந்த யூடியூப் லைவ்ச்ட்ரீம்களின் பின்னணி - ரிமோட் பிளேலிச்ட்டை உள்ளக ஒன்றில் சேர்க்க பொத்தானைச் சேர்க்கவும் - And ஆண்ட்ராய்டு 10+ பகிர்வு தாளில் பட முன்னோட்டம் +புதியது +• முற்போக்கான HTTPயைத் தவிர வேறு டெலிவரி முறைகள்: வேகமான பிளேபேக் ஏற்றுதல் நேரம், PeerTube மற்றும் SoundCloudக்கான திருத்தங்கள், அண்மைக் காலத்தில் முடிவடைந்த YouTube லைவ்ச்ட்ரீம்களின் பிளேபேக் +• உள்ளக ஒன்றில் ரிமோட் பிளேலிச்ட்டைச் சேர்க்க பொத்தானைச் சேர்க்கவும் +• ஆண்ட்ராய்டு 10+ பகிர்வு தாளில் பட முன்னோட்டம் - மேம்படுத்தப்பட்டது - Flaple பிளேபேக் அளவுருக்கள் உரையாடலை மேம்படுத்தவும் - The சந்தா இறக்குமதி/ஏற்றுமதி பொத்தான்களை மூன்று-டாட் மெனுவுக்கு நகர்த்தவும் +மேம்படுத்தப்பட்டது +• பிளேபேக் அளவுருக்கள் உரையாடலை மேம்படுத்தவும் +• சந்தா இறக்குமதி/ஏற்றுமதி பொத்தான்களை மூன்று-புள்ளி மெனுவிற்கு நகர்த்தவும் - சரி - Plale பிளேலிச்ட்டில் இருந்து முழுமையாகப் பார்த்த வீடியோக்களை அகற்றுவதை சரிசெய்யவும் - இடை, சராசரி பகிர்வு பட்டியல் கருப்பொருள் மற்றும் "பிளேலிச்ட்டில் சேர்" உள்ளீட்டை சரிசெய்யவும் +சரி செய்யப்பட்டது +• பிளேலிச்ட்டில் இருந்து முழுமையாகப் பார்த்த வீடியோக்களை அகற்றுவதைச் சரிசெய்யவும் +• பகிர்வு பட்டியல் கருப்பொருள் மற்றும் "பிளேலிச்ட்டில் சேர்" உள்ளீட்டைச் சரிசெய்தல் diff --git a/fastlane/metadata/android/ta/changelogs/990.txt b/fastlane/metadata/android/ta/changelogs/990.txt index 089a2717d..52c6bd0e8 100644 --- a/fastlane/metadata/android/ta/changelogs/990.txt +++ b/fastlane/metadata/android/ta/changelogs/990.txt @@ -1,15 +1,15 @@ -இந்த வெளியீடு ஆண்ட்ராய்டு 4.4 KITKAT க்கான ஆதரவைக் குறைக்கிறது, இப்போது குறைந்தபட்ச பதிப்பு ஆண்ட்ராய்டு 5 Lollipop! +இந்த வெளியீடு ஆண்ட்ராய்டு 4.4 KitKat க்கான ஆதரவைக் குறைக்கிறது, இப்போது குறைந்தபட்ச பதிப்பு ஆண்ட்ராய்டு 5 Lollipop! - புதியது - Long நீண்ட அழுத்த மெனுவிலிருந்து பதிவிறக்கவும் - Voor எதிர்கால வீடியோக்களை தீவனத்தில் மறைக்கவும் - Lal உள்ளக பிளேலிச்ட்களைப் பகிரவும் +புதியது +• நீண்ட அழுத்த மெனுவிலிருந்து பதிவிறக்கவும் +• எதிர்கால வீடியோக்களை ஊட்டத்தில் மறைக்கவும் +• உள்ளக பிளேலிச்ட்களைப் பகிரவும் - மேம்படுத்தப்பட்டது - Play பிளேயர் குறியீட்டை சிறிய கூறுகளாக மாற்றியமைத்தல்: குறைவான ரேம் பயன்படுத்தப்பட்டது, குறைவான பிழைகள் - Prum சிறுபடங்களின் அளவிலான பயன்முறையை மேம்படுத்தவும் - • வெக்டர்-ஐச் பட ஒதுக்கிடங்கள் +மேம்படுத்தப்பட்டது +• பிளேயர் குறியீட்டை சிறிய கூறுகளாக மாற்றவும்: குறைவான ரேம் பயன்படுத்தப்பட்டது, குறைவான பிழைகள் +• சிறுபடங்களின் அளவு பயன்முறையை மேம்படுத்தவும் +• வெக்டார்-ஐச் பட பிளேச்ஓல்டர்கள் - சரி - Player பிளேயர் அறிவிப்புடன் பல்வேறு சிக்கல்களை சரிசெய்யவும்: காலாவதியான/காணாமல் போன ஊடகத் செய்தி, சிதைந்த சிறுபடம் - 1/4 திரையைப் பயன்படுத்தி முழுத்திரை சரிசெய்யவும் +சரி செய்யப்பட்டது +• பிளேயர் அறிவிப்பில் உள்ள பல்வேறு சிக்கல்களைச் சரிசெய்யவும்: காலாவதியான/காணாமல் போன மீடியா செய்தி, சிதைந்த சிறுபடம் +• 1/4 திரையைப் பயன்படுத்தி முழுத்திரையை சரிசெய்யவும் diff --git a/fastlane/metadata/android/ta/changelogs/991.txt b/fastlane/metadata/android/ta/changelogs/991.txt index bab6d806e..6e4a24723 100644 --- a/fastlane/metadata/android/ta/changelogs/991.txt +++ b/fastlane/metadata/android/ta/changelogs/991.txt @@ -1,13 +1,13 @@ -புதியது - Banel பிழை பேனலில் "உலாவியில் திறக்க" பொத்தானைச் சேர்க்கவும் - Carges சேனல் குழுக்களை பட்டியலாகக் காண்பிக்க விருப்பத்தைச் சேர்க்கவும் - Time [YouTube] நேர முத்திரை முகவரி ஐப் பகிர்ந்து கொள்ள ச்ட்ரீம் பிரிவுகளில் நீண்ட சொடுக்கு செய்யவும் - Min மினி பிளேயரில் பிளே வரிசை பொத்தானைச் சேர்க்கவும் +புதியது +• பிழை பேனலில் "உலாவியில் திற" பொத்தானைச் சேர்க்கவும் +• சேனல் குழுக்களை பட்டியலாகக் காண்பிக்க விருப்பத்தைச் சேர்க்கவும் +• [YouTube] நேர முத்திரை URLஐப் பகிர, ச்ட்ரீம் பிரிவுகளில் நீண்ட சொடுக்கு செய்யவும் +• மினி பிளேயரில் பிளே வரிசை பொத்தானைச் சேர்க்கவும் - மேம்படுத்தப்பட்டது - Ic ஐச்லாந்திய உள்ளூர்மயமாக்கலைச் சேர்த்து, பல மொழிபெயர்ப்புகளைப் புதுப்பித்தது - • பல உள் மேம்பாடுகள் +மேம்படுத்தப்பட்டது +• ஐச்லாண்டிக் உள்ளூர்மயமாக்கலைச் சேர்க்கவும் மற்றும் பல பிற மொழிபெயர்ப்புகளைப் புதுப்பிக்கவும் +• பல உள் மேம்பாடுகள் - சரி - The பல விபத்துக்களை சரிசெய்யவும் - • [YouTube] சில நாடுகளில் சேனல்கள், அர்ப்பணிப்பு அல்லாத தீவனம் மற்றும் பணித்தொகுப்பு பின்னணி சிக்கல்களை சரிசெய்யவும் +சரி செய்யப்பட்டது +• பல செயலிழப்புகளைச் சரிசெய்யவும் +• [YouTube] சில நாடுகளில் ஏற்றப்படும் சேனல்கள், பிரத்யேகமற்ற ஊட்டம் மற்றும் தீர்விற்கான பின்னணி சிக்கல்களை சரிசெய்யவும் diff --git a/fastlane/metadata/android/ta/changelogs/992.txt b/fastlane/metadata/android/ta/changelogs/992.txt index 482d4bcf5..d2c02d1d3 100644 --- a/fastlane/metadata/android/ta/changelogs/992.txt +++ b/fastlane/metadata/android/ta/changelogs/992.txt @@ -1,17 +1,17 @@ -புதியது - ஒளிதோற்றம் வீடியோ விவரங்களில் சந்தாதாரர் எண்ணிக்கை - The வரிசையிலிருந்து பதிவிறக்கவும் - • நிரந்தரமாக ஒரு பிளேலிச்ட் சிறுபடத்தை அமைக்கவும் - • நீண்ட அழுத்த ஏச்டேக்குகள் மற்றும் இணைப்புகள் - பார்வை அட்டை பார்வை பயன்முறை +புதியது +• வீடியோ விவரங்களில் சந்தாதாரர் எண்ணிக்கை +• வரிசையில் இருந்து பதிவிறக்கவும் +• பிளேலிச்ட் சிறுபடத்தை நிரந்தரமாக அமைக்கவும் +• ஏச்டேக்குகள் மற்றும் இணைப்புகளை நீண்ட நேரம் அழுத்தவும் +• அட்டை பார்வை முறை - மேம்படுத்தப்பட்டது - Ming பெரிய மினி-பிளேயர் மூடு பொத்தான் - • மென்மையான சிறுபடம் கீழ்நோக்கி - And இலக்கு ஆண்ட்ராய்டு 13 (API 33) - • தேடுவது இனி வீரரை இடைநிறுத்தாது +மேம்படுத்தப்பட்டது +• பெரிய மினி பிளேயர் மூடும் பொத்தான் +• மென்மையான சிறுபடம் குறைத்தல் +• இலக்கு ஆண்ட்ராய்டு 13 (API 33) +• தேடுவது இனி வீரர் இடைநிறுத்தப்படாது - சரி - Tex டெக்ச்/மவுசில் மேலடுக்கை சரிசெய்யவும் - Adio தனி ஆடியோ ச்ட்ரீம்கள் இல்லாத பின்னணி பிளேயரை அனுமதிக்கவும் - You பல்வேறு யூடியூப் திருத்தங்கள் மற்றும் பல… +சரி செய்யப்பட்டது +• DeX/mouse மீது மேலடுக்கை சரிசெய்யவும் +• தனி ஆடியோ ச்ட்ரீம்கள் இல்லாமல் பின்னணி பிளேயரை அனுமதிக்கவும் +• பல்வேறு YouTube திருத்தங்கள் மற்றும் பல… diff --git a/fastlane/metadata/android/ta/changelogs/993.txt b/fastlane/metadata/android/ta/changelogs/993.txt index cafc30ad1..165d547c8 100644 --- a/fastlane/metadata/android/ta/changelogs/993.txt +++ b/fastlane/metadata/android/ta/changelogs/993.txt @@ -1,12 +1,12 @@ -புதியது - Play பிளேலிச்ட் நகல்களைச் சேர்க்கும்போது எச்சரிக்கையைச் சேர்க்கவும், அவற்றை அகற்ற பொத்தானைச் சேர்க்கவும் - Ward வன்பொருள் பொத்தான்களை புறக்கணிக்க அனுமதிக்கவும் - Fient ஓரளவு பார்த்த வீடியோக்களை தீவனத்தில் மறைக்க அனுமதிக்கவும் +புதியது +• பிளேலிச்ட் நகல்களைச் சேர்க்கும்போது எச்சரிக்கையைச் சேர்க்கவும், அவற்றை அகற்ற பொத்தானைச் சேர்க்கவும் +• வன்பொருள் பொத்தான்களைப் புறக்கணிப்பதை அனுமதிக்கவும் +• ஊட்டத்தில் ஓரளவு பார்த்த வீடியோக்களை மறைக்க அனுமதிக்கவும் - மேம்படுத்தப்பட்டது - Scree பெரிய திரைகளில் மேலும் கட்டம் நெடுவரிசைகளைப் பயன்படுத்தவும் - Sigsters அமைப்புகளுடன் முன்னேற்ற குறிகாட்டிகளை ஒத்துப்போகச் செய்யுங்கள் +மேம்படுத்தப்பட்டது +• பெரிய திரைகளில் அதிக கட்ட நெடுவரிசைகளைப் பயன்படுத்தவும் +• முன்னேற்றக் குறிகாட்டிகளை அமைப்புகளுடன் ஒத்துப்போகச் செய்யவும் - சரி - ஆண்ட்ராய்டு ஆண்ட்ராய்டு 11+ இல் உலாவி முகவரி கள், பதிவிறக்கங்கள் மற்றும் வெளிப்புற பிளேயர்களைத் திறப்பதை சரிசெய்யவும் - Mi மியுய் மீது இரண்டு தட்டுகள் தேவைப்படும் முழுத்திரை மூலம் தொடர்புகொள்வதை சரிசெய்யவும் +சரி செய்யப்பட்டது +• ஆண்ட்ராய்டு 11+ இல் திறக்கும் உலாவி URLகள், பதிவிறக்கங்கள் மற்றும் வெளிப்புற பிளேயர்களைச் சரிசெய்யவும் +• MIUI இல் இரண்டு தட்டுகள் தேவைப்படும் முழுத்திரையுடன் தொடர்புகொள்வதை சரிசெய்யவும் diff --git a/fastlane/metadata/android/ta/changelogs/994.txt b/fastlane/metadata/android/ta/changelogs/994.txt index b68d3db85..4c4930ffc 100644 --- a/fastlane/metadata/android/ta/changelogs/994.txt +++ b/fastlane/metadata/android/ta/changelogs/994.txt @@ -1,15 +1,15 @@ -புதியது - Adio பல ஆடியோ தடங்கள்/மொழிகளை ஆதரிக்கவும் - The திரையின் எந்த பக்கத்திலும் தொகுதி மற்றும் ஒளி சைகைகளை அமைப்பதை அனுமதிக்கவும் - The திரையின் அடிப்பகுதியில் முதன்மையான பாடல்களைக் காண்பிப்பதற்கான ஆதரவு +புதியது +• பல ஆடியோ டிராக்குகள்/மொழிகளை ஆதரிக்கவும் +• திரையின் எந்தப் பக்கத்திலும் ஒலியளவு மற்றும் பிரகாச சைகைகளை அமைக்க அனுமதிக்கவும் +• திரையின் அடிப்பகுதியில் முதன்மையான தாவல்களைக் காண்பிப்பதற்கான உதவி - மேம்படுத்தப்பட்டது - • [பேண்ட்கேம்ப்] ஊதியச் சுவருக்குப் பின்னால் தடங்களைக் கையாளவும் +மேம்படுத்தப்பட்டது +• [பேண்ட்கேம்ப்] பே சுவரின் பின்னால் டிராக்குகளைக் கையாளவும் - சரி - • [YouTube] ச்ட்ரீம்களுக்கான 403 HTTP பிழைகள் - Play பிளேலிச்ட் பார்வையில் இருந்து முதன்மையான பிளேயருக்கு மாறும்போது கருப்பு பிளேயர் - பணி பிளேயர் பணி நினைவக கசிவு - • [PEERTUBE] பதிவேற்றியவர் மற்றும் துணைப்பிரிவு அவதாரங்கள் மாற்றப்பட்டன +சரி செய்யப்பட்டது +• [YouTube] ச்ட்ரீம்களுக்கான 403 HTTP பிழைகள் +• பிளேலிச்ட் பார்வையில் இருந்து மெயின் பிளேயருக்கு மாறும்போது பிளாக் பிளேயர் +• பிளேயர் பணி நினைவகம் கசிவு +• [PeerTube] பதிவேற்றி மற்றும் துணை சேனல் அவதாரங்கள் மாற்றப்பட்டன - மேலும் +மேலும் diff --git a/fastlane/metadata/android/ta/changelogs/995.txt b/fastlane/metadata/android/ta/changelogs/995.txt index 321e11440..587a75c59 100644 --- a/fastlane/metadata/android/ta/changelogs/995.txt +++ b/fastlane/metadata/android/ta/changelogs/995.txt @@ -1,16 +1,16 @@ -புதியது - வாய்க்கால் சேனல் தாவல்களை ஆதரிக்கவும் - • படத் தரத்தைத் தேர்ந்தெடுக்கவும் - அனைத்தும் அனைத்து படங்களுக்கும் முகவரி களைப் பெறுங்கள் +புதியது +• உதவி சேனல் தாவல்கள் +• படத்தின் தரத்தைத் தேர்ந்தெடுக்கவும் +• அனைத்து படங்களுக்கும் URLகளைப் பெறுங்கள் - மேம்படுத்தப்பட்டது - Player பிளேயர் இடைமுகங்களின் அணுகல் - ஒளிதோற்றம் வீடியோ-மட்டும் பதிவிறக்கங்களுக்கான சிறந்த ஆடியோ தேர்வு - Play பிளேலிச்ட் மற்றும் வீடியோ பெயர்களை பகிரப்பட்ட பிளேலிச்ட் உள்ளடக்கத்தில் சேர்க்க விருப்பம் +மேம்படுத்தப்பட்டது +• பிளேயர் இடைமுகங்களின் அணுகல் +• வீடியோ மட்டும் பதிவிறக்கம் செய்ய சிறந்த ஆடியோ தேர்வு +• பகிரப்பட்ட பிளேலிச்ட் உள்ளடக்கத்தில் பிளேலிச்ட் மற்றும் வீடியோ பெயர்களைச் சேர்ப்பதற்கான விருப்பம் - சரி - • [YouTube] எண்ணிக்கை போல - Pop பாப்அப்கள் மற்றும் செயலிழப்புகளுக்கு பதிலளிக்காத பிளேயரை சரிசெய்யவும் - Pill மொழி பிக்கரில் தவறான மொழிகளைத் தேர்ந்தெடுப்பது - • பிளேயர் ஆடியோ கவனம் ஊமையை மதிக்கவில்லை - • பிளேலிச்ட் உருப்படி கூடுதலாக எப்போதாவது வேலை செய்யவில்லை +சரி செய்யப்பட்டது +• [YouTube] லைக் எண்ணிக்கையை சரிசெய்தல் +• பாப்அப்கள் மற்றும் செயலிழப்புகளுக்கு பதிலளிக்காத பிளேயரை சரிசெய்யவும் +• மொழித் தேர்வில் தவறான மொழிகளின் தேர்வு +• பிளேயர் ஆடியோ கவனம் முடக்கத்தை மதிக்கவில்லை +• பிளேலிச்ட் உருப்படி சேர்த்தல் எப்போதாவது வேலை செய்யாது diff --git a/fastlane/metadata/android/ta/changelogs/997.txt b/fastlane/metadata/android/ta/changelogs/997.txt index a85000d84..9ba9cd462 100644 --- a/fastlane/metadata/android/ta/changelogs/997.txt +++ b/fastlane/metadata/android/ta/changelogs/997.txt @@ -1,17 +1,17 @@ -புதியது - கருத்து கருத்து பதில்களைச் சேர்க்கவும் - Blay பிளேலிச்ட்களை மறுவரிசைப்படுத்த அனுமதிக்கவும் - Play பிளேலிச்ட் விளக்கம் மற்றும் கால அளவைக் காட்டு - Settets அமைப்புகளை மீட்டமைக்க அனுமதிக்கவும் +புதியது +• கருத்து பதில்களைச் சேர்க்கவும் +• பிளேலிச்ட்களை மறுவரிசைப்படுத்த அனுமதிக்கவும் +• பிளேலிச்ட் விளக்கம் மற்றும் கால அளவைக் காட்டு +• அமைப்புகளை மீட்டமைக்க அனுமதிக்கவும் - மேம்படுத்தப்பட்டது - • [Android 13+] தனிப்பயன் அறிவிப்பு செயல்களை மீட்டெடுங்கள் - புதுப்பிப்பு புதுப்பிப்பு சோதனைக்கு ஒப்புதல் கோருங்கள் - • பஃபர் செய்யும் போது அறிவிப்பு நாடகம்/இடைநிறுத்தத்தை அனுமதிக்கவும் - Settents சில அமைப்புகளை மறுவரிசைப்படுத்தவும் +மேம்படுத்தப்பட்டது +• [Android 13+] தனிப்பயன் அறிவிப்பு செயல்களை மீட்டெடுக்கவும் +• புதுப்பிப்பு சரிபார்ப்புக்கு ஒப்புதல் கோரவும் +• இடையகத்தின் போது அறிவிப்பை இயக்க/இடைநிறுத்த அனுமதிக்கவும் +• சில அமைப்புகளை மறுவரிசைப்படுத்தவும் - சரி - • [YouTube] கருத்துக்களை ஏற்றாத கருத்துக்கள், மற்றும் பிற திருத்தங்கள் மற்றும் மேம்பாடுகள் - Settrimation அமைப்புகள் இறக்குமதியில் பாதிப்பைத் தீர்க்கவும், சாதொபொகு க்கு மாறவும் - பதிவிறக்கம் பல்வேறு பதிவிறக்க திருத்தங்கள் - தேடல் உரையை ஒழுங்கமைக்கவும் +சரி செய்யப்பட்டது +• [YouTube] கருத்துகள் ஏற்றப்படாமல் இருப்பதை சரிசெய்தல், மேலும் பிற திருத்தங்கள் மற்றும் மேம்பாடுகள் +• அமைப்புகள் இறக்குமதியில் உள்ள பாதிப்பைத் தீர்த்து, JSONக்கு மாறவும் +• பல்வேறு பதிவிறக்க திருத்தங்கள் +• தேடல் உரையை ஒழுங்கமைக்கவும் diff --git a/fastlane/metadata/android/ta/changelogs/999.txt b/fastlane/metadata/android/ta/changelogs/999.txt index ea8e7f6d0..f588170c7 100644 --- a/fastlane/metadata/android/ta/changelogs/999.txt +++ b/fastlane/metadata/android/ta/changelogs/999.txt @@ -1,12 +1,12 @@ -இந்த ஆட்ஃபிக்ச் வெளியீடு YouTube வீடியோக்களின் நடுவில் HTTP 403 பிழைகளை சரிசெய்கிறது. +இந்த ஆட்ஃபிக்ச் வெளியீடு YouTube வீடியோக்களின் நடுவில் HTTP 403 பிழைகளை சரிசெய்கிறது. - புதியது - • [SoundCloud] on.soundcloud.com முகவரி களுக்கு ஆதரவைச் சேர்க்கவும் +புதியது +• [SoundCloud] on.soundcloud.com URLகளுக்கான ஆதரவைச் சேர்க்கவும் - மேம்படுத்தப்பட்டது - • [பேண்ட்கேம்ப்] ரேடியோ கியோச்கில் கூடுதல் தகவலைக் காட்டுங்கள் +மேம்படுத்தப்பட்டது +• [பேண்ட்கேம்ப்] ரேடியோ கியோச்கில் கூடுதல் தகவலைக் காட்டு - சரி - • [YouTube] அவ்வப்போது HTTP 403 பிழைகளை ஆரம்பத்தில் அல்லது வீடியோக்களின் நடுவில் சரிசெய்யவும் - • [YouTube] மேலும் சேனல் தலைப்பு வகைகளிலிருந்து அவதார் மற்றும் பேனரை பிரித்தெடுக்கவும் - • [பேண்ட்கேம்ப்] பல்வேறு பிழைகளை சரிசெய்து எப்போதும் https ஐப் பயன்படுத்துங்கள் +சரி செய்யப்பட்டது +• [YouTube] வீடியோக்களின் தொடக்கத்திலோ அல்லது நடுவிலோ அவ்வப்போது HTTP 403 பிழைகளைச் சரிசெய்யவும் +• [YouTube] அதிக சேனல் தலைப்பு வகைகளிலிருந்து அவதார் மற்றும் பேனரைப் பிரித்தெடுக்கவும் +• [Bandcamp] பல்வேறு பிழைகளை சரிசெய்து எப்போதும் HTTPS ஐப் பயன்படுத்தவும் diff --git a/fastlane/metadata/android/zh-Hans/changelogs/1009.txt b/fastlane/metadata/android/zh-Hans/changelogs/1009.txt new file mode 100644 index 000000000..1d3fc413a --- /dev/null +++ b/fastlane/metadata/android/zh-Hans/changelogs/1009.txt @@ -0,0 +1,14 @@ +新增 +Keep Android Open 运动的重要信息及采取行动的请求:https://www.keepandroidopen.org/ + +改进 +[Feed] 打乱过期订阅更新顺序 +不堆叠评论页 +单击视频详情页时不把单击事件传递到底层视图。 + +修复 +评论回复标题布局没有头像图 +多个播放器相关 UI 修复 +[SoundCloud] 修福长 ID 音频流 + +以及更多修复和改进! From 521f60af8557b602f7f8edf04eebc716aacbc9a5 Mon Sep 17 00:00:00 2001 From: AbsurdlyLongUsername <22662897+absurdlylongusername@users.noreply.github.com> Date: Sat, 7 Mar 2026 19:13:02 +0000 Subject: [PATCH 008/127] Change URL to FAQ --- app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt | 4 ++-- app/src/main/res/values/strings.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt b/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt index 367931435..82f7d84bf 100644 --- a/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt +++ b/app/src/main/java/org/schabi/newpipe/error/ErrorInfo.kt @@ -162,7 +162,7 @@ class ErrorInfo private constructor( const val SERVICE_NONE = "" - const val SIGN_IN_CONFIRM_NOT_BOT_ISSUE_URL = "https://github.com/TeamNewPipe/NewPipe/issues/11139" + const val YOUTUBE_IP_BAN_FAQ_URL = "https://newpipe.net/FAQ/#ip-banned-youtube" private fun getServiceName(serviceId: Int?) = // not using getNameOfServiceById since we want to accept a nullable serviceId and we // want to default to SERVICE_NONE @@ -254,7 +254,7 @@ class ErrorInfo private constructor( ErrorMessage( R.string.sign_in_confirm_not_bot_error, getServiceName(serviceId), - SIGN_IN_CONFIRM_NOT_BOT_ISSUE_URL + YOUTUBE_IP_BAN_FAQ_URL ) throwable is ContentNotAvailableException -> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index e3e15b776..e5e568796 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -878,7 +878,7 @@ HTTP error 403 received from server while playing, likely caused by streaming URL expiration or an IP ban HTTP error %1$s received from server while playing HTTP error 403 received from server while playing, likely caused by an IP ban or streaming URL deobfuscation issues - %1$s refused to provide data, asking for a login to confirm the requester is not a bot.\n\nYour IP might have been temporarily banned by %1$s, you can wait some time or switch to a different IP (for example by turning on/off a VPN, or by switching from WiFi to mobile data).\n\nPlease see Issue 11139 for more information + %1$s refused to provide data, asking for a login to confirm the requester is not a bot.\n\nYour IP might have been temporarily banned by %1$s, you can wait some time or switch to a different IP (for example by turning on/off a VPN, or by switching from WiFi to mobile data).\n\nPlease see the FAQ for more information This content is not available for the currently selected content country.\n\nChange your selection from \"Settings > Content > Default content country\". In August 2025, Google announced that as of September 2026, installing apps will require developer verification for all Android apps on certified devices, including those installed outside of the Play Store. Since the developers of NewPipe do not agree to this requirement, NewPipe will no longer work on certified Android devices after that time. Details From 3b3348e7a1baf377a85a590acb55a05dfa83190b Mon Sep 17 00:00:00 2001 From: AbsurdlyLongUsername <22662897+absurdlylongusername@users.noreply.github.com> Date: Sat, 7 Mar 2026 23:38:51 +0000 Subject: [PATCH 009/127] Change to FAQ entry instead --- app/src/main/res/values/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index e5e568796..b7ad216b3 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -878,7 +878,7 @@ HTTP error 403 received from server while playing, likely caused by streaming URL expiration or an IP ban HTTP error %1$s received from server while playing HTTP error 403 received from server while playing, likely caused by an IP ban or streaming URL deobfuscation issues - %1$s refused to provide data, asking for a login to confirm the requester is not a bot.\n\nYour IP might have been temporarily banned by %1$s, you can wait some time or switch to a different IP (for example by turning on/off a VPN, or by switching from WiFi to mobile data).\n\nPlease see the FAQ for more information + %1$s refused to provide data, asking for a login to confirm the requester is not a bot.\n\nYour IP might have been temporarily banned by %1$s, you can wait some time or switch to a different IP (for example by turning on/off a VPN, or by switching from WiFi to mobile data).\n\nPlease see this FAQ entry for more information This content is not available for the currently selected content country.\n\nChange your selection from \"Settings > Content > Default content country\". In August 2025, Google announced that as of September 2026, installing apps will require developer verification for all Android apps on certified devices, including those installed outside of the Play Store. Since the developers of NewPipe do not agree to this requirement, NewPipe will no longer work on certified Android devices after that time. Details From 47624a575a3c483592bffc41173ac2d4ee8f1f42 Mon Sep 17 00:00:00 2001 From: tobigr Date: Sun, 8 Mar 2026 18:54:56 +0100 Subject: [PATCH 010/127] Complete sentence. --- app/src/main/res/values/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index b7ad216b3..99dd1a74c 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -878,7 +878,7 @@ HTTP error 403 received from server while playing, likely caused by streaming URL expiration or an IP ban HTTP error %1$s received from server while playing HTTP error 403 received from server while playing, likely caused by an IP ban or streaming URL deobfuscation issues - %1$s refused to provide data, asking for a login to confirm the requester is not a bot.\n\nYour IP might have been temporarily banned by %1$s, you can wait some time or switch to a different IP (for example by turning on/off a VPN, or by switching from WiFi to mobile data).\n\nPlease see this FAQ entry for more information + %1$s refused to provide data, asking for a login to confirm the requester is not a bot.\n\nYour IP might have been temporarily banned by %1$s, you can wait some time or switch to a different IP (for example by turning on/off a VPN, or by switching from WiFi to mobile data).\n\nPlease see this FAQ entry for more information. This content is not available for the currently selected content country.\n\nChange your selection from \"Settings > Content > Default content country\". In August 2025, Google announced that as of September 2026, installing apps will require developer verification for all Android apps on certified devices, including those installed outside of the Play Store. Since the developers of NewPipe do not agree to this requirement, NewPipe will no longer work on certified Android devices after that time. Details From d5f941ff3d5f84323cfa8a75dc26c91228ea2177 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Sun, 8 Mar 2026 18:57:35 +0100 Subject: [PATCH 011/127] Translated using Weblate (Vietnamese) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 70.0% (63 of 90 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (765 of 765 strings) Co-authored-by: Hosted Weblate Co-authored-by: Nicolás Pérez Co-authored-by: Quý Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/vi/ Translation: NewPipe/Metadata --- app/src/main/res/values-es/strings.xml | 2 +- .../metadata/android/vi/changelogs/1000.txt | 24 +++++++++---------- .../metadata/android/vi/changelogs/1003.txt | 10 ++++---- .../metadata/android/vi/changelogs/1005.txt | 24 +++++++++---------- .../metadata/android/vi/changelogs/1006.txt | 16 +++++++++++++ .../metadata/android/vi/changelogs/1007.txt | 12 +++++++++- .../metadata/android/vi/changelogs/1008.txt | 4 ++++ .../metadata/android/vi/changelogs/1009.txt | 13 ++++++++++ 8 files changed, 75 insertions(+), 30 deletions(-) create mode 100644 fastlane/metadata/android/vi/changelogs/1006.txt create mode 100644 fastlane/metadata/android/vi/changelogs/1008.txt create mode 100644 fastlane/metadata/android/vi/changelogs/1009.txt diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index c1a0deefe..43d34e91c 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -851,7 +851,7 @@ %sMM Este contenido no está disponible para el país seleccionado actualmente.\n\nCambia tu selección en «Ajustes > Contenido > País predefinido del contenido». Para usar el reproductor emergente, seleccione %1$s en el siguiente menú de la configuración de Android y habilite %2$s. - Google ha anunciado que, a partir de 2026/2027, todas las aplicaciones en dispositivos Android certificados requerirán que los desarrolladores envíen sus datos personales de identidad directamente a Google. Como los desarrolladores de esta aplicación no están de acuerdo con este requisito, la aplicación dejará de funcionar en dispositivos Android certificados después de esa fecha. + En Agosto de 2025, Google ha anunciado que, a partir de 2026/2027, todas las aplicaciones en dispositivos Android certificados requerirán que los desarrolladores envíen sus datos personales de identidad directamente a Google. Como los desarrolladores de NewPipe no están de acuerdo con este requisito, la aplicación dejará de funcionar en dispositivos Android certificados después de esa fecha. Detalles Solución diff --git a/fastlane/metadata/android/vi/changelogs/1000.txt b/fastlane/metadata/android/vi/changelogs/1000.txt index e812a4fea..bc3762590 100644 --- a/fastlane/metadata/android/vi/changelogs/1000.txt +++ b/fastlane/metadata/android/vi/changelogs/1000.txt @@ -1,13 +1,13 @@ -Những cải thiện -• Làm cho mô tả của danh sách phát có thể nhấp vào để hiển thị nhiều / ít nội dung hơn -• [PeerTube] Tự động xử lý các liên kết như 'subscribeto.me' -• Chỉ bắt đầu phát một mục trong màn hình lịch sử +Cải thiện +• Chạm mô tả danh sách phát để xem thêm / thu gọn +• [PeerTube] Tự xử lý liên kết `subscribeto.me` +• Chỉ phát một mục trong màn hình lịch sử -Đã sửa các lỗi trước đó -• Sửa lỗi khả năng hiển thị nút RSS -• Khắc phục sự cố xem trước thanh tìm kiếm -• Sửa danh sách phát một mục không có hình xem trước -• Sửa lỗi việc thoát khỏi hộp thoại tải xuống trước khi nó xuất hiện -• Sửa cửa sổ bật lên cho danh sách các mục liên quan khi xếp hàng. -• Sửa thứ tự trong hộp thoại được thêm vào danh sách phát -• Đã điều chỉnh bố cục của mục đánh dấu trong danh sách phát +Đã sửa +• Hiển thị nút RSS +• Crash xem trước thanh tua +• Tạo danh sách phát với mục không có thumbnail +• Thoát hộp thoại "Tải xuống" trước khi hiển thị +• Popup thêm mục liên quan vào hàng chờ +• Thứ tự trong hộp thoại "Thêm vào danh sách phát" +• Bố cục mục đánh dấu danh sách phát diff --git a/fastlane/metadata/android/vi/changelogs/1003.txt b/fastlane/metadata/android/vi/changelogs/1003.txt index 3f32949c5..982a79efc 100644 --- a/fastlane/metadata/android/vi/changelogs/1003.txt +++ b/fastlane/metadata/android/vi/changelogs/1003.txt @@ -1,4 +1,6 @@ -Đã sửa lỗi YouTube không phát bất kỳ luồng nào. - -Bản phát hành này chỉ giải quyết lỗi cấp bách nhất khiến video YouTube không tải thông tin chi tiết về video. -Chúng tôi biết có những vấn đề khác và chúng tôi sẽ sớm đưa ra một bản phát hành riêng để giải quyết những vấn đề đó. +Đây là bản vá khẩn sửa lỗi YouTube: +• [YouTube] Sửa lỗi không tải thông tin video, lỗi HTTP 403 khi phát và khôi phục phát một số video giới hạn độ tuổi +• Cỡ chữ phụ đề không thay đổi +• Tải thông tin hai lần khi mở stream +• [SoundCloud] Loại bỏ stream DRM không thể phát +• Cập nhật bản dịch diff --git a/fastlane/metadata/android/vi/changelogs/1005.txt b/fastlane/metadata/android/vi/changelogs/1005.txt index 7eeb567b7..86a38a38d 100644 --- a/fastlane/metadata/android/vi/changelogs/1005.txt +++ b/fastlane/metadata/android/vi/changelogs/1005.txt @@ -1,17 +1,17 @@ Mới -• Hỗ trợ cho Android Auto -• Cho phép đặt nhóm nguồn cấp dữ liệu làm tab màn hình chính -• [YouTube] Chia sẻ dưới dạng danh sách phát tạm thời -• [SoundCloud] Tab kênh thích +• Hỗ trợ Android Auto +• Cho phép đặt nhóm feed làm tab màn hình chính +• [YouTube] Chia sẻ dạng danh sách phát tạm thời +• [SoundCloud] Tab kênh đã thích Cải thiện -• Gợi ý thanh tìm kiếm tốt hơn -• Hiển thị ngày tải xuống trong mục Tải xuống -• Sử dụng cài đặt ngôn ngữ cho từng ứng dụng (Android 13+) +• Gợi ý thanh tìm kiếm rõ hơn +• Hiển thị ngày tải trong Tải xuống +• Dùng ngôn ngữ riêng cho ứng dụng (Android 13) Đã sửa -• Màu chữ bị hỏng ở chế độ tối -• [YouTube] Danh sách phát không tải được hơn 100 mục -• [YouTube] Thiếu video được đề xuất -• Sập trong Lịch sử -• Dấu thời gian trong phần trả lời bình luận +• Màu chữ lỗi trong chế độ tối +• [YouTube] Playlist không tải quá 100 mục +• [YouTube] Thiếu video đề xuất +• Crash trong danh sách Lịch sử +• Timestamp trong phản hồi bình luận diff --git a/fastlane/metadata/android/vi/changelogs/1006.txt b/fastlane/metadata/android/vi/changelogs/1006.txt new file mode 100644 index 000000000..baf2ab52b --- /dev/null +++ b/fastlane/metadata/android/vi/changelogs/1006.txt @@ -0,0 +1,16 @@ +Cải thiện +• Giữ trình phát hiện tại khi nhấn timestamp +• Thử khôi phục các tác vụ tải xuống đang chờ +• Tùy chọn xóa bản tải mà không xóa tệp +• Quyền Overlay: hiển thị hộp thoại giải thích (Android > R) +• Hỗ trợ mở liên kết on.soundcloud +• Nhiều cải thiện và tối ưu nhỏ + +Đã sửa +• Định dạng số rút gọn cho Android < 7 +• Thông báo "ma" +• Lỗi phụ đề SRT +• Nhiều crash + +Phát triển +• Hiện đại hóa mã nội bộ diff --git a/fastlane/metadata/android/vi/changelogs/1007.txt b/fastlane/metadata/android/vi/changelogs/1007.txt index d2086b62c..6265fcf52 100644 --- a/fastlane/metadata/android/vi/changelogs/1007.txt +++ b/fastlane/metadata/android/vi/changelogs/1007.txt @@ -1 +1,11 @@ -Đã sửa lỗi YouTube không phát bất kỳ luồng nào +Bản vá khẩn sửa lỗi "Nội dung không khả dụng": video YouTube đã phát lại bình thường. + +Cũng sửa một số lỗi từ 0.28.1: +• Kéo mục trong playlist chỉ sang được vị trí liền kề +• Tiêu đề/bình luận nhấp nháy giữa video hiện tại và trước đó +• Tùy chọn "Mở trình phát chính toàn màn hình" không hoạt động + +Cải thiện khác: +• [YouTube] Có thể tua lại livestream tối đa 4 giờ +• Không tải video livestream khi phát nền +• Giao diện mới cho "Xóa đã xem" diff --git a/fastlane/metadata/android/vi/changelogs/1008.txt b/fastlane/metadata/android/vi/changelogs/1008.txt new file mode 100644 index 000000000..ee92a2384 --- /dev/null +++ b/fastlane/metadata/android/vi/changelogs/1008.txt @@ -0,0 +1,4 @@ +• Đã sửa lỗi phát lại livestreams tại điểm phát cuối +• [Youtube] hỗ trợ thêm nhiều dạng URL kênh +• [Youtube] hỗ trợ thêm nhiều format cho video metainfo +• Đã cải thiện các bản dịch diff --git a/fastlane/metadata/android/vi/changelogs/1009.txt b/fastlane/metadata/android/vi/changelogs/1009.txt new file mode 100644 index 000000000..f47bddcd7 --- /dev/null +++ b/fastlane/metadata/android/vi/changelogs/1009.txt @@ -0,0 +1,13 @@ +Quan trọng +Đã bổ sung thông tin kêu gọi hành động cho chiến dịch Keep Android Open: https://www.keepandroidopen.org/ + +Đã cải thiện +[Feed] Cập nhật các đăng ký cũ theo thứ tự ngẫu nhiên +Các trang bình luận không còn chồng lên nhau +Không truyền sự kiện nhấn xuống view bên dưới trên trang chi tiết video + +Đã sửa +Lỗi không hiện ảnh avatar ở phần comment +Những lỗi liên quan đến UI của phần trình phát +[SoundCloud] các luồng phát có ID dài +Và nhiều sửa lỗi, cải thiện khác From 6fa97e17f5b84f3de04e98163a30ef570e97ec2b Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Sun, 15 Mar 2026 20:51:29 +0800 Subject: [PATCH 012/127] subscription: Port subscription import-export to workers from refactor Please see https://github.com/TeamNewPipe/NewPipe/pull/11759/ for the original change Signed-off-by: Aayush Gupta --- app/build.gradle.kts | 7 + app/proguard-rules.pro | 15 + app/src/main/AndroidManifest.xml | 8 - .../ImportConfirmationDialog.java | 48 ++- .../subscription/SubscriptionFragment.kt | 23 +- .../local/subscription/SubscriptionManager.kt | 18 +- .../SubscriptionsImportFragment.java | 24 +- .../services/BaseImportExportService.java | 238 ------------- .../services/ImportExportEventListener.java | 17 - .../services/ImportExportJsonHelper.java | 158 --------- .../services/SubscriptionsExportService.java | 171 --------- .../services/SubscriptionsImportService.java | 327 ------------------ .../workers/ImportExportJsonHelper.kt | 72 ++++ .../subscription/workers/SubscriptionData.kt | 24 ++ .../workers/SubscriptionExportWorker.kt | 119 +++++++ .../workers/SubscriptionImportWorker.kt | 242 +++++++++++++ app/src/main/res/values/strings.xml | 12 + .../services/ImportExportJsonHelperTest.java | 58 +--- build.gradle.kts | 1 + gradle/libs.versions.toml | 5 + 20 files changed, 570 insertions(+), 1017 deletions(-) delete mode 100644 app/src/main/java/org/schabi/newpipe/local/subscription/services/BaseImportExportService.java delete mode 100644 app/src/main/java/org/schabi/newpipe/local/subscription/services/ImportExportEventListener.java delete mode 100644 app/src/main/java/org/schabi/newpipe/local/subscription/services/ImportExportJsonHelper.java delete mode 100644 app/src/main/java/org/schabi/newpipe/local/subscription/services/SubscriptionsExportService.java delete mode 100644 app/src/main/java/org/schabi/newpipe/local/subscription/services/SubscriptionsImportService.java create mode 100644 app/src/main/java/org/schabi/newpipe/local/subscription/workers/ImportExportJsonHelper.kt create mode 100644 app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionData.kt create mode 100644 app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionExportWorker.kt create mode 100644 app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionImportWorker.kt diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 5b7153ee2..ffd66715a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -11,6 +11,7 @@ plugins { alias(libs.plugins.jetbrains.kotlin.kapt) alias(libs.plugins.google.ksp) alias(libs.plugins.jetbrains.kotlin.parcelize) + alias(libs.plugins.jetbrains.kotlinx.serialization) alias(libs.plugins.sonarqube) checkstyle } @@ -246,6 +247,12 @@ dependencies { implementation(libs.google.android.material) implementation(libs.androidx.webkit) + // Coroutines interop + implementation(libs.kotlinx.coroutines.rx3) + + // Kotlinx Serialization + implementation(libs.kotlinx.serialization.json) + /** Third-party libraries **/ implementation(libs.livefront.bridge) implementation(libs.evernote.statesaver.core) diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 3f31fc98b..df4f78d8c 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -44,3 +44,18 @@ -keepclassmembers class * extends com.google.protobuf.GeneratedMessageLite { ; } + +## Keep Kotlinx Serialization classes +-keepclassmembers class kotlinx.serialization.json.** { + *** Companion; +} +-keepclasseswithmembers class kotlinx.serialization.json.** { + kotlinx.serialization.KSerializer serializer(...); +} +-keep,includedescriptorclasses class org.schabi.newpipe.**$$serializer { *; } +-keepclassmembers class org.schabi.newpipe.** { + *** Companion; +} +-keepclasseswithmembers class org.schabi.newpipe.** { + kotlinx.serialization.KSerializer serializer(...); +} diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 20e9a6ca9..67a33742b 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -96,14 +96,6 @@ android:exported="false" android:label="@string/title_activity_about" /> - - - - diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/ImportConfirmationDialog.java b/app/src/main/java/org/schabi/newpipe/local/subscription/ImportConfirmationDialog.java index 0067e1154..3dc6d7b46 100644 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/ImportConfirmationDialog.java +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/ImportConfirmationDialog.java @@ -1,41 +1,63 @@ package org.schabi.newpipe.local.subscription; import android.app.Dialog; -import android.content.Intent; import android.os.Bundle; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.appcompat.app.AlertDialog; +import androidx.core.os.BundleCompat; import androidx.fragment.app.DialogFragment; import androidx.fragment.app.Fragment; +import androidx.work.Constraints; +import androidx.work.ExistingWorkPolicy; +import androidx.work.NetworkType; +import androidx.work.OneTimeWorkRequest; +import androidx.work.OutOfQuotaPolicy; +import androidx.work.WorkManager; import com.livefront.bridge.Bridge; import org.schabi.newpipe.R; +import org.schabi.newpipe.local.subscription.workers.SubscriptionImportInput; +import org.schabi.newpipe.local.subscription.workers.SubscriptionImportWorker; public class ImportConfirmationDialog extends DialogFragment { - protected Intent resultServiceIntent; - private static final String EXTRA_RESULT_SERVICE_INTENT = "extra_result_service_intent"; - - public static void show(@NonNull final Fragment fragment, - @NonNull final Intent resultServiceIntent) { - final ImportConfirmationDialog confirmationDialog = new ImportConfirmationDialog(); - final Bundle args = new Bundle(); - args.putParcelable(EXTRA_RESULT_SERVICE_INTENT, resultServiceIntent); - confirmationDialog.setArguments(args); + private static final String INPUT = "input"; + + public static void show(@NonNull final Fragment fragment, final SubscriptionImportInput input) { + final var confirmationDialog = new ImportConfirmationDialog(); + final var arguments = new Bundle(); + arguments.putParcelable(INPUT, input); + confirmationDialog.setArguments(arguments); confirmationDialog.show(fragment.getParentFragmentManager(), null); } @NonNull @Override public Dialog onCreateDialog(@Nullable final Bundle savedInstanceState) { - return new AlertDialog.Builder(requireContext()) + final var context = requireContext(); + return new AlertDialog.Builder(context) .setMessage(R.string.import_network_expensive_warning) .setCancelable(true) .setNegativeButton(R.string.cancel, null) .setPositiveButton(R.string.ok, (dialogInterface, i) -> { - requireContext().startService(resultServiceIntent); + final var constraints = new Constraints.Builder() + .setRequiredNetworkType(NetworkType.CONNECTED) + .build(); + final var input = BundleCompat.getParcelable(requireArguments(), INPUT, + SubscriptionImportInput.class); + + final var req = new OneTimeWorkRequest.Builder(SubscriptionImportWorker.class) + .setInputData(input.toData()) + .setExpedited(OutOfQuotaPolicy.RUN_AS_NON_EXPEDITED_WORK_REQUEST) + .setConstraints(constraints) + .build(); + + WorkManager.getInstance(context) + .enqueueUniqueWork(SubscriptionImportWorker.WORK_NAME, + ExistingWorkPolicy.APPEND_OR_REPLACE, req); + dismiss(); }) .create(); @@ -45,7 +67,7 @@ public Dialog onCreateDialog(@Nullable final Bundle savedInstanceState) { public void onCreate(@Nullable final Bundle savedInstanceState) { super.onCreate(savedInstanceState); - resultServiceIntent = requireArguments().getParcelable(EXTRA_RESULT_SERVICE_INTENT); + Bridge.restoreInstanceState(this, savedInstanceState); } @Override diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt index 28abe4cf9..432771323 100644 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt @@ -3,7 +3,6 @@ package org.schabi.newpipe.local.subscription import android.app.Activity import android.content.Context import android.content.DialogInterface -import android.content.Intent import android.os.Bundle import android.os.Parcelable import android.view.LayoutInflater @@ -53,11 +52,8 @@ import org.schabi.newpipe.local.subscription.item.FeedGroupCarouselItem import org.schabi.newpipe.local.subscription.item.GroupsHeader import org.schabi.newpipe.local.subscription.item.Header import org.schabi.newpipe.local.subscription.item.ImportSubscriptionsHintPlaceholderItem -import org.schabi.newpipe.local.subscription.services.SubscriptionsExportService -import org.schabi.newpipe.local.subscription.services.SubscriptionsImportService -import org.schabi.newpipe.local.subscription.services.SubscriptionsImportService.KEY_MODE -import org.schabi.newpipe.local.subscription.services.SubscriptionsImportService.KEY_VALUE -import org.schabi.newpipe.local.subscription.services.SubscriptionsImportService.PREVIOUS_EXPORT_MODE +import org.schabi.newpipe.local.subscription.workers.SubscriptionExportWorker +import org.schabi.newpipe.local.subscription.workers.SubscriptionImportInput import org.schabi.newpipe.streams.io.NoFileManagerSafeGuard import org.schabi.newpipe.streams.io.StoredFileHelper import org.schabi.newpipe.util.NavigationHelper @@ -223,21 +219,18 @@ class SubscriptionFragment : BaseStateFragment() { } private fun requestExportResult(result: ActivityResult) { - if (result.data != null && result.resultCode == Activity.RESULT_OK) { - activity.startService( - Intent(activity, SubscriptionsExportService::class.java) - .putExtra(SubscriptionsExportService.KEY_FILE_PATH, result.data?.data) - ) + val data = result.data?.data + if (data != null && result.resultCode == Activity.RESULT_OK) { + SubscriptionExportWorker.schedule(activity, data) } } private fun requestImportResult(result: ActivityResult) { - if (result.data != null && result.resultCode == Activity.RESULT_OK) { + val data = result.data?.dataString + if (data != null && result.resultCode == Activity.RESULT_OK) { ImportConfirmationDialog.show( this, - Intent(activity, SubscriptionsImportService::class.java) - .putExtra(KEY_MODE, PREVIOUS_EXPORT_MODE) - .putExtra(KEY_VALUE, result.data?.data) + SubscriptionImportInput.PreviousExportMode(data) ) } } diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionManager.kt b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionManager.kt index 2918ad5fb..5cf378cc3 100644 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionManager.kt +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionManager.kt @@ -1,7 +1,6 @@ package org.schabi.newpipe.local.subscription import android.content.Context -import android.util.Pair import io.reactivex.rxjava3.android.schedulers.AndroidSchedulers import io.reactivex.rxjava3.core.Completable import io.reactivex.rxjava3.core.Flowable @@ -51,23 +50,16 @@ class SubscriptionManager(context: Context) { } } - fun upsertAll(infoList: List>>): List { - val listEntities = subscriptionTable.upsertAll( - infoList.map { SubscriptionEntity.from(it.first) } - ) + fun upsertAll(infoList: List>) { + val listEntities = infoList.map { SubscriptionEntity.from(it.first) } + subscriptionTable.upsertAll(listEntities) database.runInTransaction { infoList.forEachIndexed { index, info -> - info.second.forEach { - feedDatabaseManager.upsertAll( - listEntities[index].uid, - it.relatedItems.filterIsInstance() - ) - } + val streams = info.second.relatedItems.filterIsInstance() + feedDatabaseManager.upsertAll(listEntities[index].uid, streams) } } - - return listEntities } fun updateChannelInfo(info: ChannelInfo): Completable = subscriptionTable.getSubscription(info.serviceId, info.url) diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionsImportFragment.java b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionsImportFragment.java index 16a8990a6..fbadbb876 100644 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionsImportFragment.java +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionsImportFragment.java @@ -1,10 +1,6 @@ package org.schabi.newpipe.local.subscription; import static org.schabi.newpipe.extractor.subscription.SubscriptionExtractor.ContentSource.CHANNEL_URL; -import static org.schabi.newpipe.local.subscription.services.SubscriptionsImportService.CHANNEL_URL_MODE; -import static org.schabi.newpipe.local.subscription.services.SubscriptionsImportService.INPUT_STREAM_MODE; -import static org.schabi.newpipe.local.subscription.services.SubscriptionsImportService.KEY_MODE; -import static org.schabi.newpipe.local.subscription.services.SubscriptionsImportService.KEY_VALUE; import android.app.Activity; import android.content.Intent; @@ -37,7 +33,7 @@ import org.schabi.newpipe.extractor.NewPipe; import org.schabi.newpipe.extractor.exceptions.ExtractionException; import org.schabi.newpipe.extractor.subscription.SubscriptionExtractor; -import org.schabi.newpipe.local.subscription.services.SubscriptionsImportService; +import org.schabi.newpipe.local.subscription.workers.SubscriptionImportInput; import org.schabi.newpipe.streams.io.NoFileManagerSafeGuard; import org.schabi.newpipe.streams.io.StoredFileHelper; import org.schabi.newpipe.util.Constants; @@ -168,10 +164,8 @@ private void onImportClicked() { } public void onImportUrl(final String value) { - ImportConfirmationDialog.show(this, new Intent(activity, SubscriptionsImportService.class) - .putExtra(KEY_MODE, CHANNEL_URL_MODE) - .putExtra(KEY_VALUE, value) - .putExtra(Constants.KEY_SERVICE_ID, currentServiceId)); + ImportConfirmationDialog.show(this, + new SubscriptionImportInput.ChannelUrlMode(currentServiceId, value)); } public void onImportFile() { @@ -186,16 +180,10 @@ public void onImportFile() { } private void requestImportFileResult(final ActivityResult result) { - if (result.getData() == null) { - return; - } - - if (result.getResultCode() == Activity.RESULT_OK && result.getData().getData() != null) { + final String data = result.getData() != null ? result.getData().getDataString() : null; + if (result.getResultCode() == Activity.RESULT_OK && data != null) { ImportConfirmationDialog.show(this, - new Intent(activity, SubscriptionsImportService.class) - .putExtra(KEY_MODE, INPUT_STREAM_MODE) - .putExtra(KEY_VALUE, result.getData().getData()) - .putExtra(Constants.KEY_SERVICE_ID, currentServiceId)); + new SubscriptionImportInput.InputStreamMode(currentServiceId, data)); } } diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/services/BaseImportExportService.java b/app/src/main/java/org/schabi/newpipe/local/subscription/services/BaseImportExportService.java deleted file mode 100644 index 850409e25..000000000 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/services/BaseImportExportService.java +++ /dev/null @@ -1,238 +0,0 @@ -/* - * Copyright 2018 Mauricio Colli - * BaseImportExportService.java is part of NewPipe - * - * License: GPL-3.0+ - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package org.schabi.newpipe.local.subscription.services; - -import android.app.Service; -import android.content.Intent; -import android.os.Build; -import android.os.IBinder; -import android.text.TextUtils; -import android.widget.Toast; - -import androidx.annotation.NonNull; -import androidx.annotation.Nullable; -import androidx.annotation.StringRes; -import androidx.core.app.NotificationCompat; -import androidx.core.app.NotificationManagerCompat; -import androidx.core.app.ServiceCompat; - -import org.reactivestreams.Publisher; -import org.schabi.newpipe.R; -import org.schabi.newpipe.error.ErrorInfo; -import org.schabi.newpipe.error.ErrorUtil; -import org.schabi.newpipe.error.UserAction; -import org.schabi.newpipe.extractor.subscription.SubscriptionExtractor; -import org.schabi.newpipe.ktx.ExceptionUtils; -import org.schabi.newpipe.local.subscription.SubscriptionManager; - -import java.io.FileNotFoundException; -import java.util.concurrent.TimeUnit; -import java.util.concurrent.atomic.AtomicInteger; - -import io.reactivex.rxjava3.android.schedulers.AndroidSchedulers; -import io.reactivex.rxjava3.core.Flowable; -import io.reactivex.rxjava3.disposables.CompositeDisposable; -import io.reactivex.rxjava3.functions.Function; -import io.reactivex.rxjava3.processors.PublishProcessor; - -public abstract class BaseImportExportService extends Service { - protected final String TAG = this.getClass().getSimpleName(); - - protected final CompositeDisposable disposables = new CompositeDisposable(); - protected final PublishProcessor notificationUpdater = PublishProcessor.create(); - - protected NotificationManagerCompat notificationManager; - protected NotificationCompat.Builder notificationBuilder; - protected SubscriptionManager subscriptionManager; - - private static final int NOTIFICATION_SAMPLING_PERIOD = 2500; - - protected final AtomicInteger currentProgress = new AtomicInteger(-1); - protected final AtomicInteger maxProgress = new AtomicInteger(-1); - protected final ImportExportEventListener eventListener = new ImportExportEventListener() { - @Override - public void onSizeReceived(final int size) { - maxProgress.set(size); - currentProgress.set(0); - } - - @Override - public void onItemCompleted(final String itemName) { - currentProgress.incrementAndGet(); - notificationUpdater.onNext(itemName); - } - }; - - protected Toast toast; - - @Nullable - @Override - public IBinder onBind(final Intent intent) { - return null; - } - - @Override - public void onCreate() { - super.onCreate(); - subscriptionManager = new SubscriptionManager(this); - setupNotification(); - } - - @Override - public void onDestroy() { - super.onDestroy(); - disposeAll(); - } - - protected void disposeAll() { - disposables.clear(); - } - - /*////////////////////////////////////////////////////////////////////////// - // Notification Impl - //////////////////////////////////////////////////////////////////////////*/ - - protected abstract int getNotificationId(); - - @StringRes - public abstract int getTitle(); - - protected void setupNotification() { - notificationManager = NotificationManagerCompat.from(this); - notificationBuilder = createNotification(); - startForeground(getNotificationId(), notificationBuilder.build()); - - final Function, Publisher> throttleAfterFirstEmission = flow -> - flow.take(1).concatWith(flow.skip(1) - .throttleLast(NOTIFICATION_SAMPLING_PERIOD, TimeUnit.MILLISECONDS)); - - disposables.add(notificationUpdater - .filter(s -> !s.isEmpty()) - .publish(throttleAfterFirstEmission) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(this::updateNotification)); - } - - protected void updateNotification(final String text) { - notificationBuilder - .setProgress(maxProgress.get(), currentProgress.get(), maxProgress.get() == -1); - - final String progressText = currentProgress + "/" + maxProgress; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { - if (!TextUtils.isEmpty(text)) { - notificationBuilder.setContentText(text + " (" + progressText + ")"); - } - } else { - notificationBuilder.setContentInfo(progressText); - notificationBuilder.setContentText(text); - } - - if (notificationManager.areNotificationsEnabled()) { - notificationManager.notify(getNotificationId(), notificationBuilder.build()); - } - } - - protected void stopService() { - postErrorResult(null, null); - } - - protected void stopAndReportError(final Throwable throwable, final String request) { - stopService(); - ErrorUtil.createNotification(this, new ErrorInfo( - throwable, UserAction.SUBSCRIPTION_IMPORT_EXPORT, request)); - } - - protected void postErrorResult(final String title, final String text) { - disposeAll(); - ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE); - stopSelf(); - - if (title == null) { - return; - } - - final String textOrEmpty = text == null ? "" : text; - notificationBuilder = new NotificationCompat - .Builder(this, getString(R.string.notification_channel_id)) - .setSmallIcon(R.drawable.ic_newpipe_triangle_white) - .setVisibility(NotificationCompat.VISIBILITY_PUBLIC) - .setContentTitle(title) - .setStyle(new NotificationCompat.BigTextStyle().bigText(textOrEmpty)) - .setContentText(textOrEmpty); - - if (notificationManager.areNotificationsEnabled()) { - notificationManager.notify(getNotificationId(), notificationBuilder.build()); - } - } - - protected NotificationCompat.Builder createNotification() { - return new NotificationCompat.Builder(this, getString(R.string.notification_channel_id)) - .setOngoing(true) - .setProgress(-1, -1, true) - .setSmallIcon(R.drawable.ic_newpipe_triangle_white) - .setVisibility(NotificationCompat.VISIBILITY_PUBLIC) - .setContentTitle(getString(getTitle())); - } - - /*////////////////////////////////////////////////////////////////////////// - // Toast - //////////////////////////////////////////////////////////////////////////*/ - - protected void showToast(@StringRes final int message) { - showToast(getString(message)); - } - - protected void showToast(final String message) { - if (toast != null) { - toast.cancel(); - } - - toast = Toast.makeText(this, message, Toast.LENGTH_SHORT); - toast.show(); - } - - /*////////////////////////////////////////////////////////////////////////// - // Error handling - //////////////////////////////////////////////////////////////////////////*/ - - protected void handleError(@StringRes final int errorTitle, @NonNull final Throwable error) { - String message = getErrorMessage(error); - - if (TextUtils.isEmpty(message)) { - final String errorClassName = error.getClass().getName(); - message = getString(R.string.error_occurred_detail, errorClassName); - } - - showToast(errorTitle); - postErrorResult(getString(errorTitle), message); - } - - protected String getErrorMessage(final Throwable error) { - String message = null; - if (error instanceof SubscriptionExtractor.InvalidSourceException) { - message = getString(R.string.invalid_source); - } else if (error instanceof FileNotFoundException) { - message = getString(R.string.invalid_file); - } else if (ExceptionUtils.isNetworkRelated(error)) { - message = getString(R.string.network_error); - } - return message; - } -} diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/services/ImportExportEventListener.java b/app/src/main/java/org/schabi/newpipe/local/subscription/services/ImportExportEventListener.java deleted file mode 100644 index 7352d1f12..000000000 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/services/ImportExportEventListener.java +++ /dev/null @@ -1,17 +0,0 @@ -package org.schabi.newpipe.local.subscription.services; - -public interface ImportExportEventListener { - /** - * Called when the size has been resolved. - * - * @param size how many items there are to import/export - */ - void onSizeReceived(int size); - - /** - * Called every time an item has been parsed/resolved. - * - * @param itemName the name of the subscription item - */ - void onItemCompleted(String itemName); -} diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/services/ImportExportJsonHelper.java b/app/src/main/java/org/schabi/newpipe/local/subscription/services/ImportExportJsonHelper.java deleted file mode 100644 index 611a1cd30..000000000 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/services/ImportExportJsonHelper.java +++ /dev/null @@ -1,158 +0,0 @@ -/* - * Copyright 2018 Mauricio Colli - * ImportExportJsonHelper.java is part of NewPipe - * - * License: GPL-3.0+ - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package org.schabi.newpipe.local.subscription.services; - -import androidx.annotation.Nullable; - -import com.grack.nanojson.JsonAppendableWriter; -import com.grack.nanojson.JsonArray; -import com.grack.nanojson.JsonObject; -import com.grack.nanojson.JsonParser; -import com.grack.nanojson.JsonWriter; - -import org.schabi.newpipe.BuildConfig; -import org.schabi.newpipe.extractor.subscription.SubscriptionExtractor.InvalidSourceException; -import org.schabi.newpipe.extractor.subscription.SubscriptionItem; - -import java.io.InputStream; -import java.io.OutputStream; -import java.util.ArrayList; -import java.util.List; - -/** - * A JSON implementation capable of importing and exporting subscriptions, it has the advantage - * of being able to transfer subscriptions to any device. - */ -public final class ImportExportJsonHelper { - /*////////////////////////////////////////////////////////////////////////// - // Json implementation - //////////////////////////////////////////////////////////////////////////*/ - - private static final String JSON_APP_VERSION_KEY = "app_version"; - private static final String JSON_APP_VERSION_INT_KEY = "app_version_int"; - - private static final String JSON_SUBSCRIPTIONS_ARRAY_KEY = "subscriptions"; - - private static final String JSON_SERVICE_ID_KEY = "service_id"; - private static final String JSON_URL_KEY = "url"; - private static final String JSON_NAME_KEY = "name"; - - private ImportExportJsonHelper() { } - - /** - * Read a JSON source through the input stream. - * - * @param in the input stream (e.g. a file) - * @param eventListener listener for the events generated - * @return the parsed subscription items - */ - public static List readFrom( - final InputStream in, @Nullable final ImportExportEventListener eventListener) - throws InvalidSourceException { - if (in == null) { - throw new InvalidSourceException("input is null"); - } - - final List channels = new ArrayList<>(); - - try { - final JsonObject parentObject = JsonParser.object().from(in); - - if (!parentObject.has(JSON_SUBSCRIPTIONS_ARRAY_KEY)) { - throw new InvalidSourceException("Channels array is null"); - } - - final JsonArray channelsArray = parentObject.getArray(JSON_SUBSCRIPTIONS_ARRAY_KEY); - - if (eventListener != null) { - eventListener.onSizeReceived(channelsArray.size()); - } - - for (final Object o : channelsArray) { - if (o instanceof JsonObject) { - final JsonObject itemObject = (JsonObject) o; - final int serviceId = itemObject.getInt(JSON_SERVICE_ID_KEY, 0); - final String url = itemObject.getString(JSON_URL_KEY); - final String name = itemObject.getString(JSON_NAME_KEY); - - if (url != null && name != null && !url.isEmpty() && !name.isEmpty()) { - channels.add(new SubscriptionItem(serviceId, url, name)); - if (eventListener != null) { - eventListener.onItemCompleted(name); - } - } - } - } - } catch (final Throwable e) { - throw new InvalidSourceException("Couldn't parse json", e); - } - - return channels; - } - - /** - * Write the subscriptions items list as JSON to the output. - * - * @param items the list of subscriptions items - * @param out the output stream (e.g. a file) - * @param eventListener listener for the events generated - */ - public static void writeTo(final List items, final OutputStream out, - @Nullable final ImportExportEventListener eventListener) { - final JsonAppendableWriter writer = JsonWriter.on(out); - writeTo(items, writer, eventListener); - writer.done(); - } - - /** - * @see #writeTo(List, OutputStream, ImportExportEventListener) - * @param items the list of subscriptions items - * @param writer the output {@link JsonAppendableWriter} - * @param eventListener listener for the events generated - */ - public static void writeTo(final List items, - final JsonAppendableWriter writer, - @Nullable final ImportExportEventListener eventListener) { - if (eventListener != null) { - eventListener.onSizeReceived(items.size()); - } - - writer.object(); - - writer.value(JSON_APP_VERSION_KEY, BuildConfig.VERSION_NAME); - writer.value(JSON_APP_VERSION_INT_KEY, BuildConfig.VERSION_CODE); - - writer.array(JSON_SUBSCRIPTIONS_ARRAY_KEY); - for (final SubscriptionItem item : items) { - writer.object(); - writer.value(JSON_SERVICE_ID_KEY, item.getServiceId()); - writer.value(JSON_URL_KEY, item.getUrl()); - writer.value(JSON_NAME_KEY, item.getName()); - writer.end(); - - if (eventListener != null) { - eventListener.onItemCompleted(item.getName()); - } - } - writer.end(); - - writer.end(); - } -} diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/services/SubscriptionsExportService.java b/app/src/main/java/org/schabi/newpipe/local/subscription/services/SubscriptionsExportService.java deleted file mode 100644 index ab1a5a10c..000000000 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/services/SubscriptionsExportService.java +++ /dev/null @@ -1,171 +0,0 @@ -/* - * Copyright 2018 Mauricio Colli - * SubscriptionsExportService.java is part of NewPipe - * - * License: GPL-3.0+ - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package org.schabi.newpipe.local.subscription.services; - -import static org.schabi.newpipe.MainActivity.DEBUG; - -import android.content.Intent; -import android.net.Uri; -import android.util.Log; - -import androidx.core.content.IntentCompat; -import androidx.localbroadcastmanager.content.LocalBroadcastManager; - -import org.reactivestreams.Subscriber; -import org.reactivestreams.Subscription; -import org.schabi.newpipe.App; -import org.schabi.newpipe.R; -import org.schabi.newpipe.database.subscription.SubscriptionEntity; -import org.schabi.newpipe.extractor.subscription.SubscriptionItem; -import org.schabi.newpipe.streams.io.SharpOutputStream; -import org.schabi.newpipe.streams.io.StoredFileHelper; - -import java.io.IOException; -import java.io.OutputStream; -import java.util.ArrayList; -import java.util.List; - -import io.reactivex.rxjava3.android.schedulers.AndroidSchedulers; -import io.reactivex.rxjava3.functions.Function; -import io.reactivex.rxjava3.schedulers.Schedulers; - -public class SubscriptionsExportService extends BaseImportExportService { - public static final String KEY_FILE_PATH = "key_file_path"; - - /** - * A {@link LocalBroadcastManager local broadcast} will be made with this action - * when the export is successfully completed. - */ - public static final String EXPORT_COMPLETE_ACTION = App.PACKAGE_NAME + ".local.subscription" - + ".services.SubscriptionsExportService.EXPORT_COMPLETE"; - - private Subscription subscription; - private StoredFileHelper outFile; - private OutputStream outputStream; - - @Override - public int onStartCommand(final Intent intent, final int flags, final int startId) { - if (intent == null || subscription != null) { - return START_NOT_STICKY; - } - - final Uri path = IntentCompat.getParcelableExtra(intent, KEY_FILE_PATH, Uri.class); - if (path == null) { - stopAndReportError(new IllegalStateException( - "Exporting to a file, but the path is null"), - "Exporting subscriptions"); - return START_NOT_STICKY; - } - - try { - outFile = new StoredFileHelper(this, path, "application/json"); - // truncate the file before writing to it, otherwise if the new content is smaller than - // the previous file size, the file will retain part of the previous content and be - // corrupted - outputStream = new SharpOutputStream(outFile.openAndTruncateStream()); - } catch (final IOException e) { - handleError(e); - return START_NOT_STICKY; - } - - startExport(); - - return START_NOT_STICKY; - } - - @Override - protected int getNotificationId() { - return 4567; - } - - @Override - public int getTitle() { - return R.string.export_ongoing; - } - - @Override - protected void disposeAll() { - super.disposeAll(); - if (subscription != null) { - subscription.cancel(); - } - } - - private void startExport() { - showToast(R.string.export_ongoing); - - subscriptionManager.subscriptionTable().getAll().take(1) - .map(subscriptionEntities -> { - final List result = - new ArrayList<>(subscriptionEntities.size()); - for (final SubscriptionEntity entity : subscriptionEntities) { - result.add(new SubscriptionItem(entity.getServiceId(), entity.getUrl(), - entity.getName())); - } - return result; - }) - .map(exportToFile()) - .subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(getSubscriber()); - } - - private Subscriber getSubscriber() { - return new Subscriber() { - @Override - public void onSubscribe(final Subscription s) { - subscription = s; - s.request(1); - } - - @Override - public void onNext(final StoredFileHelper file) { - if (DEBUG) { - Log.d(TAG, "startExport() success: file = " + file); - } - } - - @Override - public void onError(final Throwable error) { - Log.e(TAG, "onError() called with: error = [" + error + "]", error); - handleError(error); - } - - @Override - public void onComplete() { - LocalBroadcastManager.getInstance(SubscriptionsExportService.this) - .sendBroadcast(new Intent(EXPORT_COMPLETE_ACTION)); - showToast(R.string.export_complete_toast); - stopService(); - } - }; - } - - private Function, StoredFileHelper> exportToFile() { - return subscriptionItems -> { - ImportExportJsonHelper.writeTo(subscriptionItems, outputStream, eventListener); - return outFile; - }; - } - - protected void handleError(final Throwable error) { - super.handleError(R.string.subscriptions_export_unsuccessful, error); - } -} diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/services/SubscriptionsImportService.java b/app/src/main/java/org/schabi/newpipe/local/subscription/services/SubscriptionsImportService.java deleted file mode 100644 index 442c7fddb..000000000 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/services/SubscriptionsImportService.java +++ /dev/null @@ -1,327 +0,0 @@ -/* - * Copyright 2018 Mauricio Colli - * SubscriptionsImportService.java is part of NewPipe - * - * License: GPL-3.0+ - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package org.schabi.newpipe.local.subscription.services; - -import static org.schabi.newpipe.MainActivity.DEBUG; -import static org.schabi.newpipe.streams.io.StoredFileHelper.DEFAULT_MIME; - -import android.content.Intent; -import android.net.Uri; -import android.text.TextUtils; -import android.util.Log; -import android.util.Pair; - -import androidx.annotation.NonNull; -import androidx.annotation.Nullable; -import androidx.core.content.IntentCompat; -import androidx.localbroadcastmanager.content.LocalBroadcastManager; - -import org.reactivestreams.Subscriber; -import org.reactivestreams.Subscription; -import org.schabi.newpipe.App; -import org.schabi.newpipe.R; -import org.schabi.newpipe.database.subscription.SubscriptionEntity; -import org.schabi.newpipe.extractor.NewPipe; -import org.schabi.newpipe.extractor.channel.ChannelInfo; -import org.schabi.newpipe.extractor.channel.tabs.ChannelTabInfo; -import org.schabi.newpipe.extractor.subscription.SubscriptionItem; -import org.schabi.newpipe.ktx.ExceptionUtils; -import org.schabi.newpipe.streams.io.SharpInputStream; -import org.schabi.newpipe.streams.io.StoredFileHelper; -import org.schabi.newpipe.util.Constants; -import org.schabi.newpipe.util.ExtractorHelper; - -import java.io.IOException; -import java.io.InputStream; -import java.util.ArrayList; -import java.util.Collections; -import java.util.List; -import java.util.Objects; - -import io.reactivex.rxjava3.android.schedulers.AndroidSchedulers; -import io.reactivex.rxjava3.core.Flowable; -import io.reactivex.rxjava3.core.Notification; -import io.reactivex.rxjava3.functions.Consumer; -import io.reactivex.rxjava3.functions.Function; -import io.reactivex.rxjava3.schedulers.Schedulers; - -public class SubscriptionsImportService extends BaseImportExportService { - public static final int CHANNEL_URL_MODE = 0; - public static final int INPUT_STREAM_MODE = 1; - public static final int PREVIOUS_EXPORT_MODE = 2; - public static final String KEY_MODE = "key_mode"; - public static final String KEY_VALUE = "key_value"; - - /** - * A {@link LocalBroadcastManager local broadcast} will be made with this action - * when the import is successfully completed. - */ - public static final String IMPORT_COMPLETE_ACTION = App.PACKAGE_NAME + ".local.subscription" - + ".services.SubscriptionsImportService.IMPORT_COMPLETE"; - - /** - * How many extractions running in parallel. - */ - public static final int PARALLEL_EXTRACTIONS = 8; - - /** - * Number of items to buffer to mass-insert in the subscriptions table, - * this leads to a better performance as we can then use db transactions. - */ - public static final int BUFFER_COUNT_BEFORE_INSERT = 50; - - private Subscription subscription; - private int currentMode; - private int currentServiceId; - @Nullable - private String channelUrl; - @Nullable - private InputStream inputStream; - @Nullable - private String inputStreamType; - - @Override - public int onStartCommand(final Intent intent, final int flags, final int startId) { - if (intent == null || subscription != null) { - return START_NOT_STICKY; - } - - currentMode = intent.getIntExtra(KEY_MODE, -1); - currentServiceId = intent.getIntExtra(Constants.KEY_SERVICE_ID, Constants.NO_SERVICE_ID); - - if (currentMode == CHANNEL_URL_MODE) { - channelUrl = intent.getStringExtra(KEY_VALUE); - } else { - final Uri uri = IntentCompat.getParcelableExtra(intent, KEY_VALUE, Uri.class); - if (uri == null) { - stopAndReportError(new IllegalStateException( - "Importing from input stream, but file path is null"), - "Importing subscriptions"); - return START_NOT_STICKY; - } - - try { - final StoredFileHelper fileHelper = new StoredFileHelper(this, uri, DEFAULT_MIME); - inputStream = new SharpInputStream(fileHelper.getStream()); - inputStreamType = fileHelper.getType(); - - if (inputStreamType == null || inputStreamType.equals(DEFAULT_MIME)) { - // mime type could not be determined, just take file extension - final String name = fileHelper.getName(); - final int pointIndex = name.lastIndexOf('.'); - if (pointIndex == -1 || pointIndex >= name.length() - 1) { - inputStreamType = DEFAULT_MIME; // no extension, will fail in the extractor - } else { - inputStreamType = name.substring(pointIndex + 1); - } - } - } catch (final IOException e) { - handleError(e); - return START_NOT_STICKY; - } - } - - if (currentMode == -1 || currentMode == CHANNEL_URL_MODE && channelUrl == null) { - final String errorDescription = "Some important field is null or in illegal state: " - + "currentMode=[" + currentMode + "], " - + "channelUrl=[" + channelUrl + "], " - + "inputStream=[" + inputStream + "]"; - stopAndReportError(new IllegalStateException(errorDescription), - "Importing subscriptions"); - return START_NOT_STICKY; - } - - startImport(); - return START_NOT_STICKY; - } - - @Override - protected int getNotificationId() { - return 4568; - } - - @Override - public int getTitle() { - return R.string.import_ongoing; - } - - @Override - protected void disposeAll() { - super.disposeAll(); - if (subscription != null) { - subscription.cancel(); - } - } - - /*////////////////////////////////////////////////////////////////////////// - // Imports - //////////////////////////////////////////////////////////////////////////*/ - - private void startImport() { - showToast(R.string.import_ongoing); - - Flowable> flowable = null; - switch (currentMode) { - case CHANNEL_URL_MODE: - flowable = importFromChannelUrl(); - break; - case INPUT_STREAM_MODE: - flowable = importFromInputStream(); - break; - case PREVIOUS_EXPORT_MODE: - flowable = importFromPreviousExport(); - break; - } - - if (flowable == null) { - final String message = "Flowable given by \"importFrom\" is null " - + "(current mode: " + currentMode + ")"; - stopAndReportError(new IllegalStateException(message), "Importing subscriptions"); - return; - } - - flowable.doOnNext(subscriptionItems -> - eventListener.onSizeReceived(subscriptionItems.size())) - .flatMap(Flowable::fromIterable) - - .parallel(PARALLEL_EXTRACTIONS) - .runOn(Schedulers.io()) - .map((Function>>>) subscriptionItem -> { - try { - final ChannelInfo channelInfo = ExtractorHelper - .getChannelInfo(subscriptionItem.getServiceId(), - subscriptionItem.getUrl(), true) - .blockingGet(); - return Notification.createOnNext(new Pair<>(channelInfo, - Collections.singletonList( - ExtractorHelper.getChannelTab( - subscriptionItem.getServiceId(), - channelInfo.getTabs().get(0), true).blockingGet() - ))); - } catch (final Throwable e) { - return Notification.createOnError(e); - } - }) - .sequential() - - .observeOn(Schedulers.io()) - .doOnNext(getNotificationsConsumer()) - - .buffer(BUFFER_COUNT_BEFORE_INSERT) - .map(upsertBatch()) - - .subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(getSubscriber()); - } - - private Subscriber> getSubscriber() { - return new Subscriber<>() { - @Override - public void onSubscribe(final Subscription s) { - subscription = s; - s.request(Long.MAX_VALUE); - } - - @Override - public void onNext(final List successfulInserted) { - if (DEBUG) { - Log.d(TAG, "startImport() " + successfulInserted.size() - + " items successfully inserted into the database"); - } - } - - @Override - public void onError(final Throwable error) { - Log.e(TAG, "Got an error!", error); - handleError(error); - } - - @Override - public void onComplete() { - LocalBroadcastManager.getInstance(SubscriptionsImportService.this) - .sendBroadcast(new Intent(IMPORT_COMPLETE_ACTION)); - showToast(R.string.import_complete_toast); - stopService(); - } - }; - } - - private Consumer>>> getNotificationsConsumer() { - return notification -> { - if (notification.isOnNext()) { - final String name = notification.getValue().first.getName(); - eventListener.onItemCompleted(!TextUtils.isEmpty(name) ? name : ""); - } else if (notification.isOnError()) { - final Throwable error = notification.getError(); - final Throwable cause = error.getCause(); - if (error instanceof IOException) { - throw error; - } else if (cause instanceof IOException) { - throw cause; - } else if (ExceptionUtils.isNetworkRelated(error)) { - throw new IOException(error); - } - - eventListener.onItemCompleted(""); - } - }; - } - - private Function>>>, - List> upsertBatch() { - return notificationList -> { - final List>> infoList = - new ArrayList<>(notificationList.size()); - for (final Notification>> n : notificationList) { - if (n.isOnNext()) { - infoList.add(n.getValue()); - } - } - - return subscriptionManager.upsertAll(infoList); - }; - } - - private Flowable> importFromChannelUrl() { - return Flowable.fromCallable(() -> NewPipe.getService(currentServiceId) - .getSubscriptionExtractor() - .fromChannelUrl(channelUrl)); - } - - private Flowable> importFromInputStream() { - Objects.requireNonNull(inputStream); - Objects.requireNonNull(inputStreamType); - - return Flowable.fromCallable(() -> NewPipe.getService(currentServiceId) - .getSubscriptionExtractor() - .fromInputStream(inputStream, inputStreamType)); - } - - private Flowable> importFromPreviousExport() { - return Flowable.fromCallable(() -> ImportExportJsonHelper.readFrom(inputStream, null)); - } - - protected void handleError(@NonNull final Throwable error) { - super.handleError(R.string.subscriptions_import_unsuccessful, error); - } -} diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/workers/ImportExportJsonHelper.kt b/app/src/main/java/org/schabi/newpipe/local/subscription/workers/ImportExportJsonHelper.kt new file mode 100644 index 000000000..b95bcd508 --- /dev/null +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/workers/ImportExportJsonHelper.kt @@ -0,0 +1,72 @@ +/* + * Copyright 2018 Mauricio Colli + * ImportExportJsonHelper.java is part of NewPipe + * + * License: GPL-3.0+ + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package org.schabi.newpipe.local.subscription.workers + +import java.io.InputStream +import java.io.OutputStream +import kotlinx.serialization.ExperimentalSerializationApi +import kotlinx.serialization.json.Json +import kotlinx.serialization.json.decodeFromStream +import kotlinx.serialization.json.encodeToStream +import org.schabi.newpipe.extractor.subscription.SubscriptionExtractor.InvalidSourceException + +/** + * A JSON implementation capable of importing and exporting subscriptions, it has the advantage + * of being able to transfer subscriptions to any device. + */ +object ImportExportJsonHelper { + private val json = Json { encodeDefaults = true } + + /** + * Read a JSON source through the input stream. + * + * @param in the input stream (e.g. a file) + * @return the parsed subscription items + */ + @JvmStatic + @Throws(InvalidSourceException::class) + fun readFrom(`in`: InputStream?): List { + if (`in` == null) { + throw InvalidSourceException("input is null") + } + + try { + @OptIn(ExperimentalSerializationApi::class) + return json.decodeFromStream(`in`).subscriptions + } catch (e: Throwable) { + throw InvalidSourceException("Couldn't parse json", e) + } + } + + /** + * Write the subscriptions items list as JSON to the output. + * + * @param items the list of subscriptions items + * @param out the output stream (e.g. a file) + */ + @OptIn(ExperimentalSerializationApi::class) + @JvmStatic + fun writeTo( + items: List, + out: OutputStream + ) { + json.encodeToStream(SubscriptionData(items), out) + } +} diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionData.kt b/app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionData.kt new file mode 100644 index 000000000..174ae7585 --- /dev/null +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionData.kt @@ -0,0 +1,24 @@ +package org.schabi.newpipe.local.subscription.workers + +import kotlinx.serialization.SerialName +import kotlinx.serialization.Serializable +import org.schabi.newpipe.BuildConfig + +@Serializable +class SubscriptionData( + val subscriptions: List +) { + @SerialName("app_version") + private val appVersion = BuildConfig.VERSION_NAME + + @SerialName("app_version_int") + private val appVersionInt = BuildConfig.VERSION_CODE +} + +@Serializable +data class SubscriptionItem( + @SerialName("service_id") + val serviceId: Int, + val url: String, + val name: String +) diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionExportWorker.kt b/app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionExportWorker.kt new file mode 100644 index 000000000..09e99aa6f --- /dev/null +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionExportWorker.kt @@ -0,0 +1,119 @@ +package org.schabi.newpipe.local.subscription.workers + +import android.content.Context +import android.content.pm.ServiceInfo +import android.net.Uri +import android.os.Build +import android.util.Log +import android.widget.Toast +import androidx.core.app.NotificationCompat +import androidx.core.net.toUri +import androidx.work.CoroutineWorker +import androidx.work.ExistingWorkPolicy +import androidx.work.ForegroundInfo +import androidx.work.OneTimeWorkRequestBuilder +import androidx.work.OutOfQuotaPolicy +import androidx.work.WorkManager +import androidx.work.WorkerParameters +import androidx.work.workDataOf +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.reactive.awaitFirst +import kotlinx.coroutines.withContext +import org.schabi.newpipe.BuildConfig +import org.schabi.newpipe.NewPipeDatabase +import org.schabi.newpipe.R + +class SubscriptionExportWorker( + appContext: Context, + params: WorkerParameters +) : CoroutineWorker(appContext, params) { + // This is needed for API levels < 31 (Android S). + override suspend fun getForegroundInfo(): ForegroundInfo { + return createForegroundInfo(applicationContext.getString(R.string.export_ongoing)) + } + + override suspend fun doWork(): Result { + return try { + val uri = inputData.getString(EXPORT_PATH)!!.toUri() + val table = NewPipeDatabase.getInstance(applicationContext).subscriptionDAO() + val subscriptions = + table.getAll() + .awaitFirst() + .map { SubscriptionItem(it.serviceId, it.url ?: "", it.name ?: "") } + + val qty = subscriptions.size + val title = applicationContext.resources.getQuantityString(R.plurals.export_subscriptions, qty, qty) + setForeground(createForegroundInfo(title)) + + withContext(Dispatchers.IO) { + // Truncate file if it already exists + applicationContext.contentResolver.openOutputStream(uri, "wt")?.use { + ImportExportJsonHelper.writeTo(subscriptions, it) + } + } + + if (BuildConfig.DEBUG) { + Log.i(TAG, "Exported $qty subscriptions") + } + + withContext(Dispatchers.Main) { + Toast + .makeText(applicationContext, R.string.export_complete_toast, Toast.LENGTH_SHORT) + .show() + } + + Result.success() + } catch (e: Exception) { + if (BuildConfig.DEBUG) { + Log.e(TAG, "Error while exporting subscriptions", e) + } + + withContext(Dispatchers.Main) { + Toast + .makeText(applicationContext, R.string.subscriptions_export_unsuccessful, Toast.LENGTH_SHORT) + .show() + } + + return Result.failure() + } + } + + private fun createForegroundInfo(title: String): ForegroundInfo { + val notification = + NotificationCompat + .Builder(applicationContext, NOTIFICATION_CHANNEL_ID) + .setSmallIcon(R.drawable.ic_newpipe_triangle_white) + .setOngoing(true) + .setProgress(-1, -1, true) + .setVisibility(NotificationCompat.VISIBILITY_PUBLIC) + .setForegroundServiceBehavior(NotificationCompat.FOREGROUND_SERVICE_IMMEDIATE) + .setContentTitle(title) + .build() + val serviceType = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) ServiceInfo.FOREGROUND_SERVICE_TYPE_DATA_SYNC else 0 + return ForegroundInfo(NOTIFICATION_ID, notification, serviceType) + } + + companion object { + private const val TAG = "SubscriptionExportWork" + private const val NOTIFICATION_ID = 4567 + private const val NOTIFICATION_CHANNEL_ID = "newpipe" + private const val WORK_NAME = "exportSubscriptions" + private const val EXPORT_PATH = "exportPath" + + fun schedule( + context: Context, + uri: Uri + ) { + val data = workDataOf(EXPORT_PATH to uri.toString()) + val workRequest = + OneTimeWorkRequestBuilder() + .setInputData(data) + .setExpedited(OutOfQuotaPolicy.RUN_AS_NON_EXPEDITED_WORK_REQUEST) + .build() + + WorkManager + .getInstance(context) + .enqueueUniqueWork(WORK_NAME, ExistingWorkPolicy.APPEND_OR_REPLACE, workRequest) + } + } +} diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionImportWorker.kt b/app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionImportWorker.kt new file mode 100644 index 000000000..cc8cf6f24 --- /dev/null +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/workers/SubscriptionImportWorker.kt @@ -0,0 +1,242 @@ +package org.schabi.newpipe.local.subscription.workers + +import android.content.Context +import android.content.pm.ServiceInfo +import android.os.Build +import android.os.Parcelable +import android.util.Log +import android.webkit.MimeTypeMap +import android.widget.Toast +import androidx.core.app.NotificationCompat +import androidx.core.net.toUri +import androidx.work.CoroutineWorker +import androidx.work.Data +import androidx.work.ForegroundInfo +import androidx.work.WorkManager +import androidx.work.WorkerParameters +import androidx.work.workDataOf +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.async +import kotlinx.coroutines.awaitAll +import kotlinx.coroutines.rx3.await +import kotlinx.coroutines.sync.Mutex +import kotlinx.coroutines.sync.withLock +import kotlinx.coroutines.withContext +import kotlinx.parcelize.Parcelize +import org.schabi.newpipe.BuildConfig +import org.schabi.newpipe.R +import org.schabi.newpipe.extractor.NewPipe +import org.schabi.newpipe.local.subscription.SubscriptionManager +import org.schabi.newpipe.util.ExtractorHelper + +class SubscriptionImportWorker( + appContext: Context, + params: WorkerParameters +) : CoroutineWorker(appContext, params) { + // This is needed for API levels < 31 (Android S). + override suspend fun getForegroundInfo(): ForegroundInfo { + return createForegroundInfo(applicationContext.getString(R.string.import_ongoing), null, 0, 0) + } + + override suspend fun doWork(): Result { + val subscriptions = + try { + loadSubscriptionsFromInput(SubscriptionImportInput.fromData(inputData)) + } catch (e: Exception) { + if (BuildConfig.DEBUG) { + Log.e(TAG, "Error while loading subscriptions from path", e) + } + withContext(Dispatchers.Main) { + Toast + .makeText(applicationContext, R.string.subscriptions_import_unsuccessful, Toast.LENGTH_SHORT) + .show() + } + return Result.failure() + } + + val mutex = Mutex() + var index = 1 + val qty = subscriptions.size + var title = + applicationContext.resources.getQuantityString(R.plurals.load_subscriptions, qty, qty) + + val channelInfoList = + try { + withContext(Dispatchers.IO.limitedParallelism(PARALLEL_EXTRACTIONS)) { + subscriptions + .map { + async { + val channelInfo = + ExtractorHelper.getChannelInfo(it.serviceId, it.url, true).await() + val channelTab = + ExtractorHelper.getChannelTab(it.serviceId, channelInfo.tabs[0], true).await() + + val currentIndex = mutex.withLock { index++ } + setForeground(createForegroundInfo(title, channelInfo.name, currentIndex, qty)) + + channelInfo to channelTab + } + }.awaitAll() + } + } catch (e: Exception) { + if (BuildConfig.DEBUG) { + Log.e(TAG, "Error while loading subscription data", e) + } + withContext(Dispatchers.Main) { + Toast.makeText(applicationContext, R.string.subscriptions_import_unsuccessful, Toast.LENGTH_SHORT) + .show() + } + return Result.failure() + } + + title = applicationContext.resources.getQuantityString(R.plurals.import_subscriptions, qty, qty) + setForeground(createForegroundInfo(title, null, 0, 0)) + index = 0 + + val subscriptionManager = SubscriptionManager(applicationContext) + for (chunk in channelInfoList.chunked(BUFFER_COUNT_BEFORE_INSERT)) { + withContext(Dispatchers.IO) { + subscriptionManager.upsertAll(chunk) + } + index += chunk.size + setForeground(createForegroundInfo(title, null, index, qty)) + } + + withContext(Dispatchers.Main) { + Toast.makeText(applicationContext, R.string.import_complete_toast, Toast.LENGTH_SHORT) + .show() + } + + return Result.success() + } + + private suspend fun loadSubscriptionsFromInput(input: SubscriptionImportInput): List { + return withContext(Dispatchers.IO) { + when (input) { + is SubscriptionImportInput.ChannelUrlMode -> + NewPipe.getService(input.serviceId).subscriptionExtractor + .fromChannelUrl(input.url) + .map { SubscriptionItem(it.serviceId, it.url, it.name) } + + is SubscriptionImportInput.InputStreamMode -> + applicationContext.contentResolver.openInputStream(input.url.toUri())?.use { + val contentType = + MimeTypeMap.getFileExtensionFromUrl(input.url).ifEmpty { DEFAULT_MIME } + NewPipe.getService(input.serviceId).subscriptionExtractor + .fromInputStream(it, contentType) + .map { SubscriptionItem(it.serviceId, it.url, it.name) } + } + + is SubscriptionImportInput.PreviousExportMode -> + applicationContext.contentResolver.openInputStream(input.url.toUri())?.use { + ImportExportJsonHelper.readFrom(it) + } + } ?: emptyList() + } + } + + private fun createForegroundInfo( + title: String, + text: String?, + currentProgress: Int, + maxProgress: Int + ): ForegroundInfo { + val notification = + NotificationCompat + .Builder(applicationContext, NOTIFICATION_CHANNEL_ID) + .setSmallIcon(R.drawable.ic_newpipe_triangle_white) + .setOngoing(true) + .setProgress(maxProgress, currentProgress, currentProgress == 0) + .setVisibility(NotificationCompat.VISIBILITY_PUBLIC) + .setForegroundServiceBehavior(NotificationCompat.FOREGROUND_SERVICE_IMMEDIATE) + .setContentTitle(title) + .setContentText(text) + .addAction( + R.drawable.ic_close, + applicationContext.getString(R.string.cancel), + WorkManager.getInstance(applicationContext).createCancelPendingIntent(id) + ).apply { + if (currentProgress > 0 && maxProgress > 0) { + val progressText = "$currentProgress/$maxProgress" + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { + setSubText(progressText) + } else { + setContentInfo(progressText) + } + } + }.build() + val serviceType = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) ServiceInfo.FOREGROUND_SERVICE_TYPE_DATA_SYNC else 0 + + return ForegroundInfo(NOTIFICATION_ID, notification, serviceType) + } + + companion object { + // Log tag length is limited to 23 characters on API levels < 24. + private const val TAG = "SubscriptionImport" + + private const val NOTIFICATION_ID = 4568 + private const val NOTIFICATION_CHANNEL_ID = "newpipe" + private const val DEFAULT_MIME = "application/octet-stream" + private const val PARALLEL_EXTRACTIONS = 8 + private const val BUFFER_COUNT_BEFORE_INSERT = 50 + + const val WORK_NAME = "SubscriptionImportWorker" + } +} + +sealed class SubscriptionImportInput : Parcelable { + @Parcelize + data class ChannelUrlMode(val serviceId: Int, val url: String) : SubscriptionImportInput() + + @Parcelize + data class InputStreamMode(val serviceId: Int, val url: String) : SubscriptionImportInput() + + @Parcelize + data class PreviousExportMode(val url: String) : SubscriptionImportInput() + + fun toData(): Data { + val (mode, serviceId, url) = when (this) { + is ChannelUrlMode -> Triple(CHANNEL_URL_MODE, serviceId, url) + is InputStreamMode -> Triple(INPUT_STREAM_MODE, serviceId, url) + is PreviousExportMode -> Triple(PREVIOUS_EXPORT_MODE, null, url) + } + return workDataOf("mode" to mode, "service_id" to serviceId, "url" to url) + } + + companion object { + + private const val CHANNEL_URL_MODE = 0 + private const val INPUT_STREAM_MODE = 1 + private const val PREVIOUS_EXPORT_MODE = 2 + + fun fromData(data: Data): SubscriptionImportInput { + val mode = data.getInt("mode", PREVIOUS_EXPORT_MODE) + when (mode) { + CHANNEL_URL_MODE -> { + val serviceId = data.getInt("service_id", -1) + if (serviceId == -1) { + throw IllegalArgumentException("No service id provided") + } + val url = data.getString("url")!! + return ChannelUrlMode(serviceId, url) + } + + INPUT_STREAM_MODE -> { + val serviceId = data.getInt("service_id", -1) + if (serviceId == -1) { + throw IllegalArgumentException("No service id provided") + } + val url = data.getString("url")!! + return InputStreamMode(serviceId, url) + } + + PREVIOUS_EXPORT_MODE -> { + val url = data.getString("url")!! + return PreviousExportMode(url) + } + + else -> throw IllegalArgumentException("Unknown mode: $mode") + } + } + } +} diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 99dd1a74c..bb03a3bcf 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -501,6 +501,18 @@ Show an error snackbar Create an error notification + + Exporting %d subscription… + Exporting %d subscriptions… + + + Loading %d subscription… + Loading %d subscriptions… + + + Importing %d subscription… + Importing %d subscriptions… + Import Import from Export to diff --git a/app/src/test/java/org/schabi/newpipe/local/subscription/services/ImportExportJsonHelperTest.java b/app/src/test/java/org/schabi/newpipe/local/subscription/services/ImportExportJsonHelperTest.java index 4f0f125ec..96bca9733 100644 --- a/app/src/test/java/org/schabi/newpipe/local/subscription/services/ImportExportJsonHelperTest.java +++ b/app/src/test/java/org/schabi/newpipe/local/subscription/services/ImportExportJsonHelperTest.java @@ -5,11 +5,11 @@ import org.junit.Test; import org.schabi.newpipe.extractor.subscription.SubscriptionExtractor; -import org.schabi.newpipe.extractor.subscription.SubscriptionItem; +import org.schabi.newpipe.local.subscription.workers.ImportExportJsonHelper; +import org.schabi.newpipe.local.subscription.workers.SubscriptionItem; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; -import java.io.InputStream; import java.nio.charset.StandardCharsets; import java.util.Arrays; import java.util.List; @@ -23,26 +23,22 @@ public void testEmptySource() throws Exception { final String emptySource = "{\"app_version\":\"0.11.6\",\"app_version_int\": 47,\"subscriptions\":[]}"; - final List items = ImportExportJsonHelper.readFrom( - new ByteArrayInputStream(emptySource.getBytes(StandardCharsets.UTF_8)), null); + final var items = ImportExportJsonHelper.readFrom( + new ByteArrayInputStream(emptySource.getBytes(StandardCharsets.UTF_8))); assertTrue(items.isEmpty()); } @Test public void testInvalidSource() { - final List invalidList = Arrays.asList( - "{}", - "", - null, - "gibberish"); + final var invalidList = Arrays.asList("{}", "", null, "gibberish"); for (final String invalidContent : invalidList) { try { if (invalidContent != null) { final byte[] bytes = invalidContent.getBytes(StandardCharsets.UTF_8); - ImportExportJsonHelper.readFrom((new ByteArrayInputStream(bytes)), null); + ImportExportJsonHelper.readFrom(new ByteArrayInputStream(bytes)); } else { - ImportExportJsonHelper.readFrom(null, null); + ImportExportJsonHelper.readFrom(null); } fail("didn't throw exception"); @@ -58,38 +54,24 @@ public void testInvalidSource() { @Test public void ultimateTest() throws Exception { // Read from file - final List itemsFromFile = readFromFile(); + final var itemsFromFile = readFromFile(); // Test writing to an output final String jsonOut = testWriteTo(itemsFromFile); // Read again - final List itemsSecondRead = readFromWriteTo(jsonOut); + final var itemsSecondRead = readFromWriteTo(jsonOut); // Check if both lists have the exact same items - if (itemsFromFile.size() != itemsSecondRead.size()) { + if (!itemsFromFile.equals(itemsSecondRead)) { fail("The list of items were different from each other"); } - - for (int i = 0; i < itemsFromFile.size(); i++) { - final SubscriptionItem item1 = itemsFromFile.get(i); - final SubscriptionItem item2 = itemsSecondRead.get(i); - - final boolean equals = item1.getServiceId() == item2.getServiceId() - && item1.getUrl().equals(item2.getUrl()) - && item1.getName().equals(item2.getName()); - - if (!equals) { - fail("The list of items were different from each other"); - } - } } private List readFromFile() throws Exception { - final InputStream inputStream = getClass().getClassLoader().getResourceAsStream( - "import_export_test.json"); - final List itemsFromFile = ImportExportJsonHelper.readFrom( - inputStream, null); + final var inputStream = getClass().getClassLoader() + .getResourceAsStream("import_export_test.json"); + final var itemsFromFile = ImportExportJsonHelper.readFrom(inputStream); if (itemsFromFile.isEmpty()) { fail("ImportExportJsonHelper.readFrom(input) returned a null or empty list"); @@ -98,10 +80,10 @@ private List readFromFile() throws Exception { return itemsFromFile; } - private String testWriteTo(final List itemsFromFile) throws Exception { - final ByteArrayOutputStream out = new ByteArrayOutputStream(); - ImportExportJsonHelper.writeTo(itemsFromFile, out, null); - final String jsonOut = out.toString("UTF-8"); + private String testWriteTo(final List itemsFromFile) { + final var out = new ByteArrayOutputStream(); + ImportExportJsonHelper.writeTo(itemsFromFile, out); + final String jsonOut = out.toString(StandardCharsets.UTF_8); if (jsonOut.isEmpty()) { fail("JSON returned by writeTo was empty"); @@ -111,10 +93,8 @@ private String testWriteTo(final List itemsFromFile) throws Ex } private List readFromWriteTo(final String jsonOut) throws Exception { - final ByteArrayInputStream inputStream = new ByteArrayInputStream( - jsonOut.getBytes(StandardCharsets.UTF_8)); - final List secondReadItems = ImportExportJsonHelper.readFrom( - inputStream, null); + final var inputStream = new ByteArrayInputStream(jsonOut.getBytes(StandardCharsets.UTF_8)); + final var secondReadItems = ImportExportJsonHelper.readFrom(inputStream); if (secondReadItems.isEmpty()) { fail("second call to readFrom returned an empty list"); diff --git a/build.gradle.kts b/build.gradle.kts index 2c9173f57..13e33dce5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -9,5 +9,6 @@ plugins { alias(libs.plugins.jetbrains.kotlin.kapt) apply false alias(libs.plugins.google.ksp) apply false alias(libs.plugins.jetbrains.kotlin.parcelize) apply false + alias(libs.plugins.jetbrains.kotlinx.serialization) apply false alias(libs.plugins.sonarqube) apply false } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 225943eeb..9995f9051 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -25,6 +25,8 @@ jsoup = "1.22.1" junit = "4.13.2" junit-ext = "1.3.0" kotlin = "2.3.10" +kotlinx-coroutines-rx3 = "1.10.2" +kotlinx-serialization-json = "1.10.0" ksp = "2.3.6" ktlint = "1.8.0" leakcanary = "2.14" @@ -110,6 +112,8 @@ jakewharton-phoenix = { module = "com.jakewharton:process-phoenix", version.ref jakewharton-rxbinding = { module = "com.jakewharton.rxbinding4:rxbinding", version.ref = "rxbinding" } jsoup = { module = "org.jsoup:jsoup", version.ref = "jsoup" } junit = { module = "junit:junit", version.ref = "junit" } +kotlinx-coroutines-rx3 = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-rx3", version.ref = "kotlinx-coroutines-rx3" } +kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinx-serialization-json" } lisawray-groupie-core = { module = "com.github.lisawray.groupie:groupie", version.ref = "groupie" } lisawray-groupie-viewbinding = { module = "com.github.lisawray.groupie:groupie-viewbinding", version.ref = "groupie" } livefront-bridge = { module = "com.github.livefront:bridge", version.ref = "bridge" } @@ -136,4 +140,5 @@ google-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } jetbrains-kotlin-kapt = { id = "org.jetbrains.kotlin.kapt", version.ref = "kotlin" } # Needed for statesaver jetbrains-kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" } +jetbrains-kotlinx-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } sonarqube = { id = "org.sonarqube", version.ref = "sonarqube" } From bfcc31ec893d4863f5ab7a7ebbb6874e836bf35d Mon Sep 17 00:00:00 2001 From: evermind Date: Fri, 13 Feb 2026 01:40:11 +0100 Subject: [PATCH 013/127] BackupRestoreSettingsFragment: add UI options to import/export subscriptions * create SubscriptionsImportExportHelper to share common code used in SubscriptionFragment and BackupRestoreSettingsFragment * Add UI options for import/export in BackupRestoreSettingsFragment --- .../subscription/SubscriptionFragment.kt | 59 +------------ .../SubscriptionsImportExportHelper.kt | 82 +++++++++++++++++++ .../BackupRestoreSettingsFragment.java | 23 ++++++ app/src/main/res/values/settings_keys.xml | 2 + app/src/main/res/values/strings.xml | 5 ++ .../main/res/xml/backup_restore_settings.xml | 14 ++++ 6 files changed, 130 insertions(+), 55 deletions(-) create mode 100644 app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionsImportExportHelper.kt diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt index 432771323..9a817362c 100644 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt @@ -1,6 +1,5 @@ package org.schabi.newpipe.local.subscription -import android.app.Activity import android.content.Context import android.content.DialogInterface import android.os.Bundle @@ -14,8 +13,6 @@ import android.view.View import android.view.ViewGroup import android.webkit.MimeTypeMap import android.widget.Toast -import androidx.activity.result.ActivityResult -import androidx.activity.result.contract.ActivityResultContracts.StartActivityForResult import androidx.annotation.StringRes import androidx.appcompat.app.AlertDialog import androidx.lifecycle.ViewModelProvider @@ -26,9 +23,6 @@ import com.xwray.groupie.GroupAdapter import com.xwray.groupie.Section import com.xwray.groupie.viewbinding.GroupieViewHolder import io.reactivex.rxjava3.disposables.CompositeDisposable -import java.text.SimpleDateFormat -import java.util.Date -import java.util.Locale import org.schabi.newpipe.R import org.schabi.newpipe.database.feed.model.FeedGroupEntity.Companion.GROUP_ALL_ID import org.schabi.newpipe.databinding.DialogTitleBinding @@ -52,10 +46,6 @@ import org.schabi.newpipe.local.subscription.item.FeedGroupCarouselItem import org.schabi.newpipe.local.subscription.item.GroupsHeader import org.schabi.newpipe.local.subscription.item.Header import org.schabi.newpipe.local.subscription.item.ImportSubscriptionsHintPlaceholderItem -import org.schabi.newpipe.local.subscription.workers.SubscriptionExportWorker -import org.schabi.newpipe.local.subscription.workers.SubscriptionImportInput -import org.schabi.newpipe.streams.io.NoFileManagerSafeGuard -import org.schabi.newpipe.streams.io.StoredFileHelper import org.schabi.newpipe.util.NavigationHelper import org.schabi.newpipe.util.OnClickGesture import org.schabi.newpipe.util.ServiceHelper @@ -68,6 +58,7 @@ class SubscriptionFragment : BaseStateFragment() { private lateinit var viewModel: SubscriptionViewModel private lateinit var subscriptionManager: SubscriptionManager + private lateinit var importExportHelper: SubscriptionsImportExportHelper private val disposables: CompositeDisposable = CompositeDisposable() private val groupAdapter = GroupAdapter>() @@ -76,11 +67,6 @@ class SubscriptionFragment : BaseStateFragment() { private lateinit var feedGroupsSortMenuItem: GroupsHeader private val subscriptionsSection = Section() - private val requestExportLauncher = - registerForActivityResult(StartActivityForResult(), this::requestExportResult) - private val requestImportLauncher = - registerForActivityResult(StartActivityForResult(), this::requestImportResult) - @State @JvmField var itemsListState: Parcelable? = null @@ -100,6 +86,7 @@ class SubscriptionFragment : BaseStateFragment() { override fun onAttach(context: Context) { super.onAttach(context) subscriptionManager = SubscriptionManager(requireContext()) + importExportHelper = SubscriptionsImportExportHelper(this) } override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? { @@ -139,7 +126,7 @@ class SubscriptionFragment : BaseStateFragment() { // -- Import -- val importSubMenu = menu.addSubMenu(R.string.import_from) - addMenuItemToSubmenu(importSubMenu, R.string.previous_export) { onImportPreviousSelected() } + addMenuItemToSubmenu(importSubMenu, R.string.previous_export) { importExportHelper.onImportPreviousSelected() } .setIcon(R.drawable.ic_backup) for (service in ServiceList.all()) { @@ -157,7 +144,7 @@ class SubscriptionFragment : BaseStateFragment() { // -- Export -- val exportSubMenu = menu.addSubMenu(R.string.export_to) - addMenuItemToSubmenu(exportSubMenu, R.string.file) { onExportSelected() } + addMenuItemToSubmenu(exportSubMenu, R.string.file) { importExportHelper.onExportSelected() } .setIcon(R.drawable.ic_save) } @@ -193,48 +180,10 @@ class SubscriptionFragment : BaseStateFragment() { NavigationHelper.openSubscriptionsImportFragment(fragmentManager, serviceId) } - private fun onImportPreviousSelected() { - NoFileManagerSafeGuard.launchSafe( - requestImportLauncher, - StoredFileHelper.getPicker(activity, JSON_MIME_TYPE), - TAG, - requireContext() - ) - } - - private fun onExportSelected() { - val date = SimpleDateFormat("yyyyMMddHHmm", Locale.ENGLISH).format(Date()) - val exportName = "newpipe_subscriptions_$date.json" - - NoFileManagerSafeGuard.launchSafe( - requestExportLauncher, - StoredFileHelper.getNewPicker(activity, exportName, JSON_MIME_TYPE, null), - TAG, - requireContext() - ) - } - private fun openReorderDialog() { FeedGroupReorderDialog().show(parentFragmentManager, null) } - private fun requestExportResult(result: ActivityResult) { - val data = result.data?.data - if (data != null && result.resultCode == Activity.RESULT_OK) { - SubscriptionExportWorker.schedule(activity, data) - } - } - - private fun requestImportResult(result: ActivityResult) { - val data = result.data?.dataString - if (data != null && result.resultCode == Activity.RESULT_OK) { - ImportConfirmationDialog.show( - this, - SubscriptionImportInput.PreviousExportMode(data) - ) - } - } - // //////////////////////////////////////////////////////////////////////// // Fragment Views // //////////////////////////////////////////////////////////////////////// diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionsImportExportHelper.kt b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionsImportExportHelper.kt new file mode 100644 index 000000000..b853dcd41 --- /dev/null +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionsImportExportHelper.kt @@ -0,0 +1,82 @@ +package org.schabi.newpipe.local.subscription + +import android.app.Activity +import android.content.Context +import androidx.activity.result.ActivityResult +import androidx.activity.result.contract.ActivityResultContracts.StartActivityForResult +import androidx.fragment.app.Fragment +import java.text.SimpleDateFormat +import java.util.Date +import java.util.Locale +import org.schabi.newpipe.local.subscription.SubscriptionFragment.Companion.JSON_MIME_TYPE +import org.schabi.newpipe.local.subscription.workers.SubscriptionExportWorker +import org.schabi.newpipe.local.subscription.workers.SubscriptionImportInput +import org.schabi.newpipe.streams.io.NoFileManagerSafeGuard +import org.schabi.newpipe.streams.io.StoredFileHelper + +/** + * This class has to be created in onAttach() or onCreate(). + * + * It contains registerForActivityResult calls and those + * calls are only allowed before a fragment/activity is created. + */ +class SubscriptionsImportExportHelper( + val fragment: Fragment +) { + val context: Context = fragment.requireContext() + + companion object { + val TAG: String = + SubscriptionsImportExportHelper::class.java.simpleName + "@" + Integer.toHexString( + hashCode() + ) + } + + private val requestExportLauncher = + fragment.registerForActivityResult(StartActivityForResult(), this::requestExportResult) + private val requestImportLauncher = + fragment.registerForActivityResult(StartActivityForResult(), this::requestImportResult) + + private fun requestExportResult(result: ActivityResult) { + val data = result.data?.data + if (data != null && result.resultCode == Activity.RESULT_OK) { + SubscriptionExportWorker.schedule(context, data) + } + } + + private fun requestImportResult(result: ActivityResult) { + val data = result.data?.dataString + if (data != null && result.resultCode == Activity.RESULT_OK) { + ImportConfirmationDialog.show( + fragment, + SubscriptionImportInput.PreviousExportMode(data) + ) + } + } + + fun onExportSelected() { + val date = SimpleDateFormat("yyyyMMddHHmm", Locale.ENGLISH).format(Date()) + val exportName = "newpipe_subscriptions_$date.json" + + NoFileManagerSafeGuard.launchSafe( + requestExportLauncher, + StoredFileHelper.getNewPicker( + context, + exportName, + JSON_MIME_TYPE, + null + ), + TAG, + context + ) + } + + fun onImportPreviousSelected() { + NoFileManagerSafeGuard.launchSafe( + requestImportLauncher, + StoredFileHelper.getPicker(context, JSON_MIME_TYPE), + TAG, + context + ) + } +} diff --git a/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java b/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java index baaa93e44..b5d303288 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java +++ b/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java @@ -27,6 +27,7 @@ import org.schabi.newpipe.error.ErrorInfo; import org.schabi.newpipe.error.ErrorUtil; import org.schabi.newpipe.error.UserAction; +import org.schabi.newpipe.local.subscription.SubscriptionsImportExportHelper; import org.schabi.newpipe.settings.export.BackupFileLocator; import org.schabi.newpipe.settings.export.ImportExportManager; import org.schabi.newpipe.streams.io.NoFileManagerSafeGuard; @@ -57,8 +58,15 @@ public class BackupRestoreSettingsFragment extends BasePreferenceFragment { private final ActivityResultLauncher requestExportPathLauncher = registerForActivityResult(new ActivityResultContracts.StartActivityForResult(), this::requestExportPathResult); + private SubscriptionsImportExportHelper importExportHelper; + @Override + public void onAttach(@NonNull final Context context) { + super.onAttach(context); + importExportHelper = new SubscriptionsImportExportHelper(this); + } + @Override public void onCreatePreferences(@Nullable final Bundle savedInstanceState, @Nullable final String rootKey) { @@ -123,6 +131,21 @@ ZIP_MIME_TYPE, getImportExportDataUri()), alertDialog.show(); return true; }); + + final Preference exportSubsPreference = + requirePreference(R.string.export_subscriptions_key); + exportSubsPreference.setOnPreferenceClickListener(reference -> { + importExportHelper.onExportSelected(); + return true; + }); + + final Preference importSubsPreference = + requirePreference(R.string.import_subscriptions_key); + importSubsPreference.setOnPreferenceClickListener(preference -> { + importExportHelper.onImportPreviousSelected(); + return true; + }); + } private void requestExportPathResult(final ActivityResult result) { diff --git a/app/src/main/res/values/settings_keys.xml b/app/src/main/res/values/settings_keys.xml index 7875c1e84..d01709d27 100644 --- a/app/src/main/res/values/settings_keys.xml +++ b/app/src/main/res/values/settings_keys.xml @@ -413,6 +413,8 @@ import_export_data_path import_data export_data + import_subscriptions_key + export_subscriptions_key clear_cookie diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index bb03a3bcf..3ec84bfff 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -520,6 +520,11 @@ Exporting… Import file Previous export + Import subscriptions" + Export subscriptions + Import subscriptions from a previous .json export" + Export your subscriptions to a .json file + Import from previous export Could not import subscriptions Could not export subscriptions Import YouTube subscriptions from Google takeout: diff --git a/app/src/main/res/xml/backup_restore_settings.xml b/app/src/main/res/xml/backup_restore_settings.xml index ef6a3cde3..ff52948f0 100644 --- a/app/src/main/res/xml/backup_restore_settings.xml +++ b/app/src/main/res/xml/backup_restore_settings.xml @@ -22,4 +22,18 @@ android:summary="@string/reset_settings_summary" app:singleLineTitle="false" app:iconSpaceReserved="false" /> + + + + \ No newline at end of file From 223b24029958d7a8892b429799820765b65083ff Mon Sep 17 00:00:00 2001 From: Isira Seneviratne Date: Mon, 7 Jul 2025 07:52:54 +0530 Subject: [PATCH 014/127] Refactor zip import/export using Path --- .../BackupRestoreSettingsFragment.java | 12 ++---- .../settings/export/BackupFileLocator.kt | 19 ++++----- .../settings/export/ImportExportManager.kt | 29 ++++++------- .../org/schabi/newpipe/util/ZipHelper.java | 41 ++++++------------- .../settings/ImportAllCombinationsTest.kt | 16 ++++---- .../settings/ImportExportManagerTest.kt | 36 +++++++++------- 6 files changed, 67 insertions(+), 86 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java b/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java index b5d303288..57d3c70ba 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java +++ b/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java @@ -35,7 +35,6 @@ import org.schabi.newpipe.util.NavigationHelper; import org.schabi.newpipe.util.ZipHelper; -import java.io.File; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Date; @@ -70,13 +69,12 @@ public void onAttach(@NonNull final Context context) { @Override public void onCreatePreferences(@Nullable final Bundle savedInstanceState, @Nullable final String rootKey) { - final File homeDir = ContextCompat.getDataDir(requireContext()); - Objects.requireNonNull(homeDir); - manager = new ImportExportManager(new BackupFileLocator(homeDir)); + final var dbDir = Objects.requireNonNull(ContextCompat.getDataDir(requireContext())) + .toPath(); + manager = new ImportExportManager(new BackupFileLocator(dbDir)); importExportDataPathKey = getString(R.string.import_export_data_path); - addPreferencesFromResourceRegistry(); final Preference importDataPreference = requirePreference(R.string.import_data); @@ -204,9 +202,7 @@ private void importDatabase(final StoredFileHelper file, final Uri importDataUri } try { - if (!manager.ensureDbDirectoryExists()) { - throw new IOException("Could not create databases dir"); - } + manager.ensureDbDirectoryExists(); // replace the current database if (!manager.extractDb(file)) { diff --git a/app/src/main/java/org/schabi/newpipe/settings/export/BackupFileLocator.kt b/app/src/main/java/org/schabi/newpipe/settings/export/BackupFileLocator.kt index f44d4f3e2..aaa28b810 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/export/BackupFileLocator.kt +++ b/app/src/main/java/org/schabi/newpipe/settings/export/BackupFileLocator.kt @@ -1,11 +1,12 @@ package org.schabi.newpipe.settings.export -import java.io.File +import java.nio.file.Path +import kotlin.io.path.div /** * Locates specific files of NewPipe based on the home directory of the app. */ -class BackupFileLocator(private val homeDir: File) { +class BackupFileLocator(homeDir: Path) { companion object { const val FILE_NAME_DB = "newpipe.db" @@ -17,13 +18,9 @@ class BackupFileLocator(private val homeDir: File) { const val FILE_NAME_JSON_PREFS = "preferences.json" } - val dbDir by lazy { File(homeDir, "/databases") } - - val db by lazy { File(dbDir, FILE_NAME_DB) } - - val dbJournal by lazy { File(dbDir, "$FILE_NAME_DB-journal") } - - val dbShm by lazy { File(dbDir, "$FILE_NAME_DB-shm") } - - val dbWal by lazy { File(dbDir, "$FILE_NAME_DB-wal") } + val dbDir = homeDir / "databases" + val db = homeDir / FILE_NAME_DB + val dbJournal = homeDir / "$FILE_NAME_DB-journal" + val dbShm = dbDir / "$FILE_NAME_DB-shm" + val dbWal = dbDir / "$FILE_NAME_DB-wal" } diff --git a/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt b/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt index 83cca2e0b..4b8cd47d9 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt +++ b/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt @@ -9,6 +9,8 @@ import java.io.FileNotFoundException import java.io.IOException import java.io.ObjectOutputStream import java.util.zip.ZipOutputStream +import kotlin.io.path.createDirectories +import kotlin.io.path.deleteExisting import org.schabi.newpipe.streams.io.SharpOutputStream import org.schabi.newpipe.streams.io.StoredFileHelper import org.schabi.newpipe.util.ZipHelper @@ -28,11 +30,8 @@ class ImportExportManager(private val fileLocator: BackupFileLocator) { // previous file size, the file will retain part of the previous content and be corrupted ZipOutputStream(SharpOutputStream(file.openAndTruncateStream()).buffered()).use { outZip -> // add the database - ZipHelper.addFileToZip( - outZip, - BackupFileLocator.FILE_NAME_DB, - fileLocator.db.path - ) + val name = BackupFileLocator.FILE_NAME_DB + ZipHelper.addFileToZip(outZip, name, fileLocator.db) // add the legacy vulnerable serialized preferences (will be removed in the future) ZipHelper.addFileToZip( @@ -61,11 +60,10 @@ class ImportExportManager(private val fileLocator: BackupFileLocator) { /** * Tries to create database directory if it does not exist. - * - * @return Whether the directory exists afterwards. */ - fun ensureDbDirectoryExists(): Boolean { - return fileLocator.dbDir.exists() || fileLocator.dbDir.mkdir() + @Throws(IOException::class) + fun ensureDbDirectoryExists() { + fileLocator.dbDir.createDirectories() } /** @@ -75,16 +73,13 @@ class ImportExportManager(private val fileLocator: BackupFileLocator) { * @return true if the database was successfully extracted, false otherwise */ fun extractDb(file: StoredFileHelper): Boolean { - val success = ZipHelper.extractFileFromZip( - file, - BackupFileLocator.FILE_NAME_DB, - fileLocator.db.path - ) + val name = BackupFileLocator.FILE_NAME_DB + val success = ZipHelper.extractFileFromZip(file, name, fileLocator.db) if (success) { - fileLocator.dbJournal.delete() - fileLocator.dbWal.delete() - fileLocator.dbShm.delete() + fileLocator.dbJournal.deleteExisting() + fileLocator.dbWal.deleteExisting() + fileLocator.dbShm.deleteExisting() } return success diff --git a/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java b/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java index b2aebac42..771452c89 100644 --- a/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java +++ b/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java @@ -6,12 +6,12 @@ import java.io.BufferedInputStream; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; -import java.io.File; -import java.io.FileInputStream; -import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.StandardCopyOption; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; import java.util.zip.ZipOutputStream; @@ -55,17 +55,17 @@ private ZipHelper() { } /** - * This function helps to create zip files. Caution this will overwrite the original file. + * This function helps to create zip files. Caution, this will overwrite the original file. * * @param outZip the ZipOutputStream where the data should be stored in * @param nameInZip the path of the file inside the zip - * @param fileOnDisk the path of the file on the disk that should be added to zip + * @param path the path of the file on the disk that should be added to zip */ public static void addFileToZip(final ZipOutputStream outZip, final String nameInZip, - final String fileOnDisk) throws IOException { - try (FileInputStream fi = new FileInputStream(fileOnDisk)) { - addFileToZip(outZip, nameInZip, fi); + final Path path) throws IOException { + try (var inputStream = Files.newInputStream(path)) { + addFileToZip(outZip, nameInZip, inputStream); } } @@ -113,33 +113,18 @@ public static void addFileToZip(final ZipOutputStream outZip, } /** - * This will extract data from ZipInputStream. Caution this will overwrite the original file. + * This will extract data from ZipInputStream. Caution, this will overwrite the original file. * * @param zipFile the zip file to extract from * @param nameInZip the path of the file inside the zip - * @param fileOnDisk the path of the file on the disk where the data should be extracted to + * @param path the path of the file on the disk where the data should be extracted to * @return will return true if the file was found within the zip file */ public static boolean extractFileFromZip(final StoredFileHelper zipFile, final String nameInZip, - final String fileOnDisk) throws IOException { - return extractFileFromZip(zipFile, nameInZip, input -> { - // delete old file first - final File oldFile = new File(fileOnDisk); - if (oldFile.exists()) { - if (!oldFile.delete()) { - throw new IOException("Could not delete " + fileOnDisk); - } - } - - final byte[] data = new byte[BUFFER_SIZE]; - try (FileOutputStream outFile = new FileOutputStream(fileOnDisk)) { - int count; - while ((count = input.read(data)) != -1) { - outFile.write(data, 0, count); - } - } - }); + final Path path) throws IOException { + return extractFileFromZip(zipFile, nameInZip, input -> + Files.copy(input, path, StandardCopyOption.REPLACE_EXISTING)); } /** diff --git a/app/src/test/java/org/schabi/newpipe/settings/ImportAllCombinationsTest.kt b/app/src/test/java/org/schabi/newpipe/settings/ImportAllCombinationsTest.kt index c7f53f3ac..7a90a4721 100644 --- a/app/src/test/java/org/schabi/newpipe/settings/ImportAllCombinationsTest.kt +++ b/app/src/test/java/org/schabi/newpipe/settings/ImportAllCombinationsTest.kt @@ -3,7 +3,9 @@ package org.schabi.newpipe.settings import android.content.SharedPreferences import java.io.File import java.io.IOException -import java.nio.file.Files +import kotlin.io.path.createTempFile +import kotlin.io.path.exists +import kotlin.io.path.fileSize import org.junit.Assert import org.junit.Test import org.mockito.Mockito @@ -47,10 +49,10 @@ class ImportAllCombinationsTest { BackupFileLocator::class.java, Mockito.withSettings().stubOnly() ) - val db = File.createTempFile("newpipe_", "") - val dbJournal = File.createTempFile("newpipe_", "") - val dbWal = File.createTempFile("newpipe_", "") - val dbShm = File.createTempFile("newpipe_", "") + val db = createTempFile("newpipe_", "") + val dbJournal = createTempFile("newpipe_", "") + val dbWal = createTempFile("newpipe_", "") + val dbShm = createTempFile("newpipe_", "") Mockito.`when`(fileLocator.db).thenReturn(db) Mockito.`when`(fileLocator.dbJournal).thenReturn(dbJournal) Mockito.`when`(fileLocator.dbShm).thenReturn(dbShm) @@ -62,7 +64,7 @@ class ImportAllCombinationsTest { Assert.assertFalse(dbJournal.exists()) Assert.assertFalse(dbWal.exists()) Assert.assertFalse(dbShm.exists()) - Assert.assertTrue("database file size is zero", Files.size(db.toPath()) > 0) + Assert.assertTrue("database file size is zero", db.fileSize() > 0) } } else { runTest { @@ -70,7 +72,7 @@ class ImportAllCombinationsTest { Assert.assertTrue(dbJournal.exists()) Assert.assertTrue(dbWal.exists()) Assert.assertTrue(dbShm.exists()) - Assert.assertEquals(0, Files.size(db.toPath())) + Assert.assertEquals(0, db.fileSize()) } } diff --git a/app/src/test/java/org/schabi/newpipe/settings/ImportExportManagerTest.kt b/app/src/test/java/org/schabi/newpipe/settings/ImportExportManagerTest.kt index e2ff22134..7b09c67f0 100644 --- a/app/src/test/java/org/schabi/newpipe/settings/ImportExportManagerTest.kt +++ b/app/src/test/java/org/schabi/newpipe/settings/ImportExportManagerTest.kt @@ -4,8 +4,14 @@ import android.content.SharedPreferences import com.grack.nanojson.JsonParser import java.io.File import java.io.ObjectInputStream -import java.nio.file.Files import java.util.zip.ZipFile +import kotlin.io.path.Path +import kotlin.io.path.createTempDirectory +import kotlin.io.path.createTempFile +import kotlin.io.path.deleteIfExists +import kotlin.io.path.exists +import kotlin.io.path.fileSize +import kotlin.io.path.inputStream import org.junit.Assert.assertEquals import org.junit.Assert.assertFalse import org.junit.Assert.assertThrows @@ -46,7 +52,7 @@ class ImportExportManagerTest { @Test fun `The settings must be exported successfully in the correct format`() { - val db = File(classloader.getResource("settings/newpipe.db")!!.file) + val db = Path(classloader.getResource("settings/newpipe.db")!!.file) `when`(fileLocator.db).thenReturn(db) val expectedPreferences = mapOf("such pref" to "much wow") @@ -81,8 +87,8 @@ class ImportExportManagerTest { @Test fun `Ensuring db directory existence must work`() { - val dir = Files.createTempDirectory("newpipe_").toFile() - Assume.assumeTrue(dir.delete()) + val dir = createTempDirectory("newpipe_") + Assume.assumeTrue(dir.deleteIfExists()) `when`(fileLocator.dbDir).thenReturn(dir) ImportExportManager(fileLocator).ensureDbDirectoryExists() @@ -91,7 +97,7 @@ class ImportExportManagerTest { @Test fun `Ensuring db directory existence must work when the directory already exists`() { - val dir = Files.createTempDirectory("newpipe_").toFile() + val dir = createTempDirectory("newpipe_") `when`(fileLocator.dbDir).thenReturn(dir) ImportExportManager(fileLocator).ensureDbDirectoryExists() @@ -100,10 +106,10 @@ class ImportExportManagerTest { @Test fun `The database must be extracted from the zip file`() { - val db = File.createTempFile("newpipe_", "") - val dbJournal = File.createTempFile("newpipe_", "") - val dbWal = File.createTempFile("newpipe_", "") - val dbShm = File.createTempFile("newpipe_", "") + val db = createTempFile("newpipe_", "") + val dbJournal = createTempFile("newpipe_", "") + val dbWal = createTempFile("newpipe_", "") + val dbShm = createTempFile("newpipe_", "") `when`(fileLocator.db).thenReturn(db) `when`(fileLocator.dbJournal).thenReturn(dbJournal) `when`(fileLocator.dbShm).thenReturn(dbShm) @@ -117,15 +123,15 @@ class ImportExportManagerTest { assertFalse(dbJournal.exists()) assertFalse(dbWal.exists()) assertFalse(dbShm.exists()) - assertTrue("database file size is zero", Files.size(db.toPath()) > 0) + assertTrue("database file size is zero", db.fileSize() > 0) } @Test fun `Extracting the database from an empty zip must not work`() { - val db = File.createTempFile("newpipe_", "") - val dbJournal = File.createTempFile("newpipe_", "") - val dbWal = File.createTempFile("newpipe_", "") - val dbShm = File.createTempFile("newpipe_", "") + val db = createTempFile("newpipe_", "") + val dbJournal = createTempFile("newpipe_", "") + val dbWal = createTempFile("newpipe_", "") + val dbShm = createTempFile("newpipe_", "") `when`(fileLocator.db).thenReturn(db) val emptyZip = File(classloader.getResource("settings/nodb_noser_nojson.zip")?.file!!) @@ -136,7 +142,7 @@ class ImportExportManagerTest { assertTrue(dbJournal.exists()) assertTrue(dbWal.exists()) assertTrue(dbShm.exists()) - assertEquals(0, Files.size(db.toPath())) + assertEquals(0, db.fileSize()) } @Test From ebb937934ab2de888772afdc757700893378f9ca Mon Sep 17 00:00:00 2001 From: Isira Seneviratne Date: Mon, 7 Jul 2025 07:53:20 +0530 Subject: [PATCH 015/127] Fix DB import/export issue --- .../newpipe/settings/BackupRestoreSettingsFragment.java | 6 ++---- .../schabi/newpipe/settings/export/ImportExportManager.kt | 8 ++++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java b/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java index 57d3c70ba..e84248093 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java +++ b/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java @@ -16,7 +16,6 @@ import androidx.activity.result.contract.ActivityResultContracts; import androidx.annotation.NonNull; import androidx.annotation.Nullable; -import androidx.core.content.ContextCompat; import androidx.preference.Preference; import androidx.preference.PreferenceManager; @@ -39,7 +38,6 @@ import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; -import java.util.Objects; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; @@ -69,8 +67,8 @@ public void onAttach(@NonNull final Context context) { @Override public void onCreatePreferences(@Nullable final Bundle savedInstanceState, @Nullable final String rootKey) { - final var dbDir = Objects.requireNonNull(ContextCompat.getDataDir(requireContext())) - .toPath(); + final var dbDir = requireContext().getDatabasePath(BackupFileLocator.FILE_NAME_DB).toPath() + .getParent(); manager = new ImportExportManager(new BackupFileLocator(dbDir)); importExportDataPathKey = getString(R.string.import_export_data_path); diff --git a/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt b/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt index 4b8cd47d9..d33779fbf 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt +++ b/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt @@ -10,7 +10,7 @@ import java.io.IOException import java.io.ObjectOutputStream import java.util.zip.ZipOutputStream import kotlin.io.path.createDirectories -import kotlin.io.path.deleteExisting +import kotlin.io.path.deleteIfExists import org.schabi.newpipe.streams.io.SharpOutputStream import org.schabi.newpipe.streams.io.StoredFileHelper import org.schabi.newpipe.util.ZipHelper @@ -77,9 +77,9 @@ class ImportExportManager(private val fileLocator: BackupFileLocator) { val success = ZipHelper.extractFileFromZip(file, name, fileLocator.db) if (success) { - fileLocator.dbJournal.deleteExisting() - fileLocator.dbWal.deleteExisting() - fileLocator.dbShm.deleteExisting() + fileLocator.dbJournal.deleteIfExists() + fileLocator.dbWal.deleteIfExists() + fileLocator.dbShm.deleteIfExists() } return success From 71a3bf28553584f615d5b9f79a799f12266ef21e Mon Sep 17 00:00:00 2001 From: Isira Seneviratne Date: Mon, 7 Jul 2025 08:06:52 +0530 Subject: [PATCH 016/127] Use InputStream#transferTo() --- .../org/schabi/newpipe/util/ZipHelper.java | 28 ++++++------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java b/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java index 771452c89..e53fbe52a 100644 --- a/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java +++ b/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java @@ -37,9 +37,6 @@ */ public final class ZipHelper { - - private static final int BUFFER_SIZE = 2048; - @FunctionalInterface public interface InputStreamConsumer { void acceptStream(InputStream inputStream) throws IOException; @@ -80,13 +77,13 @@ public static void addFileToZip(final ZipOutputStream outZip, final String nameInZip, final OutputStreamConsumer streamConsumer) throws IOException { final byte[] bytes; - try (ByteArrayOutputStream byteOutput = new ByteArrayOutputStream()) { + try (var byteOutput = new ByteArrayOutputStream()) { streamConsumer.acceptStream(byteOutput); bytes = byteOutput.toByteArray(); } - try (ByteArrayInputStream byteInput = new ByteArrayInputStream(bytes)) { - ZipHelper.addFileToZip(outZip, nameInZip, byteInput); + try (var byteInput = new ByteArrayInputStream(bytes)) { + addFileToZip(outZip, nameInZip, byteInput); } } @@ -97,19 +94,12 @@ public static void addFileToZip(final ZipOutputStream outZip, * @param nameInZip the path of the file inside the zip * @param inputStream the content to put inside the file */ - public static void addFileToZip(final ZipOutputStream outZip, - final String nameInZip, - final InputStream inputStream) throws IOException { - final byte[] data = new byte[BUFFER_SIZE]; - try (BufferedInputStream bufferedInputStream = - new BufferedInputStream(inputStream, BUFFER_SIZE)) { - final ZipEntry entry = new ZipEntry(nameInZip); - outZip.putNextEntry(entry); - int count; - while ((count = bufferedInputStream.read(data, 0, BUFFER_SIZE)) != -1) { - outZip.write(data, 0, count); - } - } + private static void addFileToZip(final ZipOutputStream outZip, + final String nameInZip, + final InputStream inputStream) throws IOException { + final var entry = new ZipEntry(nameInZip); + outZip.putNextEntry(entry); + inputStream.transferTo(outZip); } /** From aba2a385fde4aeffd17196dd66792f6de56e428f Mon Sep 17 00:00:00 2001 From: Isira Seneviratne Date: Tue, 8 Jul 2025 06:21:42 +0530 Subject: [PATCH 017/127] Inline variable --- app/src/main/java/org/schabi/newpipe/util/ZipHelper.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java b/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java index e53fbe52a..bccfc7f38 100644 --- a/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java +++ b/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java @@ -97,8 +97,7 @@ public static void addFileToZip(final ZipOutputStream outZip, private static void addFileToZip(final ZipOutputStream outZip, final String nameInZip, final InputStream inputStream) throws IOException { - final var entry = new ZipEntry(nameInZip); - outZip.putNextEntry(entry); + outZip.putNextEntry(new ZipEntry(nameInZip)); inputStream.transferTo(outZip); } From 5f1a270ca4040284857cfb5985ca38b0a616eebd Mon Sep 17 00:00:00 2001 From: Isira Seneviratne Date: Mon, 25 Aug 2025 14:32:19 +0530 Subject: [PATCH 018/127] Fix database import --- .../BackupRestoreSettingsFragment.java | 4 +--- .../settings/export/BackupFileLocator.kt | 12 ++++++------ .../settings/export/ImportExportManager.kt | 4 ++-- .../settings/ImportExportManagerTest.kt | 19 ++++++++++--------- 4 files changed, 19 insertions(+), 20 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java b/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java index e84248093..11c4daede 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java +++ b/app/src/main/java/org/schabi/newpipe/settings/BackupRestoreSettingsFragment.java @@ -67,9 +67,7 @@ public void onAttach(@NonNull final Context context) { @Override public void onCreatePreferences(@Nullable final Bundle savedInstanceState, @Nullable final String rootKey) { - final var dbDir = requireContext().getDatabasePath(BackupFileLocator.FILE_NAME_DB).toPath() - .getParent(); - manager = new ImportExportManager(new BackupFileLocator(dbDir)); + manager = new ImportExportManager(new BackupFileLocator(requireContext())); importExportDataPathKey = getString(R.string.import_export_data_path); diff --git a/app/src/main/java/org/schabi/newpipe/settings/export/BackupFileLocator.kt b/app/src/main/java/org/schabi/newpipe/settings/export/BackupFileLocator.kt index aaa28b810..97a7e642f 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/export/BackupFileLocator.kt +++ b/app/src/main/java/org/schabi/newpipe/settings/export/BackupFileLocator.kt @@ -1,12 +1,13 @@ package org.schabi.newpipe.settings.export +import android.content.Context import java.nio.file.Path import kotlin.io.path.div /** * Locates specific files of NewPipe based on the home directory of the app. */ -class BackupFileLocator(homeDir: Path) { +class BackupFileLocator(context: Context) { companion object { const val FILE_NAME_DB = "newpipe.db" @@ -18,9 +19,8 @@ class BackupFileLocator(homeDir: Path) { const val FILE_NAME_JSON_PREFS = "preferences.json" } - val dbDir = homeDir / "databases" - val db = homeDir / FILE_NAME_DB - val dbJournal = homeDir / "$FILE_NAME_DB-journal" - val dbShm = dbDir / "$FILE_NAME_DB-shm" - val dbWal = dbDir / "$FILE_NAME_DB-wal" + val db: Path = context.getDatabasePath(FILE_NAME_DB).toPath() + val dbJournal: Path = db.resolveSibling("$FILE_NAME_DB-journal") + val dbShm: Path = db.resolveSibling("$FILE_NAME_DB-shm") + val dbWal: Path = db.resolveSibling("$FILE_NAME_DB-wal") } diff --git a/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt b/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt index d33779fbf..b5ab72f51 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt +++ b/app/src/main/java/org/schabi/newpipe/settings/export/ImportExportManager.kt @@ -9,7 +9,7 @@ import java.io.FileNotFoundException import java.io.IOException import java.io.ObjectOutputStream import java.util.zip.ZipOutputStream -import kotlin.io.path.createDirectories +import kotlin.io.path.createParentDirectories import kotlin.io.path.deleteIfExists import org.schabi.newpipe.streams.io.SharpOutputStream import org.schabi.newpipe.streams.io.StoredFileHelper @@ -63,7 +63,7 @@ class ImportExportManager(private val fileLocator: BackupFileLocator) { */ @Throws(IOException::class) fun ensureDbDirectoryExists() { - fileLocator.dbDir.createDirectories() + fileLocator.db.createParentDirectories() } /** diff --git a/app/src/test/java/org/schabi/newpipe/settings/ImportExportManagerTest.kt b/app/src/test/java/org/schabi/newpipe/settings/ImportExportManagerTest.kt index 7b09c67f0..482b38237 100644 --- a/app/src/test/java/org/schabi/newpipe/settings/ImportExportManagerTest.kt +++ b/app/src/test/java/org/schabi/newpipe/settings/ImportExportManagerTest.kt @@ -4,11 +4,12 @@ import android.content.SharedPreferences import com.grack.nanojson.JsonParser import java.io.File import java.io.ObjectInputStream +import java.nio.file.Paths import java.util.zip.ZipFile -import kotlin.io.path.Path import kotlin.io.path.createTempDirectory import kotlin.io.path.createTempFile import kotlin.io.path.deleteIfExists +import kotlin.io.path.div import kotlin.io.path.exists import kotlin.io.path.fileSize import kotlin.io.path.inputStream @@ -52,7 +53,7 @@ class ImportExportManagerTest { @Test fun `The settings must be exported successfully in the correct format`() { - val db = Path(classloader.getResource("settings/newpipe.db")!!.file) + val db = Paths.get(classloader.getResource("settings/newpipe.db")!!.toURI()) `when`(fileLocator.db).thenReturn(db) val expectedPreferences = mapOf("such pref" to "much wow") @@ -87,21 +88,21 @@ class ImportExportManagerTest { @Test fun `Ensuring db directory existence must work`() { - val dir = createTempDirectory("newpipe_") - Assume.assumeTrue(dir.deleteIfExists()) - `when`(fileLocator.dbDir).thenReturn(dir) + val path = createTempDirectory("newpipe_") / BackupFileLocator.FILE_NAME_DB + Assume.assumeTrue(path.parent.deleteIfExists()) + `when`(fileLocator.db).thenReturn(path) ImportExportManager(fileLocator).ensureDbDirectoryExists() - assertTrue(dir.exists()) + assertTrue(path.parent.exists()) } @Test fun `Ensuring db directory existence must work when the directory already exists`() { - val dir = createTempDirectory("newpipe_") - `when`(fileLocator.dbDir).thenReturn(dir) + val path = createTempDirectory("newpipe_") / BackupFileLocator.FILE_NAME_DB + `when`(fileLocator.db).thenReturn(path) ImportExportManager(fileLocator).ensureDbDirectoryExists() - assertTrue(dir.exists()) + assertTrue(path.parent.exists()) } @Test From 349000857a4136915b488537fa858b113e92f66c Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Wed, 18 Mar 2026 15:46:47 +0800 Subject: [PATCH 019/127] Update dependencies and Gradle to latest stable release Signed-off-by: Aayush Gupta --- gradle/libs.versions.toml | 12 ++++++------ gradle/wrapper/gradle-wrapper.jar | Bin 46175 -> 48966 bytes gradle/wrapper/gradle-wrapper.properties | 4 ++-- gradlew | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 9995f9051..b9ddae4bd 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -12,10 +12,10 @@ autoservice-google = "1.1.1" autoservice-zacsweers = "1.2.0" bridge = "v2.0.2" cardview = "1.0.0" -checkstyle = "13.2.0" -coil = "3.3.0" +checkstyle = "13.3.0" +coil = "3.4.0" constraintlayout = "2.2.1" -core = "1.17.0" +core = "1.17.0" # Newer versions require minSdk >= 23 desugar = "2.1.5" documentfile = "1.1.0" exoplayer = "2.19.1" @@ -24,7 +24,7 @@ groupie = "2.10.1" jsoup = "1.22.1" junit = "4.13.2" junit-ext = "1.3.0" -kotlin = "2.3.10" +kotlin = "2.3.20" kotlinx-coroutines-rx3 = "1.10.2" kotlinx-serialization-json = "1.10.0" ksp = "2.3.6" @@ -35,7 +35,7 @@ localbroadcastmanager = "1.1.0" markwon = "4.6.2" material = "1.11.0" # TODO: update to newer version after bug is fixed. See https://github.com/TeamNewPipe/NewPipe/pull/13018 media = "1.7.1" -mockitoCore = "5.21.0" +mockitoCore = "5.23.0" okhttp = "5.3.2" phoenix = "3.0.0" preference = "1.2.1" @@ -46,7 +46,7 @@ runner = "1.7.0" rxandroid = "3.0.2" rxbinding = "4.0.0" rxjava = "3.1.12" -sonarqube = "7.2.2.6593" +sonarqube = "7.2.3.7755" statesaver = "1.4.1" # TODO: Drop because it is deprecated and incompatible with KSP2 stetho = "1.6.0" swiperefreshlayout = "1.2.0" diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 61285a659d17295f1de7c53e24fdf13ad755c379..d997cfc60f4cff0e7451d19d49a82fa986695d07 100644 GIT binary patch delta 39855 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

SdO`o?U^bCPz6Ehh!k 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


Xdyd*p!l1Y@nCA zkqV|5mav3F`$}CIvn~v_k?Q7B*`oQ<_j@sn0<>6eya4v)opW!qeva_Tn=Y*^yeQ!|_JrAs%LLir z?%?aYiC@Ay&q`uFSn>Nsh0`LaUceI8*kRXw(57^PV3DnDa9Ov|!nN)&*SY~JNgJJZ z8|#BV)HpfCmB)t&ak$M!KHAbRCi8?aKo!pYb?chG0q! zeI*6=Wpt(CrW}L5OZWM0nzBvaZ4WqS&V~mC z&=wc@kA-IR5CWaaKgaTdx3D?PRH=rsvX|+_kEn{wuPlbxF4W2b)0B~97a&J3)jlGp_>KOi ze5R&4FXWG}EUBa-u!je%Ay~@#wW!PKUf})*A)OwZ!<6q#7Qk6~D0Z}Q+O;MYwxrAq0{D2vYgnl{Xj|T%O1Kf_Iv% zp5Fc*$N?HAcHaPBzJ@)15maZ@@VPe3mfUL0vkposm2hq6T8Yvgu_z%ij4dIzP##!b zIbP-5Yn%)OZD5}A(OAzR;xzp5?Bpt{gHb-g!UlQ2y&qFpUvbs_t{e2)T;zNAvxymq>6wOY5+ycnxMdvK8Y+Ms@D=G9h*QAY;O2HtgUYw_C$jqbqAP+PeVg-j}!dT4E)76--?}`E~R!5-?K08Cy-0Q zaBYPh82SI0eT0IF>>#7-Z?=Q_JnD24UR=3OGvnW-g%@$ zyKy~4ArAL6qz`j1lUNKa60erJcem@)0GS!Q0si$bl>CL&s76ltEzF2EX@ z%eo%30f5@xzeRY3S%^J^qXo+~3!YJ@3k$5BAAUN$L!Srj%k%n8kh%Zm^rqn}czuVJ z;CSKcFDfF%<&>qYArI{{E@dkf8xH?TxVR9y`;*Y(%t!JmEMj`9>W{eeN)SuG6!8%va) zm?M@bqh6-ohJ|rdRCAk6e~B$Fr?(^603cywC`*a^m$FR>`ubqKx_c-({lS0$F>{hE zfr8m0d>4KAE0cL^$|W1UV?fGl{9u*@02h_rp2+;2aACw~=y>fq=tr!h&VvG@4-96V zVOyF4cD(Dg1EX;GrPF!+^7&-{nSUvtbOJUHFCkvw8krRGc91{xp%>I4`}aXdd0AD# z75*k0rv>1&u-Tj_6Vsa^YCz*dqidGU%eeN24>s zU{F=Y*`7BFQZeT2baaDDv|0W9c077gr+0m~w2|8KH;rG)MT`4O%5HBSwBYkkaJ_`@8?-vAfC*U%zjU%M19KKxa_$;-BFIUS#4tKvd zZuvU9b_^QS0H-MbjQ%d2z|_S!{p0(U6FTld(GC2eKY%*_2`VrY?4$}VqACM>*Ku;gtm$b! zhKwsBDaZ|j7(Hy^OaQnn_wahak*lD%YOy5<7Z5J@0u^n?XUKVl-ZbKB*{u;I4d{|D zT{w)+DbFky=lduaxmQV9P{6kp+;+bb%+}Z)Yz1Su<&BP;F;sd`Nrww+65~kRdONnw z)P?x!VuC0xWI0Y;DCFiW2GT4W<4-Qh5O8@DnkYN2V4pDR*?=SM@q}w$Y6pH}466)7 zt{@z2a1*DiQ< zh^w_!(HzHXM!aO-oFRY-!d=%|CPYDxUPsy0m~lIm@b!n7I!lE9kvCd%6=s&~Lu_}V zE=T4)u2V=@K;?B8ci-3|;eMwS=^Rf5S1&p3QKsWG`9dKrk37#**T*_1`u=)9Gs^BB zS8JviR<+h$imDFb>J6&Zs*&9x-yB1{Nq4w{a5qA!2ihi&Ra`5ESh?*IEOuUjxw#un zG?wMlOlPVi+-?F?W`)cm}FJVa~!;_h{7)k)c>-iatF z+7LKfK?r0IfLJI1z#KKV;}c&9IXs%R@}rtNrGhIW7fukSQ<%4@I3< z^Q5v>x$7fWzml-bu#SV0X+DJJLL4KII5e_T34xEuLy%f8dz(hl1?1E7?Ys0!&$(X7 z27(I;P%>pyOVXsIjPFM@x=tL3hk2>$(PP`7!o@>E?tSf;aYqD32x~6?Z5&f}QT{b^!n2%}MzmcU5J&hqV zoLoVert|Bc0dbD(uZ*P!vSc_+k`c)bY(3G7z&-Du9{xYa+pkha4|LZVw~af^cc#@|$kVyU*8Z-3+VvN+{Cpj3J}lQ)h*1i1*- zKL%ylEKZQJ>-nYnRDEeL_~P_aT2NnSYOlNV#SoR zq!@>RE_MPo@R`~y>CISLr%kc-qc;rcv#Zpc1v&t3v3sfxeC2C8e|bfnSVPA^hX@-Y z1X?`hY#6op-dC#Q$XY-JCiZY~$$1m@=&mwDxE^RXWYo!-?^5egyBW(TENk@fghVG{ z*6+8)xH?X)A-l?M>6ycwK_k<#oOpBiX%s(jb|IG#U?a0BNfJ1)Pkkr!t=cy~A7L2WuYWM;|W3!qx5v%k_Airm*OMGvSd9& z0@aL~QaD8#8mV1fq1JNS3}FX7!5c~FOHA?k9gIY;g+1)BB&8fqo8y7*m>!2$-aEX9 zMhgR3@y|}+1x`$Mz5B(;AC7dX)lVQVP8yHXIhP=*r-js0BPGV&J_@@QJ(ev!o1~0> za|=y9b&)-WY_yOA!0~5j_XzoTt%{LHfx}==M?|V?=j|v(x}`bE?4YHSr46KnH`RiW ziI&kL8e$$CDdt_R-7)sX#52zT>4(2UJi71*CH~{jQdcb^fQQp9_%D0><^hnR8eL+m zv6PusB!YskX%x-z4982P;_TU9Hz*g(Ev`}UR#OEzEb+^AfGzL)R5SEf;zu&Zi5=KL zt3}7@{RLaB3|k$}r&6Lf!9s2ilRHR}3y|brT<2ulox~$dq%wCu2im%rXqaog+~QM~ z-d?f>Wr2Q_h^6yc%3PKr);u8J(8it587nv>ku_Opfeba>Rc=Boxq-->3Oy*C9pu8U zG6X&BpqR#%r%VFgk(fyy)Nip@{ba_f)0>&^KwSXt67!D?jXgfxvcf}!D$k2`Ol3;I zfs<{k_En&%6jOA|%V>j)LISy8_f+{=1X7AH(wA#wI*#-G!?ysFvOwhJ*HKwvs{{O_ zMBp>pC81{RUkUQC(GrHPll%-IGVwvlhXqpx3=XLwM!Fu1B0f|aFT!Kmi|B&No*j$5 zuk|^{j^`NN;1^h9bBkvPoikY?)5Q3rC{nUA-gU#GRKeVf*wXj&GlhU3CiF8AD))NK z3y3fmg&tgz>yl)g4SeU)IzVX~+kWVL?-;h4de^A}q@=&--a!JeJ5bu7f*u4*DSDPl zsQUi@?T15R?$E;i6&LmYD=rg);y{PxwYSREx)>(OQM?w!vS>0GUK|EQ@r>mo9^yPI zD;oO9vxrw*meRs~xL36Ur@_3O>2I^0oR1%m_b~f-gpduath{x!K4hVA^5X5+uo6Cd z$VN139w-NeEZ<73RP4eVyB5qyBFm zs{OwlU;!p-%5^(?N{=uuAzgwx3E~&7Y#geu$eLhp_Y^?hOjwqjg46(S%8f8SFr_UO z1Gm%W=H)f8|4;A3WB=X!U{HW(im`sr<@GpnM6&emu`d^-1K?0ebP)XF>ip+vm!p_@J<|F?;?^MXg#HN_NY z=PX+9B`sa*VT>X6S`4}I@I!SbVDby?pX86I5WECKok6@1{_c~rgD^8hP}p^Gm#Hb-i=JITDHQQY^N3h<3thj3M!@ae-vxeLaiS4}3}Bdd8u%g$)y()zm4up+S=kw_M|A;Y0F=&m^)@z)Zi!ca=M;uiPxV@x7K5$PYn zCR8ZE^`c_R%plpXeKhRBLgQq7-LK=Q8ChwVc^P*SmLo?ijNo*!k(wn`~0HN-z^3k?Oy*YE$G1B7GJ8?6$Xd85^Q57)q z@9O0TvL8;9rP0l)E*I1UD`=pyJ|q|QA~}h=hNbO4Mp#3#%?7*XKcAolEwYP8W^>1d z-QKHNs@)msIwl%{-t4m_+`~*0gNK02Iem+CVKciQT$=$2$hHhmWYQlb`>PBvHfK?7 zXSI54etziG=W6NWs%ROdE=TwwGP&w?6ihB(WKzgG18cgCI1Oii2*)|N&v4(ISy>p` zT3#vIx0PsBxpBo1fH=(28;Y+r`O=(#F+6<>6xVeZTBF#&ECt%g=%X5vmDvq&p|_CC zj(N8nzWV6MvV-N)v!v7)<^*N?LydSN?08=MA#P9Ddz9V0=3j(t4wr^=_sG>xdYe|@ zD|2GCZ>YCE`!phClJj$$m_u^QG{7InIQs1Y(=xBReaD#Q|5AQ1{zF>#^xQt#+Jekz z_Q-*bi8}MZJGIWT3>&*<)K!L(p?m6<@QklTqC}u)_b*F2gn43~$wwX-dt>U*vTr`M z@z@%#ha%d$VstphM&obv?>I;#(Cw;m(9WNys$Y6Vv{WN!C` zYtPP=cSh@UUm{u0X2&a%s!Lc4@&@zYO>ZR@rt-&t;0V5{#Ij39fKQ`{vPlEydt@N0 zTXIqS_FeDTp)aw`iIewSmgh0t@ae^bidlc@#w#aDA6Y}(-bX@vMdNSd!}Xu*oE@nJ zgSLIA<{fOvY7uJV$9A#kFYHk%LfuJJ z7o_%_Jt2`DpKcN3>A7|ueP(ty7uQxGfo3kDKL``$XlDi3NWYjYxlnE_KP~S%mk{F( z*tx$)%ReEdf!WVBSJ-x$khy-4L)Rjj1b)AKxi=$jA1Y8Y>KmPMf#|RNQsBS;zvSuM z0)H(93J^q_}}%C%#& zFzI>z#@E<)w7=hNl%-LKgkMWmvJu8Y11oR*ZdYsMpXW_{ULa8JH20@xXaC$+m{P3f z{@~+7T;ckOteKCqIiY^4mwCd@?mU_3IdY`fr8+A+Yn0ZtZ_5CTE7>WO9n!=psuw^MBW*dRe7{WnXgh1hQhZIq!1P0%#nO_B zaZi~=E{!A|Cfx*hrkFtsS$CZmBci=RXf+YqDFpzvvOEBMjsm3{m*R$&;NphjFcM`ojsfXMvgFXmssM!3gJN zOH>Q8N<<^l(%B)wS^}z3)G4yWJ)9iV6FsV(+|`_P1bdu*oJxG08bqnkI4{Slu=+G^ zcU{dYMP6)_jTp+ZHl>iLH3k;J@}b3kK#$Az9;=wXoEl6za>A?YK6}It;26pjB&Uj2 z@fByV{4?oWJB#5=273fd@FV*M&V1{@Y z2W6aB6UU+@Q zEPrvy`kFJXQ2x*@Pz>`ce*DjElf18B+e(R7v;lIDCGwFY7~-OMA3Zbh$!dqV!(&vC zQ8BrFH56#Re&*|LuE}cRCwm|dkYMTjJ`#+&UxMZY2Q6z@zPhTl%FVe44ETWEM?=LH zF*5EW35uMTGijVXDA7$gG_I}r!2<)Mu~AyffwS#4c%%oye2B_#?7M4T8kezP5PCTf zPyxzUV>aJS{1_fgsel4^fn7d)wXq;y5vbvoe$2*Md5@ih%x!$zpnh!>Jwr{2J-r`? zO%?ahoXtJKEjJB!K7QcxNyX0X^U++tT3W6~6p?*QjwOb158gQpg|9)((a6@&Pn=!W zIn`JrAL<&q!Qj^Fx@*y7>5;-LDr)?k(FI~EV`&TQ@G^6`RYbuv<0q~e!iCG^HTOS{ z+W@^|hYongciIvCdC5~kthMu}s6Re@KIl7PdHzOuQARbEp`~GkU0{0){N;24i+E@M z9IGF?@c5?D(nJHsa-KHXO=hq=4j?l!s7~%``wQdK5KQffO4vWPC2o>L@Z7dp(1h*N zN>xcs6rCuO6xs&8o|z0$rzDYx7* zsV*U+buabY3O&yBkj~F6z8$?9 zcU~HV+#O>mq@x)(2huLrxpQ2+>)fp`ci& z%%tcqpfBs~PUvikJi8c$Nla^au*~+svy}2jLtBxg*$Bj5mAH|8hvVRWA~7jHbf_8) zkyGONC=m-jZC@4fQErfCQAfE2o*puTv=@LPB{+ngnBbQJYlXyk;u8w{QLWBmHhRK= zYn4PG5Dh0(UDueU9@)^5{5KwGujQN|L4YA%y^^J$x$4=ksh%<+fs1H3b%a>u-;(ll z{O|ICHPx|}TZq`T2QLnzlYFr%E6?YA)j3^ZB^Wam52e4^8k=*4ILbHmSJhCyM`dOq zz4Pc0r<9Y+cLju;hVGD%nd0K2SPiVw#wU_BApT^w1)c(4yh&9{a$b3s*W6$I6~RCP9RZpPzgM2oUyOM<I_mOa>~1vSVD{OM>O3k)sg4~tV>J@T;v0~RnM~) zKq9`*IJdUA&?+ZIA$cm&G`SuM(P4;>0iWM9p``at=eR@xA==v0`Wi2fFCT7-&OrrT zok$kA%X+iD8+OcesA|-^lFGjk($tm7fkG8m2S+H%HWj$3qH1&Wf|>ndUw~r^t9z-}7!AK*$!a_Lr9jIbmvbK9v7py&?p+?@#A>4{fBR97aIV4p!$v){N^uFp;Vp&^FI3<(t&D!m zNrtUdC`;v(x}7M=IHN}sgClUK9Nu$Rzujt!|_w_!FM1|UEjHr1e-n|TgrY!?j zi(O=K8I01IDPK13AmHW0OGRI+tV#)FOeyj^Vtr3clV2L&dUW~6UDVyXbQF!LCfpj= zicV-xJ(vt7JQs!Y=|d$f#2HkcwQ)Yq5Ayg6G&rL3(|3g)x1U(bVwp*9Ghelw6o19! z!%r3%E!6VI$~Ch^hNI~n;1rGkFBmrt?*#a(7F&fUolf&R{Il%EHAhjJv=a z`j&S(9Zv?t?EE6l*ag*MU)UP0?I!{(HNw3nJgcK|H?Y0^`~9auSU;56iO~!r7lpV> zR%PKOaeV)nJcZ8SIpX=fuz7*m(OX6vS_9ceR=EsJh6u&-_XfNKg#s&2G*J4oT03wTRd}3D^4&1_fdq&HEwl<^a|Oi=<@RpXhf~*#Ei@ zq({{X+&^B3{U0xWYOw-!5qu4`us>ZmQ(gp!|Lt(m7+pIHf7mB}u_lcNB(17Z)G&u~xQ{-EaS~ zUXtTj3)*De+xD63J>B-0|2^M%`s+U928cGm01MiBx!PEA_xb>S&)=M#^$c_fv~TR| z6tOyfkk$=V-nS!u#N%)&KEr*kF3Yo_}h^=CAQ6+1zT|M4a^xWm>0Q7>-(i)Ea0hX zL-Gy?>& z94pp!il8m3JuNA*j9f=baF3If;|-q?=+IpQKG#I4u;=i{bAT$Vmv)X zT;{bgHNF859{qo>NOtl61@>8iu0|FaD zfgFuzu2XOTI%D)s^q9qdCnAABx(oI%78LQ(?M~pGg%O%qE?M6iXUhkvs!n4P_{k#c zu*lH^B4+_z65?^BK2L0BJnEn(2h1h@UYJDxGq)unzK*#=B8-ocy5^rv0U!CcsKDm> zB)029=q~e3UcS)xZ+iTX{wXSn#$@e+Sc`^#}2b-C@?^h4OBC*KVJ z9%JD2uLWtI+W~Czle9AY9b&`-tzG*aiGea0XUs5l63$t+giJyw;gph4X!f&v1eM=o z8?FK*%Hw}&PJZvA<=hri=$@yHWS(D?5K3zZv2NFrO}k#G!5AQ71rs%7^3q4~TxiBE zXFJ$^+wty@_R~DVrx+K}-b-|fJA=|Q=9mDY3_xPH{FbQCNjR2T_(SYmL#J3n{=+g( z6^o?uRc3M%}@zj=gfzJw*y4(&D1gvU05mFP}H@;SK{q|>gxote&D6K zQBEW%@r3Ld$G^>dj3!kG*|wZ6AMP@e1KEM%LKE&M(5vhdyYggcsw)EZlBTKCZIul? zg4CD2n6SM~Y+520hTHx+Rq^QWHD07ZS9fsj`FjR%*cFnb6vG9yf#8jHDAtD0g1)y+ z%baIPr~ZaGt>oLT>c)BOZ}F!Iw@-$tN9(=zm%7}~T{9GYv7U8>vKRJOD_5;;F`j!y zq?H&prfLv+7pq95Ae8NJ1YZ4Co3{c`MP{C+Zm&qGbv7`tH~XoDXJ<8A%BQhBC)-Rw zNUBUuLFt>$zNnFSthD$h&ABSG689nxETXxR;$@mq3YrH%AX7VYlMP+t9vyTCtj$6c zk*=)RwHk|J`0;kw!T7!RRg(I(TWoEi)Po`jl7Zn=Q_EvmPN`m+!9PgGdABE?jzecsS}jfmWp(QP zvvAEv105B?Jbus#(H_EMu2VBW59XZBUkXP|EKz;xmxTvzApWg&`d53oAK5`LCKZu* zCylK++1uP&3*8@lF}u8Xvk>_M?R2bfe|V$~G=+|hlrF~%7X?}BPu8zjU<2Uxu&eGp zJEfA57^Xg7@VVIk#dT(_ETBMH@pbD)JH*qE-VJKlD6d~yLEqFb{POjHHkn<*57BIk;Vk{p zqi5$bw{#D?pM@>1%XN9|JN`!YQgan#Z%_vvp93eA;l=goPo< zXe$4w>kZvw`wFA3^2`d*!*KK#p;S^)>2on><$5JCS~R9!Jl|S!)Z`q&wJo}TQEBo2 z0ii%%zu?3h9IdgzX_J4;D?U~HgHSVQ**V>vfto59uY#JXKK7qDB7*+{_0jDFUMd&~ zm)?VP!}W>lTD)24t=3b>4RBj>P)D7ZLQhB^eNit-Uv;9VlOuJMa-`0V#(!FxT|gAW zzlgdCH6#NhA`@7c>>S6*MJzptGZ?y>4q`dOZCFDeQHF;RPbRw$Vg;j`a&FH-tYJ6= zm38mM3C)rsc6TJ&T*QUj_D(($*+*&_UZUR^e3J-aj)H{>wf(elL_u6Z+a%fI^SDIO zA8?ph)ZgQxl7VNF!NS00k$>cl9phNrbO7zm2e4rRo06SPT}5o~E@I~eMGUn1ir}sOB8FOPBTdaq!@jUTTsw~4 z`#L9JB|}$6#^F9BmCU2}MUK2!C&v&L$#F5gvBbCpr^`{p8FFmE3V%6zE(n565=kCW zh*u|?=aPvDiU6arDRM71goY2|)pN+Nb&}d6smD+^foqe3Gmh8ahwH^T=Sa1+m~+|@ z3hyL+2Z*Z`5g)!CLDJP8`e+fK41Ky& z$ajVIkK?l;^6SB5veg%wDB|;>FV;MO14SHa^@qMJ=&$&QPS%9JmLO)>&uCgH;z{Bv z$!N{F{?NCJ_}(J_PMUs_ETrvMZVUTDKNPahR?4!H$OTejX@6N@@8lEBk*26;d=by> z_d@z}FQjvEHLj<7ZP4*5`Q}kA0uIk@-MKe1fyFKkRZK5pj-s@SLMKV3hFmys!LG6D^uNq`a_xO z5!9cK0z!~~nIioQRN-Y(zoWIbCiHy57y5g`A5GMTeF-J(PpFZ^g4(9U0;M?-IvlRO z4=?VM`A993#B0sJ0Z>Z^2oy06QP~Lq0Ok?^08mQ<1d|7gEt8jFEq~p9pjc5r{9F}E z!giy@q(NeWQsAKm(^?asn#=BVyL7*DcejQZ`62!bV}e8ze}F&AI9oJE@xhmSXU@!- zIWzZu`~LYWfORYjygxo}H{R+8(i&1=>l?b&*Vl9_^dr}ki5munAKJvYB9CND9305l zum)rea~Vp(@1}(K?oE(VX7?JaXk`P36*0yO4=ToZaYB9`mjy}=B`;LS^CU+C%hmHrR?kCaT*1{M<}lBVvt z#P@ynRxrU9u=E8puRme7QaQ!K39eUe@^J$FBkp|w#p{2W&*F9bzrF78+asTIB$+m1cq`#M+ z;of`B_kHKv^v;bd3cj*c6Q zNJb?mlRbfbrWsWSf+PFw8NtMcrF)sCjI1`s!|Ak2I+Lf%$m~p+84v-BO{PVovTCVC zBW*;osaU4BZY<0O7rAJXPUSS2Y5t{QRhoawGzkYaLRpr?OmoK_F|rHdZu00fjixir zng~jz8BFCM8#E)*m{3fCXwt~k?b#Isp;_eBX(r8Pa*f_mX)co^WA542G7hZ;X!B`- zPV>lDjMk!3B~uyBY=@5|Ajb3p>S%4dXb~;eX(3$+t8~J+8dVip&4N>D8I#kvF$;em zW2&eMjy3CsrTbk}Lw=pAsTQ`fIEk5cf@a;$aHbnZT+UdGddg5AA6 zaK>rDG5HH5d+5e8GARY-Z`6MX26Nn)jTsq@j$x%qqZ2T3x;LFM5`JN5jb6<(S(3?S zV)43QEREFpS_su{WPBE&FYgh(KC{!8={9`Z_O|+}jM}bRpT8;5D|R;~dXI(USz~Ff zMmOPvsF9AOVtM_zOF6^Mbc^8g)8BTJXZOxJZAyg)9&(W*G$E zL~qvVB;7V%m(mHMqcp10TcNxW3R}bJZiuVW+fWiLtEL-zEmq+u!D7hPa1V}qJH10V z$vejp!nR8P1p%Z&;8L@yMswR}#^Y8c0FgWC-8!A3_b_>@O2b$_`#zoSpwps|1;=rn z2YJ6vx6|EBYhEcB7Bznuoo31k=k{zzeqW^zGHt24gwtBs8^%J6Q*NH059{mkxGLi04`VOkLdITdK5DH{Rgh!c&J*V z$MBH|XHc2bF8Y$-rkcKt(vZ$}r1S1wQPom1TYr_#3+Ts@dCg>zwEHi!1iYfC7Qs=L z!?9nZuM3s^H`9O0{~TYXZy=lH*%elPN@DbM*&x&1Lc zE4ck16bQ+!U{><_Q)I72s0*T;!=0L9X%T->7yaBSald~+s?KBh4+(@{6`D)QPkjM1 z-=+LUr{9XwSspQy8FaDf?MAPQekZ!IQ}lmKGslY3kd4KoqW=CK#RmcK2c4c5t%*}K z?@1I`e@XEtAOlJNM1K|}{(}6GF|AD(y(k))=jm@S7J3Av#e#ZW^bfjUXy%_%>ri7) z+{mDJc*%b<@5|sMj=?0;Ewcd(IRrqeX3QbwX0px9_XRGt2@T)NV$hIu3g&1|MqTU_ zJ;lAO7WcEVbgEpI?_7qPs<8!OWM_km%h{!~&Xa^fq3EkG$2-PlgOT=vr=lwGG^Q&r z4@YGW5<+lHLCzQ0JGr8ar}KUM}L`4qhShL%KQ9lj(KwD)=9J8Iy%Q9ecIm zV$6RMVqxvLygOWIR`PlQfpKENsM3jsper1g0pENgV&tub(PECpst;w&m&nF5F}S$T zYCUQ--lX$J5pWCgP*KxJ`;uk`;KvMKIN57~0HoJeg8Lb^R@#f*ixmGmJwX$*Mt=52=_l#b+ z=4GV-D194m7qJlp*|BG8+y)zitdTtC;++;CW|wLC^GA&|+|IPHs(6N*VD#WU7%+G* zQ&kDYjJUQSu@zwyN225Ftos8i`bP)-f-z?<9pi^C-p>bg4)H-WgC))jnq6Jufa`xn z(b;eDcSPsI92Nuf2}B@VFe1`jJtMJJmLQS8Gig3yM6#kC;!b$INHa@H>SJtnvd)a@ z+{HKGOgMgL4Ar$LAB{PxQNm*)Y09sgkg%L!7VP%aJG!ojJbbjCU`vtDaKo+x@rPhOZEJGf_rtokufo?tSTk7 zWupxxa9b?py;h*Vj%juY<6!c{H|TsT zW1Kp4Nro?BjFOv0yyQ=Mlg>Buo6&+qW1_X}$XdZ57}NX-ZgYl7-^uS53dT4!DPz{RH@39oTLgZe zyg*@$P`1{lt2BN;Jh1o@t<^}U!(B#GtjiF^>;qPsl1532%efU3r>W93z|V*H!#aPE zF$FpH?B48Or?D7(K(?VbBfNiaMk$&H8eIHw{)A8him5Z(6GhGkg{lJ$qE>y1?-evZ zU8u9@?z`(6VqGoCj3E=mXMhxy9EeOI$vwcI6*!;6PF0H}1ABd5=ll7L=$_7tx14C9 zkPD`cHeW+Hjhgk4$meN(7`E8CYsa?c#@!l!VGN|ar{YH~$a8>vb*z8K!v3PQ_9bi0 zg8PcK_EkiJaUv4WrenwCjcRzS8BE2VRw^X&)JpD^%!ZZ~zM=C4e$w&^d4+@eQ8a+& z?{)Z_{4JeSei}xtjYofuYWy8oGjTMEG2X@Bv+_RXkMbD0{1iF~Glll!ht@iVj@cs= zcV&|qQB=`i`_2 z&t?qEvOkrViu^O3pA~(FmJBCNk(FhGz0JkHF@jxou6k69~=H3eys9KXk_G_ zLu1@b8?O@AdGUYVk?euf<%SsTWIKD2hje~fp`v+YcQ?!$RTTxPBpo-59+4fk0bH>w z4qdS+&O%>b05^}z%Nj)kWCX75QgnI{?y8hS3;AD%T*@R2Km39+83vBWIy7Y}I)V}* z&|sPwWQ%Z*_{Bz!=a^zwsES)xJRAViFk>X9bJ}$gaa(+^8LKPd6?& ztu63!g;J?2K4qbcTCBIlLY4!?Kfg?XEwh2LL|0}jRVZI5C?fhSqm8|jvQ}~6GNoEr zt_Fgn#ZP}p@T?P=B6eq2O?;kGtJDef<#1(KtTx{($HUoVq#OOZ)%pv2Y064rAz13P^z*KNivo^W*$WXT3=$2ocL}v^etJOUQ(+mn3tT$u_)+ccrBry61*1XBxS48 zg62WlhGLNKhsC|UrUb<=j3q9oM%}I`ZRi4&9ZYpTxET13`i_TV834)bKU}MQVVR+P z8B>22g8-;w+H#75FWxa?mHT38U)K6@MN{?^<(84kqwE7uBkIEp+YKdQR`*%Alh8_t zY1yUk8;4U>K8P?yJ*!}fs>zpK-^lc5l`f(0kx5w2PB;jI)uu)yaV$kKNTw38q~VJQ zKkPwelk(@2nQvP-mQ8dRDY=3a?;ur{Qp6W&_>Yw?qDe>aR!*cUr?zH+$^#EP<5FvhoedOLZNcExC>Krxo)7F~cvg*S3cKmn}J+*M|-sZ0o16{VW-dN2od!vbnq3?e186juP(bvy?8ZX0du) ztnMqU^kU^TVkP8$9RS_0KTB^IptlUt?V*5uknRZi&(OPa^xl5DtDinFNFNFX9Dc98 zpYC~xKFJhtdYuo^XPHj(d9OpfpJ9J`45R~Ujs{Ni$GxiiVId|>8>BA)SD>Ej8@hn? zFXregr^yR670P+Ss~*nLg&aK{aP$q`hyCx!{aUdRrv02zPKAhlP^ z(Q~J1x}YWA3%pJB=V=GZ1XP)XdV|+7NY977Wry7_^wS@6^w%8yUF=rdYCw}@wIZ?>GZzB@@oE7O=o>l* zI~m2yUKFQ9Cgdv*&>%2!>=1wNYrJ+a#o7Q*ZX2Xi;JlxwxO;Q#KEpF}JbT32)KX+? z56{o>6`?iS-84h8$%wx zrk}4pXT3Iv*9UpaJ`cAHa4XI_PZc7xAd&+(UMJ)yzlV1W@U97Vr^potsEE+?hs0;K zhj;h$z5zZ28N`CuQMAH`Lv4`JokcViq{GX~e(uPzaoTo%kh?;mnn9i$>gVo$K6-}D z)ob-;Mac~?&q5Z`Q}h7B5#my1xZJBKcDpX^KF0+wVmO&3HsCohCTfD z9KS2HM!j1&_GGWK!qU00org~q_H@Xk_R%D-(^jEM%lJbeGr;f7@m&GU!*>txJ)uCE z7q1`7@h5Y9-yq))KeDgUa{OS02A0T;62jE=dbozhmVav?|s<5ASh6h0i zs+D;__c{V)eQ*=3JR(+&6O{ad&>4Pgm=>H<5`#_!wX!q(f^L0zdFNl=iRh*ke>_5`1(@~IQVmp|0W&jU!k_gX+9#|KAQQTvBUud%Ic?IQ=b)|{vIL1lL6U=R>< za?1Qx`y(_jWUFZ(P!{EsEBlqD1BxFfuka|Va>`olmWP5i_r`XQvJT5vV?o8jvUbK- z!@iu-{5gN2Ho3grRt>N%%LbI~LSy52=eBbN6~i_jrB&MIcR6LJN7*HeTvnvXXWK_5u5O`MhBNk$8VPr#t63PY^kmIakQ%T4z8$H#s-U z=VoV%vm4K#bBBEHc3v-^9nNm~yv2D^t;h4E^PLj@l=D5}sn)AO`P`xIlF!|0r+miL zTf~zT1=u!&Ru6$aMWu}@EhJXynjxB;{|4D1`Ut7khy1%X5gB>2(P`*SnZ1ZTQ z%}29ri^*$SO0#WiXpXIs=Gu1BJX?P^&9^0Kf$fdtv)x8l*uG7bwijuk-A0S-DlN88 zp)2ifT4JxFDtiqrwXddS_O(=PucsROb>z1nqFQ@|>g*?Jx&33b!rn(K?GMl@`;Ta~ z{YARU{x4eNU|Q=~MC%-WTJKm+0Y?jMaO|L~9SPd#I7XWsy>yM^eRQqk0jfH8PNxRv zT55E@hnk#sQM2=hv{~IuThzDFR`n@rQJYt%27H$Y#+5QbsO9u#{)Cb{z761TU zEt3I79Fl%9e+hV8RTcj4Op^C9nQjSbJEgQCZ6QrFNf#Q*0ELpa5DfvFmN2vsUuRyD zS7zpgnKx~5K}9WYD2rPW7u<@93YbnJks@MSK?QLKQE@>*#RX9jk@%lGGtDGTBKf|_ zdFS49&wkH2_o0{XIRxM|)vj>MHP>ue_xk#sR_sbUe-*Ef)W>@3o9bh3a==Mgp5vy% zNjGkDJ#8m!D`RuB-^zqz{dVliOg5RRkMvrJjNMc}&=*cx17Sya#N(%}S-o}*Y18Y9 z=X1Q#;>R(KUrJJsi;Y&-3w`nbB=PG=~K>+71=G_MQC?cMcnG@%p%U2ZlVvo|{l zTVbJ_f9`APOIz`T-LfZb4Gh@nmiAP}vl5A=s|=JW%-&_~wptQas;}juoxALqXP`pi zB)yvToJ32^O~tb5w4L%=+IY;`nXnC*JhILmzY87QxR{s1lmE zlkqk>X@#01mUeb##Z%kTiDQRSw%4+4OFIwEe-ScD?REOHY3)&kze;d!hz;axx2} zS(vrZ)8d0vTp`?WJmK+Y3!=zk6;_M1H8j52z0$;51=Dl$R6(3B0#;z1!jefNI8KUo zT|^X;ymT_mNIJ?*U#%T`SrBJqz3iSte|4RVa0y~Ve(5}gSu}RT&WxMLdiKSZ*B`{j zymgxt7EGNI2F~Y&v|=$k!;D%NStFSK7$|@9GYoU@VHB(3G-9N4y?y2;g;iBS{ln5%F}|oQCDw zC)SKN;msoNExaTX_6)qW7)s50Lpp6~nFih-z&KGX^d*aPBx0+6(Jc?!998;|{8H4zOw31!8gAKrQ zH*~eNw-@W@m!yQb_%i*+al+}ndZW81m2j}O})+; z=#V*Ks)Rmf1`i%YP7V&Std0eY3|cs3Y}y;M2l99BtNH$uFU2Eye>=X$wdRbzd?pSN zN!u*gyIF1Or*1pN%M`@daldf+2E9?#>bz`kubsBzTWm|WzHc&W#l7~_K(#5*`de+Ka*aoJ(~m||lIH^Y^m%3N_6j}>pM7E|K!pN-qt+Mjm!gxry%|;?)e4&Le<<% zbBa@riNA4dkd#Zi)Zb$bJ>?Y*GnD*yJRe{m{713o=gXMf2)gfI3chV!$2wxk9#8%o zFIM6O{D-1Fx5M4T-oqEgnCMdKNk#t`F9&cHMrp_%Clz=1WK6|3g30mPvz!!5`iZ4h zwDnu*F8ivif1Qfys-pa=jOSH3{j<|a6@q9gLt*~dDY`@koZ^J2DkZD>`HC@B6${zv zYuB1;291~IYo*+jLw)tlRkQRErDjV7-#$fptLlIXs2cL*q>}ceTa=nw5PoJ*)vCEd zIgc0ZxNSp)#08e)ZI*t)iLX7VPE-p6YJuWtJ(H@Hf7~?Qq)Vw#OS}H%j36KDW-vP@g)!ES-2A+lk(5 zHq}N3s*TTWD$(WfMSr0+uvIkWFe8PsGn?FLf2Z{dA8h5E3~4jUXU~yG8$cK=Kt9+s z02!d1fwu3!*t}9!5v>!a=+y+Ia*O2mG^E+>LHB*`9-yL%h2&8r?x^Qq1oh z#KK4!k44G{u_zj;Xv(3#dl1Qp;cqo7S}VhvyIE`QN1!PjD$5}oD$il>EvOpCH4*aw z+6BKh8ZnPj*66b#a|HXMk-!kHJJed`e{T)e25YN6iNztaHn=((nW2@g3I#&^dUyBR zg6hENlc7Mw44GfWjSBgX4=U`(8u{9<*tVCEANBvJI3yJ4ss8v7ZljrbU*z!FVSK*( z!03b2uVN5i%;C;($QZ_;C^k$p4&XQ4wUrgO;gOJW6c06Ns%XT}>m4)=<8fA1@D zd>~?uXsIDH6bKhW5zbStETLo^=#UW{j_!~XN24QnkQxr*JJk;l;n5-dFo&N+%p4vM znGxdvI>lj?Az8SuDO$A1=&62^77gQfIXqMS$75y{_syQ_XSKzDJ+`GHMp>&_Tj_gk zw6*eM>dad6mY2JWDZt-C&Fs#Se?(AKvK@_-Nr0=L8^%BH#!ERSukz(o#eT*PKhidr zhijBc!&K*p3PdaJ#Z}R0sJtiYuTjCSvKlqBtGu-$r{>gF^mGlW6LM-k(%l8Zpc6g%OQZfBHj47u{W% zQ!5zECpr&cHh&9*(Mo>I4G*iNhL7OnP+8GU2fA9M$k4Jgnj49Eb$Ue+VP+X$~0zUu0V*WWx<;ID>smpmZ96_38`_&sJMBOsWC( zB%V-Lsds4jE_Ji(jc&i%L@N4Q(4IfoMR8Ilw$LcYSKc)UC(09G>1OAz+MZ7pLgNAjzs>gPGN|Od&uulVHIvORLe{7lS-U9M#HTF z6(q2w8!clSWu+V9^8CgNIC+#Ex{Q6gK**6&zB}`&bZkRWV{g8_7l@DXYK{Zlq}$H@ zE9l2-ISlM0-Az>NvuyD%A)q#(N^L|?^aw(oMx@x@T>>qCw28l2$o zLaqM_%=O1H&+lNqKY@^cK+Ey#vBUpAP)i30lY;XFllzKjf7e6n;l{gF@YHqDRwydo z2%?|}3WAq$ce;&c4B_ zEHh6P9%0yQe{60wm^H1R`F2-p7Hmg)8{AS7sf5U=Bx1Ek#`0OLx7Hi$Eia^=dp`mp zP&rS#CZGeQNnj~8kslcuYVvQ5%rY|mQDSqc_2PHlFD_Qbpup6%>`7nCB=S$Mt|`dN z7-qk(@xwG`zlq~Mqf)={-(jIGmF^lkA!}vCMD6(3Zsj~LZp+m0u1ZwCC$O;m*Wf?A zav@M!Ub%4KV4{LDCLN4mbQD9VI;dc*sHO!5_xY7j<)+L(Gr$#7TvZE(v*2(r&g(39 z^C)ouldG4PFPK_;My>vgnJ1u+miiW@Pf$w-2x_|O^J)PA0OtXd0Yw~>>x?jecpTMr zKG*x0)oT5aWZ7P9@L002w5yf;z?PADNwNW1>j#n_tnFY%yCZ4v?#{9^YgxPsjp+m0 zrX;k9odzf=6>Vr5w`OJHfT2x+(2_KLr=_GVNgoMmQrfgNEo}dDXI9#kB}iL;{`Stf z_uO;OJ?B4tU|_W>K@V3mfqf!8;xbOT+Cn@snk`QHg4Vo-u%|` z{*gjDjR|W^i){d@XGe{!uIG*HC}xlAc?)M@erw03j;*nje!S`400}{V!6CDdPwF=s zXmbFXEYVwq8 zD>oZiThC{;bms^dJJV)=@)$1Mxnth#5bnRm$Qt%_f4yhAjs3&b|6HHXi1P1suQ&B|Dm@+4MAE;bs-AT!W#0?vJeHRhQC&XC`h&Zbs5~L z$z5yLuU{`{bj}O94&4@)&NR$UKFp=0Ylmz`&9=4=*u2&q`xvHw?AuY@?n`TyC8(jb ztwNTZ+!mrMXf<0w6%?vGR-q<1L_c9zwj~XAC`44I746A^1>ss3mS6d@Q>uCdP zu~E?CS!)Ucn;K?+MEB(LnmkjXEkWvHPuCjOb|VkX%=|=%u68cejSFfipue#-K0A)K z@x`y9Yk5DAxu{xkg>Dd}7}gHHU5I+ArIvcAPtff*N$;pBFy)Qm0$V~|*J7JdI zS<_aNX4ck>tg2-vz~<;==vIfi<3tXGo>Fa79Wk;gRX?GBCGGTtx?!4cq9Z^%;GYpQ zpV45_t6MKc$>BNfaw%7cZlarm)JFY+*8PaEQfNR>bL)q~RL0n@AjN67Ag^WIrAs9B zhiEU|!iE||sLyLC*FF}^V5*t_tCjZQNQ40Uw!iICi-hO^9b{E*1z*}24$vV+1oUm2 z!x+7$X+uqaEw>Ab4cS^AsbcL0g+3Cb+ZbJK)i%j$8O|3rXPr4F@aNne$WvD5}$V53O_PGU1(B?T%^5ISdz=v+`iEZ4xB|xJnC6dL`lZCut zPjv1=PD2{pZj9<24hBLD=9Xy5CgJZ5bDZh=VQv|JFwHSa2k8!i#>*?U>(Ay2Hbm%J zMj?}vL$&e_-tG)ij!=vi9PU-fF6RUARBb;FK;jEA?`u8W%aA-l6G0lMyAV}{TuQT{ zyMm?ueinNV-OC!?R~9F4vu`YKj%&l5EANM#WZJa!5dAn;m2vtgKUuz3g-Ln~Mmoi{hNB+^N!FR4fo*N`X8nY-=MqRyNA%Cp$Aa{; z^z+;Rpxdy=LiBOEg@gPPm|`qtaq(5HeV6Wb6@idnpkHKNJ}D?RzYFKtd5U+QM)9%D zvaU;8=T!BV=rhdw7}uIR3+Sgp^aLl{Hu`0MHXu4L8#eu{lc#?LDIehK8Me%H!PdF1 zhv-*XLNiT@1^xq!dm|~EH`N@OD?-!}4Nys~Y00)^6X>tzX>$1SBG^ytJ+!y zv5!PEZrEcTE!jRZJ7VNBsy(LJ_|esMm79mgG(^f!A+t`+xyCdi5JYdWJraHpBrRx`jD1 z%^?JJS~fF{(;Z4Ruz!nwn_+nt8Doxhg^D5i0-Xt>H#~>jQOMq92}*zUsY*q*MeuhLhT{WVmiOSIkrH76AM189th-i<;T zqOWo!zfNC6#+kPt=a}D@*Z9?cq&dw9XU4Cid9}0=nGsl)peui*oCPKSnEoV4e?))E zC!-JaXO5wJz+L~sNjcv@o-8||w=gooiC|B`uBaq`C1^#Zo2pm;I!JG_U&1qX9 z_cuX$gZ>uXr7WG(tAaXP<8zy?e3|OHhWorl-(uH(8(x{~K!yGRa2rQ|*@eOXiL2T_ z(s%ghqr3}6D=4AJDIy)BFVcBN==UqD=$?u|`WL(e`pg2tl$#W}Qw`9+az;l4c{%z6 z^zVWMg7QCMgn1uz3cbtympK}u|KJzfjO_4|ED;T}3hunEdqu$&jWD@b zCTQ)Do=0q`dEGALvq59OA1J!4n`v>C{CUF+y zP;HgCJSbL*E2_7}6@gddA`~&MiCO2lhtxZ3|I8XBHHqe+SR>XVC*Z}^t64^}r-0Ic z6zvqHnI^hynfZhvbi|cn9or0V&w2nhSxBRA+i&Ulo>52)i3nhVoOyKei9$$1EUGivEz; zEVk4@r!G_#oZ}un&Eak3ep6g6x>*L^?~9}|TFT`JiEEvu>&i8b?{G6}@vM8?;Pgs^ zuIu~Y`H<*E7bto}A2)w}q`S$8RF8yx>DPkBky4(Tc#c3C;zA;=>moJx{I~gn~p$A1$ zj3B{I_ju!)r5ZE0?g)r6s6z;R3W#IKt$F!6-DieGhTD*4fyk??%x|*23I`Dfju8bs(Oi}%LTACP` zqQ=Oxv^@GOh1;K{m1m^yYiJc+?rajTVv8SRZ8TD(H3y5d?lc9@QRl!UT^}vdro_N2 z(2LZJ z`Q}6-9;rV(MMt3QDQb<%^VdYr(`~HaQP9JGiTKO3IQoM3395;DHcpaPyi$2Y>XIWC zN+KdaM85zNEf9C%_ikEPf~h@h={BMgEakyxvrE;IN1@H-wT0vZrBD}W6lw~W;16c+ zav21(D-L_hl_lz7y4j&`z}H1uU4m~GU?vWa+zkaHaJU~E_hNPo!j8jRAA{J(Fgpo< zzPA93cd(}fz8cbL#Puq#GjzV%{t9`|)Q_E`?C$fFOLTjqQ)JaGp)UoxePJ)V?C!)C z|6^1i3;R5c{v!R@B-~A(X!I|5oc;c0EbJ}P$s+v}_CJLEQ}nQBi?7iad*Mmyh&B2) z)luobbM#1}8=D`6!E3|bCF_gyse=%IkEu@|Jm~`>zTVDq9#8Bp(vzp4QZ!Mdr+~Jn z;|hBvairVpi41w8L%#MQe{87!*TY`NMb9MQpx?Y8wYUHaG}2`-IRU}Va%{uz=4pq0 zoPxghX_-QID3nvEP@)wi^BqVM3O!I_^TOhe6Q}v$u8R~XLAt+Uv7n$95IQq|CS3=+ zixBt_`*aa`D>g_scUGS${kRC4`{2h%aQtiduHi?J8@Br;Oo+BbB#>hmo@M;5^<29u z3M;Q-$VZ~9HUjbI=(*G6^E`8M0c`p$a6a`6b_#j-h2(jU>J^$2D=tE04R^6F9G-SF z$&=^l`9xwDEc!x`eurc96^_w=llb_3f$(}gv6~MAN@7L&!*ld!GRXe?6fI`^|K-8S z($^;GaC_`Ly}_JsCKyCh^v$quivF%hf8Xt`^Ui|Sr)hB+THl>4eJ7T1@$@$SPnPZ< zh~T8RFSHlwduRCP09SEfv2a7l~zbxJQJo|K$lLMZg#*lA%S)tcC ziow*x;F+F%L!og%i0EBfQNpdfQUKV#MLoa4QZN=J~m*d9s9tUC}biW=v5WPzdxLSTakIbtPJo;v8B z+Ky8f;nZ_tX;CaME3|SqdmBYY)G(SFM7Y~4x_zSCFZos{x)nx$R(F7*1(1G|Q6*Xu zfEh5v{}b)Nm1rx9_6E^$v?#7RE4CKJHS+iRmqgDg+8Oq}D0+%wd*a$Udi4oTW?kp$ zodj#O>L{ZXrnsp=^h52i;wU#Ic3v0=1Gba&eRnK|eTkyj)9tTo1)z5o#o!iiO;=4# zS8dqeE|Kj+f=r!%6So${;nTEtS?#i#M&E-+x@xp8d}{buDvo4o9{mi3men?TAAIyQ zEsrhZNxiG)tk5vEthOjd!+~~BBVy&dETOBmt7fwF1nb)%3|1=|4ut)&v*L~hk%kS+ zp@X^?h_byS@QHcw4660!f$}xsoCa}c`F;(;!e>mH2=^|3IPQu}i4zwpCBIAoPS+>H zKK_D2Z$~cB8bpIBCPiG1p9N6zbg!g&WcpsZpS}m0$8Uo^NuQH6k4%4_ijwA$>6hqL zN%P3`SMbX;k4*m%Phh5bWcod^K+-&d79QbeT8>OF5=$k`BhxFz8cFlWbeGsBX&#v# z6#FI3Bh$BkiV;ck$n>4!9!c}a^wZ)S@}4p`2!ocCpgLMHp@=0;85mc@8jfltfM(gG zVTD6|oXW9Y!dK;jy8$BNa!F>4X1T10^;HsAP_47d#RzTn%yzGr*Slw}i>md85;e?q zvePb996PNpR#wvjcSZI)io4xOXzqPHXgeyWA=kY>4%%#tv)3SLJ(t}Fs$>zX=a;io zKD|bs;C4UtNPo8=SKSKpKSCaqF)ue!><;q$4^T@72uXpH=MoVB0Mj6o0Yw~>Po6b@ zp};~Zlu|$tP+S$;!m`{n4K*f)#Dt_?Vhu*VO?QXw!rs^m#u)h_{0cRSi68s{{v!2* z@eD0Ou$7(cX7-))yyr~L%=h14zX4do62sBq;q&rawa$$_;hE~XYV4>Bs^PnV?eN(4 zJZyvq-`?r_i2pVoJU5i96r7(G)T65*M=?g#~a3_bgQi7jFV zw$0Fc-}dbI0Yi6TyST-WDipUe$Y3Z91=$SJ80be2ad#d@UOd9@fNuB0NJ>iq&?1o3AkFmm&WYISWKC%mY1&Jal%>P%mcu=C(*W{Khe7EuJ#&o0 z1&<#@oq42AJc^yGm^#M7f2*JiL@shU^#@Q(2M8yw0*RB}pjUs-O2a@9#%E3c8LQYQ zQ1;YH)1a*ost6)@5)_5rx0`9Q?Pe2p(|8d3Aijks!GjOrLx~g7gR?Ln-*3N}Wk0{( zKLB6?dkkJSoBQaA&xKr}iTRYv1s`&mXNA(DRJjSVJVxRcH42AxnF<%k6y?gTGsmY3 zp&br+kp!720#$$Sh~vrl;#AsR)kAqDhoNw8|tzE3}T@A|8##qbP{6 z;?Esm4E%?DZ6#hSjSLQRn}mrKvBvPxilRUp-ib23bPlt*M%#u4gZ-tbM5u*H!rS>0 zW!Z)ngVwn+s=Q!u(7*W!s64E)a~FCS!UjmW=6k)iF#>7`BzF+C@%smz!MkI4LWd zm(nX-e_!|fsu!CqX{N`MF{hlWYEH_K7{%hm_~k3(Wb0=3{7b%RlEABIsY`U^R@tyP zcMYpd(hcr<6pQ4UvGK7?s>nBDKZL*-)ST_RI=^k0oFQ(z<#gHAiY8BQx|-u~H+|Q& z=_L&ANt;>CBBiUKgQ0s(+tAXcW|h;6g*C1Ve+8WkXUbgUwmiYBO;3gk@oZpi*l7tf zHL`Q`g<+=WHD`(;(yCXWGISc=PFn5pk^2!u(4``blMH=L-)Y-4DKgdODd=Vh@v0-X z2$A7*{BV#6dT>U?Y4ly4c{~*F1IL#T!a8=Hn`7NJV#$4-FFlcefe$s{l4r%bNEoLvxBMFVnwc z#6?y9fXl~{LI05-7@W?+=gjZHg>5R#(a;vYg41G>K6g-WcqJtLGV3f{hPm|@eq?l`Z zzu1B!vN@~L7E^OFbkTpF!iOfKGmveTPDO8rwn9?m^(f_`y7s1OQ%4|}qiht8CaVnu z*T%r372-v&2BaYwWp9VG2Y>R{GpNJe)QX7&b979pmUL-0+z!8^v_Pv0R}9g-6;tmN zN4q5u20y$PaE>^ch z;P-}nlh4s6N2hM>|yYssH!>Zj;G&PyE~>Du-o6#Z)EB; zDtRzt+-z|E1=&zVKNVmKQNW!%Q>gUy3QY7 zJnf>qOU^>~y@zct94{q=UY_OD3d_S}tBjm`uj2jdVgA<*ANubksr0Yif;@--YT~SSaO>`~2N;~~yc&wyzYt94z#l3zWdf*xwb2v zA0BFm4i?rWQ55o1KY0weXm&yJ>D7ki=;`&x2M>wQbU#bcCM3a6+>MYoohS`RlnA1| z2w`80-R^mVrpdzy-t*>jj0d11%~KZYslsU#Z?KUO_wN_gdx0wg`X*}yIDhhnQQ3Pq zInSI@3+L&TA8#HpWf-4x^Its5o_sX+&(1-&G3advRfI7c+s}!U%h9X@nL>t!rd0xc z=XF}GP-dQ@P3dJT$j+ds(z{u7QBY5GaRSsrS$fqRWhG|v(M8&{Jg02f$^ft6qLBU2 z{%!8)+s4q+iZXde3lC3**b4{*r!yu$?PlF8Iu=~V&xz}9vKbGqXzjCuGzdkSYk8asfJ0j4(e1Ckj06slMs(&|KCRCiCw~Q!rlUD%>s&^SX z{$!XLniozCS#~q{J##OoBTvuf{6`9FV?zw<({^TkMNKRi#aoWf-ERXNoYqQVmS^QX22+BLQlSsuq=*|=|S z#XjC^NE`^7ot04i8t-l!`ig6yX)j+`6+e^QvPHu-5Htfw9Dd?@;=a-V3Vj^>MT!kgbzaQwl$~7lmJ|a&A^k*2c_j zQ{#{+J1Ks$%!!3Np&BNxhC}GuK)V5-EV+hWS72nO@_N@ur?QF@>vuPoI~Ep3+=&q1 ztrnX&M2D_WjoVIH?K6Gc(wW&B9rGfZTbB2xHQ+ekgs#Rs4~4AL^BDa$kG2};+j{QG zoqGIwcO2*r3+-fvL$mXJF>&5=%nDllPnD(I-o}v2F@u|CN28Q&v3_W+$PC9RvLLgI zPpi`n*Vq+bj-*EmAT*+H_t&;_*{lP3|6fy zdZe&B{V?PD0+bAlfzqQOUvzYm4q0*V(9&TCW?RTap7{8V$`u;~UHi2Saxq zKx7k=r;-|^Ks;{oFJjPSds5b+;%?Mt-F%Lsls#avVpqkAlP4Nz_$@}@G0Tv^Z4r2~`^S~@B6KZW5QXHycQ<)LVW^#oKZyTz!u=Iz%- znKIsjyK5_Xnaq~UdM7s=GOvB(Or(1?YUO28|Iw1atTLVXy_smh5C`F75$0#36~c)x zyqUtN&vHQ0dTHZV9VAKu|+Yn-!FIM zsk>mTeukp5&*%%fZFy>9ha0zYVy^zPr>~`5t-oz`CSfeGBOWpWJR{p~CPa%*?6iw; zAudKg;#4l_Z``e&O@gJ zZyX6s&1?H_X#s%&inBAN+8Vokiftii=WuhvbC??3GAsK|FS$uwW>W_OwlHtCB#H%Xhw0FkI|^(oSet-(A7 zzp(VKSlYy+d$LBqT3C0CeE3w|l#)@tpY3M<^}}lZp++#(!2V700V(aHkkxf=*=?zy zxc!9jm&W@yVI}OWWg-u3m zioLs+hTFpMyukPQp7t~sXz3fww76a6It|U}Q<6ua(A7PD0xf!zXHnMPJgN>2t#;s2 z^rkALD)e<_qdhpe*E1!y8*)uvxdW_VPM1yj*rJ+tAR1ck-5Q_c+p5L{@nT&I(+x&eB5F4LqeO$(&g*y*MqW7DVt4~d~7R4+`j z^8x*;QVN!N-lxEBl?&yeZNWkkU|($sBm1fj=Jekpb9_V*J**7H@8Dhl zjb$Y-5FpO`B0z|OZDxf1$%iErRh~qAUHCtc3Xl}xB*MRwK;ZTO1Nq~_gs_|!t;K@2M7%@?h0CW?MkQxb;DM5sM>f~U@xmzHR5D641MS$SId>s$h zaemIbU^d1`RHvZ#x0%CP1nr5E<~QfgiZgC+!S1b93wt3j)cIsL~kyfwP*Bu>Us^<0An>F8v3x5fzW^r$8Wa67abd z5zKJpCxXX6`hY-UB;c|Q5o~N`0(4x#MELh0xz}_AQ!9252u=d`+#`Ws*zx-l2qZzWmT@K#(r=T29k*crK0FIKM5v-o8b+)ls6ZfXdJss2 dL`goE2uYNj1UTAx82CVZAVvbDQ1ZK;_#Zl>@t6Pr diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 414656493..92ed94347 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=b266d5ff6b90eada6dc3b20cb090e3731302e553a27c5d3e4df1f0d76beaff06 -distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip +distributionSha256Sum=60ea723356d81263e8002fec0fcf9e2b0eee0c0850c7a3d7ab0a63f2ccc601f3 +distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew index adff685a0..0262dcbd5 100755 --- a/gradlew +++ b/gradlew @@ -57,7 +57,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/b631911858264c0b6e4d6603d677ff5218766cee/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. From fbf3b7a905ec54eb2cfa42053c648de6f2aee185 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Fri, 27 Mar 2026 01:09:50 +0100 Subject: [PATCH 020/127] Translated using Weblate (Galician) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 94.9% (734 of 773 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Vietnamese) Currently translated at 98.3% (760 of 773 strings) Translated using Weblate (Dutch) Currently translated at 99.0% (766 of 773 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Bulgarian) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Azerbaijani) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Slovak) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Czech) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Italian) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Turkish) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Greek) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Hungarian) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (German) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Turkish) Currently translated at 99.0% (766 of 773 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (French) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Polish) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Hindi) Currently translated at 98.9% (765 of 773 strings) Translated using Weblate (Korean) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Punjabi) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Bulgarian) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Somali) Currently translated at 73.3% (561 of 765 strings) Translated using Weblate (Latvian) Currently translated at 97.5% (746 of 765 strings) Translated using Weblate (Latvian) Currently translated at 97.6% (747 of 765 strings) Translated using Weblate (Portuguese (Portugal)) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Punjabi) Currently translated at 100.0% (90 of 90 strings) Translated using Weblate (Hindi) Currently translated at 100.0% (90 of 90 strings) Translated using Weblate (Punjabi) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Portuguese) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Hindi) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Turkish) Currently translated at 34.4% (31 of 90 strings) Translated using Weblate (Korean) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Turkish) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Romanian) Currently translated at 12.2% (11 of 90 strings) Translated using Weblate (Vietnamese) Currently translated at 99.3% (760 of 765 strings) Translated using Weblate (Vietnamese) Currently translated at 73.3% (66 of 90 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Italian) Currently translated at 100.0% (765 of 765 strings) Added translation using Weblate (Corsican) Translated using Weblate (Indonesian) Currently translated at 86.6% (78 of 90 strings) Translated using Weblate (German) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (French) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Indonesian) Currently translated at 99.7% (763 of 765 strings) Translated using Weblate (Greek) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Italian) Currently translated at 64.4% (58 of 90 strings) Translated using Weblate (Hungarian) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Azerbaijani) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Slovak) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Czech) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Polish) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Polish) Currently translated at 100.0% (765 of 765 strings) Translated using Weblate (Kabyle) Currently translated at 27.9% (214 of 765 strings) Translated using Weblate (German) Currently translated at 99.8% (764 of 765 strings) Co-authored-by: Agnieszka C Co-authored-by: ButterflyOfFire Co-authored-by: Cabdi Waaxid Siciid Co-authored-by: David Bol Co-authored-by: Dot Max Co-authored-by: EESF-2 Co-authored-by: Emin Tufan Çetin Co-authored-by: Erenay Co-authored-by: Femini Co-authored-by: Fjuro Co-authored-by: Ghost of Sparta Co-authored-by: Hosted Weblate Co-authored-by: Hosted Weblate user 142171 Co-authored-by: Igor Rückert Co-authored-by: Jeff Huang Co-authored-by: Mickaël Binos Co-authored-by: Milan Co-authored-by: Philip Goto Co-authored-by: Priit Jõerüüt Co-authored-by: Quý Co-authored-by: Random Co-authored-by: Stéphanie Olier Co-authored-by: TXRdev Archive Co-authored-by: Trunars Co-authored-by: Vasilis K. Co-authored-by: VfBFan Co-authored-by: WB Co-authored-by: codetabsite Co-authored-by: justcontributor Co-authored-by: rehork Co-authored-by: ssantos Co-authored-by: whistlingwoods <72640314+whistlingwoods@users.noreply.github.com> Co-authored-by: ℂ𝕠𝕠𝕠𝕝 (𝕘𝕚𝕥𝕙𝕦𝕓.𝕔𝕠𝕞/ℂ𝕠𝕠𝕠𝕝) Co-authored-by: 大王叫我来巡山 Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/hi/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/id/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/it/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pa/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/ro/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/tr/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/vi/ Translation: NewPipe/Metadata --- app/src/main/res/values-az/strings.xml | 19 ++- app/src/main/res/values-bg/strings.xml | 19 ++- app/src/main/res/values-co/strings.xml | 3 + app/src/main/res/values-cs/strings.xml | 25 +++- app/src/main/res/values-de/strings.xml | 23 +++- app/src/main/res/values-el/strings.xml | 19 ++- app/src/main/res/values-et/strings.xml | 19 ++- app/src/main/res/values-fr/strings.xml | 22 +++- app/src/main/res/values-gl/strings.xml | 11 +- app/src/main/res/values-hi/strings.xml | 10 +- app/src/main/res/values-hu/strings.xml | 19 ++- app/src/main/res/values-in/strings.xml | 9 +- app/src/main/res/values-it/strings.xml | 22 +++- app/src/main/res/values-kab/strings.xml | 8 ++ app/src/main/res/values-ko/strings.xml | 16 ++- app/src/main/res/values-lv/strings.xml | 121 +++++++++--------- app/src/main/res/values-nl/strings.xml | 5 + app/src/main/res/values-pa/strings.xml | 43 +++++-- app/src/main/res/values-pl/strings.xml | 25 +++- app/src/main/res/values-pt-rBR/strings.xml | 22 +++- app/src/main/res/values-pt-rPT/strings.xml | 2 +- app/src/main/res/values-pt/strings.xml | 2 +- app/src/main/res/values-sk/strings.xml | 25 +++- app/src/main/res/values-so/strings.xml | 54 ++++---- app/src/main/res/values-tr/strings.xml | 23 +++- app/src/main/res/values-vi/strings.xml | 9 +- app/src/main/res/values-zh-rCN/strings.xml | 16 ++- app/src/main/res/values-zh-rTW/strings.xml | 23 +++- .../metadata/android/hi/changelogs/1007.txt | 11 +- .../metadata/android/hi/changelogs/1008.txt | 4 + .../metadata/android/hi/changelogs/1009.txt | 14 ++ .../metadata/android/id/changelogs/1006.txt | 16 +++ .../metadata/android/id/changelogs/1008.txt | 4 + .../metadata/android/id/changelogs/1009.txt | 14 ++ .../metadata/android/it/changelogs/1008.txt | 4 + .../metadata/android/it/changelogs/1009.txt | 14 ++ .../metadata/android/pa/changelogs/1008.txt | 4 + .../metadata/android/pa/changelogs/1009.txt | 15 +++ .../metadata/android/ro/changelogs/1000.txt | 11 ++ .../metadata/android/ro/changelogs/1001.txt | 6 + .../metadata/android/ro/changelogs/1002.txt | 4 + .../metadata/android/ro/changelogs/1003.txt | 6 + .../metadata/android/ro/changelogs/1004.txt | 3 + .../metadata/android/tr/changelogs/1005.txt | 19 +-- .../metadata/android/vi/changelogs/66.txt | 16 +-- .../metadata/android/vi/changelogs/68.txt | 44 +++---- .../metadata/android/vi/changelogs/71.txt | 10 +- .../metadata/android/vi/changelogs/740.txt | 31 ++--- .../metadata/android/vi/changelogs/750.txt | 16 +++ 49 files changed, 665 insertions(+), 215 deletions(-) create mode 100644 app/src/main/res/values-co/strings.xml create mode 100644 fastlane/metadata/android/hi/changelogs/1008.txt create mode 100644 fastlane/metadata/android/hi/changelogs/1009.txt create mode 100644 fastlane/metadata/android/id/changelogs/1006.txt create mode 100644 fastlane/metadata/android/id/changelogs/1008.txt create mode 100644 fastlane/metadata/android/id/changelogs/1009.txt create mode 100644 fastlane/metadata/android/it/changelogs/1008.txt create mode 100644 fastlane/metadata/android/it/changelogs/1009.txt create mode 100644 fastlane/metadata/android/pa/changelogs/1008.txt create mode 100644 fastlane/metadata/android/pa/changelogs/1009.txt create mode 100644 fastlane/metadata/android/ro/changelogs/1000.txt create mode 100644 fastlane/metadata/android/ro/changelogs/1001.txt create mode 100644 fastlane/metadata/android/ro/changelogs/1002.txt create mode 100644 fastlane/metadata/android/ro/changelogs/1003.txt create mode 100644 fastlane/metadata/android/ro/changelogs/1004.txt create mode 100644 fastlane/metadata/android/vi/changelogs/750.txt diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml index 212f91988..c432b645d 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -823,9 +823,26 @@ Oynadarkən serverdən alınan HTTP xətası 403, çox güman ki, yayım URL-si müddətinin bitməsi və ya IP qadağası ilə bağlıdır HTTP xətası %1$s oynadarkən serverdən alındı HTTP xətası 403 oynadarkən serverdən alındı, ehtimal ki, IP qadağası və ya yayım URL-nin deobfuscation problemləri ilə bağlıdır - %1$s sorğuçunun bot olmadığını təsdiqləmək üçün giriş tələb edərək data təmin etməkdən imtina etdi.\n\nIP-niz %1$s tərəfindən müvəqqəti şəkildə qadağan oluna bilər, bir müddət gözləyə və ya başqa IP-yə keçə bilərsiniz (məsələn, VPN-i açıb/qapatmaqla və ya WiFi-dan mobil dataya keçməklə). + %1$s sorğuçunun bot olmadığını təsdiqləmək üçün giriş tələb edərək data təmin etməkdən imtina etdi.\n\nIP-niz %1$s tərəfindən müvəqqəti şəkildə qadağan oluna bilər, bir müddət gözləyə və ya başqa IP-yə keçə bilərsiniz (məsələn, VPN-i açıb/qapatmaqla və ya WiFi-dan mobil dataya keçməklə).\n\nDaha çox məlumat üçün xahiş olunur bu Tez-tez Verilən Suallar qeydinə baxın. Bu məzmun hazırda seçilən məzmun ölkəsi üçün əlçatan deyil. \n\nSeçiminizi \"Tənzimləmələr > Məzmun > İlkin məzmun ölkəsi\"- dən dəyişin. 2025 avqustunda, Google 2026-cı ilin sentyabrından etibarən tətbiqlərin quraşdırılması Play Store xaricində quraşdırılanlar daxil olmaqla, sertifikatlaşdırılan cihazlardakı bütün Android tətbiqləri üçün tərtibatçı təsdiqlənməsini tələb edəcək deyə bəyan etdi. NewPipe tərtibatçıları bu tələblə razılaşmadığı üçün NewPipe bu vaxtdan sonra artıq sertifikatlaşdırılan Android cihazlarında işləməyəcək. Təfərrüatlar Həll olunma + + %d abunəlik ixrac olunur… + %d abunəlik ixrac olunur… + + + %d abunəlik yüklənilir… + %d abunəlik yüklənilir… + + + %d abunəlik idxal olunur… + %d abunəlik idxal olunur… + + Abunəlikləri idxal et + Abunəlikləri ixrac et + Əvvəlki .json ixracından abunəlikləri idxal et + Abunəliklərinizi .json faylına köçürün + Əvvəlki köçürmədən idxal et diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml index d809219df..943ee5a8c 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -830,9 +830,26 @@ HTTP грешка 403, получена от сървъра по време на възпроизвеждане, вероятно причинена от изтичане на URL адреса за стрийминг или забрана на IP адреса HTTP грешка %1$s получена от сървъра по време на възпроизвеждане HTTP грешка 403, получена от сървъра по време на възпроизвеждане, вероятно причинена от забрана на IP адреса или проблеми с деобфускацията на URL адреси за стрийминг - %1$s отказа да предостави данни, като поиска вход, за да потвърди, че заявителят не е бот.\n\nВашият IP адрес може да е временно забранен от %1$s. Можете да изчакате известно време или да превключите към друг IP адрес (например като включите/изключите VPN или като превключите от WiFi към мобилни данни). + %1$s отказа да предостави данни, като поиска вход, за да потвърди, че заявителят не е бот.\n\nВашият IP адрес може да е временно забранен от %1$s. Можете да изчакате известно време или да превключите към друг IP адрес (например като включите/изключите VPN или като превключите от WiFi към мобилни данни).\n\nМоля, вижте тази статия с ЧЗВ за повече информация. Това съдържание не е налично за текущо избраната държава на съдържанието.\n\nПроменете избора си от \"Настройки > Съдържание > Държава на съдържанието по подразбиране\". През август 2025 г. Google обяви, че от септември 2026 г. инсталирането на приложения ще изисква проверка от разработчика за всички приложения за Android на сертифицирани устройства, включително тези, инсталирани извън Play Store. Тъй като разработчиците на NewPipe не са съгласни с това изискване, NewPipe вече няма да работи на сертифицирани устройства с Android след този период. Детайли Решение + + Изнасяне на %d абонамент… + Изнасяне на %d абонаменти… + + + Зареждане на %d абонамент… + Зареждане на %d абонаменти… + + + Внасяне на %d абонамент… + Внасяне на %d абонаменти… + + Внасяне на абонаменти + Изнасяне на абонаменти + Внасяне на абонаменти от предишен .json файл + Изнесете абонаментите си в .json файл + Внасяне от предишно изнасяне diff --git a/app/src/main/res/values-co/strings.xml b/app/src/main/res/values-co/strings.xml new file mode 100644 index 000000000..55344e519 --- /dev/null +++ b/app/src/main/res/values-co/strings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index e51fa355c..50a5b7ecd 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -859,9 +859,32 @@ Během přehrávání byla ze serveru přijata chyba HTTP 403, pravděpodobně způsobená vypršením platnosti streamingové adresy URL nebo zákazem IP adresy Chyba HTTP %1$s obdržená ze serveru během přehrávání Chyba HTTP 403 obdržená od serveru během přehrávání, pravděpodobně způsobená zákazem IP adresy nebo problémy s deobfuskací streamovací adresy URL - %1$s odmítl poskytnout data, žádá o přihlášení k potvrzení, že žadatel není bot.\n\nVaše IP adresa mohla být dočasně zakázána %1$s, můžete nějakou dobu počkat nebo přepnout na jinou IP adresu (například zapnutím/vypnutím VPN nebo přepnutím z WiFi na mobilní data). + %1$s odmítl poskytnout data, žádá o přihlášení k potvrzení, že žadatel není bot.\n\nVaše IP adresa mohla být dočasně zablokována službou %1$s, můžete nějakou dobu počkat nebo přepnout na jinou IP adresu (například zapnutím/vypnutím VPN nebo přepnutím z Wi-Fi na mobilní data).\n\nPro více informací si přečtěte tento záznam v FAQ. Tento obsah není pro aktuálně vybranou zemi obsahu dostupný.\n\nZměňte výběr v nabídce \"Nastavení > Obsah > Výchozí země obsahu\". Společnost Google oznámila, že od roku 2026/2027 budou všechny aplikace na certifikovaných zařízeních Android vyžadovat, aby vývojář odeslal své osobní identifikační údaje přímo společnosti Google. Jelikož vývojáři této aplikace s tímto požadavkem nesouhlasí, aplikace po tomto datu přestane na certifikovaných zařízeních Android fungovat. Podrobnosti Řešení + + Exportování %d odběru… + Exportování %d odběrů… + Exportování %d odběrů… + Exportování %d odběrů… + + + Načítání %d odběru… + Načítání %d odběrů… + Načítání %d odběrů… + Načítání %d odběrů… + + + Importování %d odběru… + Importování %d odběrů… + Importování %d odběrů… + Importování %d odběrů… + + Importovat odběry + Exportovat odběry + Importovat odběry z předchozího exportu .json + Exportovat odběry do souboru .json + Importovat z předchozího exportu diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index a0c7f3d43..778321ecc 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -242,8 +242,8 @@ Automatisch erzeugt Import von Export nach - Importiere … - Exportiere … + Wird importiert … + Wird exportiert … Datei importieren Vorheriger Export Beachte, dass diese Aktion das Netzwerk stark belasten kann. @@ -845,9 +845,26 @@ HTTP-Fehler 403 vom Server während der Wiedergabe erhalten, wahrscheinlich verursacht durch Ablauf der Streaming-URL oder eine IP-Sperre HTTP-Fehler %1$s vom Server während der Wiedergabe erhalten HTTP-Fehler 403 vom Server während der Wiedergabe erhalten, wahrscheinlich verursacht durch eine IP-Sperre oder Probleme beim Entschlüsseln der Streaming-URL - %1$s hat die Datenbereitstellung verweigert und verlangt eine Anmeldung, um zu bestätigen, dass es sich bei dem Anfragenden nicht um einen Bot handelt.\n\nDeine IP-Adresse wurde möglicherweise vorübergehend von %1$s gesperrt. Du kannst einige Zeit warten oder zu einer anderen IP-Adresse wechseln (z. B. durch Ein- und Ausschalten eines VPNs oder durch Wechseln von WLAN zu mobilen Daten). + %1$s hat die Datenbereitstellung verweigert und verlangt eine Anmeldung, um zu bestätigen, dass es sich bei dem Anfragenden nicht um einen Bot handelt.\n\nDeine IP-Adresse wurde möglicherweise vorübergehend von %1$s gesperrt. Du kannst einige Zeit warten oder zu einer anderen IP-Adresse wechseln (z. B. durch Ein- und Ausschalten eines VPNs oder durch Wechseln von WLAN zu mobilen Daten).\n\nWeitere Informationen findest du unter diesem FAQ-Eintrag. Dieser Inhalt ist für das aktuell ausgewählte Land des Inhalts nicht verfügbar.\n\nÄndere die Auswahl unter „Einstellungen > Inhalt > Bevorzugtes Land des Inhalts“. Im August 2025 gab Google bekannt, dass ab September 2026 für die Installation von Apps eine Entwicklerüberprüfung für alle Android-Apps auf zertifizierten Geräten erforderlich sein wird, einschließlich derjenigen, die außerhalb des Play Store installiert wurden. Da die Entwickler von NewPipe dieser Forderung nicht nachkommen, wird NewPipe nach diesem Zeitpunkt auf zertifizierten Android-Geräten nicht mehr funktionieren. Details Lösung + + %d Abonnement wird exportiert … + %d Abonnements werden exportiert … + + + %d Abonnement wird geladen … + %d Abonnements werden geladen … + + + %d Abonnement wird importiert … + %d Abonnements werden importiert … + + Abonnements importieren + Abonnements exportieren + Importieren von Abonnements aus einem früheren .json-Export + Exportiere deine Abonnements in eine .json-Datei + Aus vorherigem Export importieren diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index e1bf4dc04..336dacf7f 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -845,9 +845,26 @@ Σφάλμα HTTP 403 που ελήφθη από τον διακομιστή κατά την αναπαραγωγή, πιθανώς λόγω λήξης διεύθυνσης URL ροής ή αποκλεισμού IP Σφάλμα HTTP %1$s ελήφθη από τον διακομιστή κατά την αναπαραγωγή Σφάλμα HTTP 403 ελήφθη από τον διακομιστή κατά την αναπαραγωγή, πιθανώς λόγω αποκλεισμού IP ή προβλημάτων απεμπλοκής URL ροής - Ο %1$s αρνήθηκε να παράσχει δεδομένα, ζητώντας σύνδεση για να επιβεβαιώσει ότι ο αιτών δεν είναι bot.\n\nΗ IP σας ενδέχεται να έχει αποκλειστεί προσωρινά από τον %1$s. Μπορείτε να περιμένετε λίγο ή να αλλάξετε IP (για παράδειγμα, ενεργοποιώντας/απενεργοποιώντας ένα VPN ή αλλάζοντας από WiFi σε δεδομένα κινητής τηλεφωνίας). + Ο %1$s αρνήθηκε να παράσχει δεδομένα, ζητώντας σύνδεση για να επιβεβαιώσει ότι ο αιτών δεν είναι bot.\n\nΗ IP σας ενδέχεται να έχει αποκλειστεί προσωρινά από τον %1$s. Μπορείτε να περιμένετε λίγο ή να αλλάξετε IP (για παράδειγμα, ενεργοποιώντας/απενεργοποιώντας ένα VPN ή αλλάζοντας από WiFi σε δεδομένα κινητής τηλεφωνίας).\n\nΑνατρέξτε σεαυτήν την καταχώρηση στις Συχνές Ερωτήσεις για περισσότερες πληροφορίες. Αυτό το περιεχόμενο δεν είναι διαθέσιμο για την τρέχουσα επιλεγμένη χώρα περιεχομένου.\n\nΑλλάξτε την επιλογή σας από \"Ρυθμίσεις > Περιεχόμενο > Προεπιλεγμένη χώρα περιεχομένου\". Λεπτομέρειες Λύση Τον Αύγουστο του 2025, η Google ανακοίνωσε ότι από τον Σεπτέμβριο του 2026, η εγκατάσταση εφαρμογών θα απαιτεί επαλήθευση προγραμματιστή για όλες τις εφαρμογές Android σε πιστοποιημένες συσκευές, συμπεριλαμβανομένων εκείνων που είναι εγκατεστημένες εκτός του Play Store. Δεδομένου ότι οι προγραμματιστές του NewPipe δεν συμφωνούν με αυτήν την απαίτηση, το NewPipe δεν θα λειτουργεί πλέον σε πιστοποιημένες συσκευές Android μετά από αυτό το χρονικό διάστημα. + + Εξαγωγή %d συνδρομής… + Εξαγωγή %d συνδρομών… + + + Φόρτωση %d συνδρομής… + Φόρτωση %d συνδρομών… + + + Εισαγωγή %d συνδρομής… + Εισαγωγή %d συνδρομών… + + Εισαγωγή συνδρομών + Εξαγωγή συνδρομών + Εισαγωγή συνδρομών από προηγούμενη εξαγωγή + Εξαγωγή των συνδρομών σας σε αρχείο .json + Εισαγωγή από προηγούμενη εξαγωγή diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml index 262bacaa5..24c32fefa 100644 --- a/app/src/main/res/values-et/strings.xml +++ b/app/src/main/res/values-et/strings.xml @@ -831,8 +831,25 @@ Esitamise ajal lisas server andmevoogu HTTP oleku %1$s Esitamise ajal lisas server andmevoogu HTTP oleku 403 ning tavaliselt tähendab see, et sinu seadme IP-aadress on keelatud või voogedastuse võrguaadressi hägustamisvastastes meetmetes on viga See sisu pole saadaval hetkel kehtvas riigis.\n\nRiiki saad muuta: Seadistused > Sisu > Sisu vaikimisi riik. - %1$s keeldus andmete edastamisest ning eeldab sisselogimist tuvastamaks, et tegemist pole robotiga.\n\nLisaks võib olla juhtunud, et %1$s on lisanud sinu seadme ip-aadressi ajutisse keelunimekirja. Sa võid oodata natuke aega või vahetada võrguühendus viisi (näiteks lülitades VPN sisse/välja või kasutades WiFi asemel mobiilset internetiühendust). + %1$s keeldus andmete edastamisest ning eeldab sisselogimist tuvastamaks, et tegemist pole robotiga.\n\nLisaks võib olla juhtunud, et %1$s on lisanud sinu seadme ip-aadressi ajutisse keelunimekirja. Sa võid oodata natuke aega või vahetada võrguühendus viisi (näiteks lülitades VPN sisse/välja või kasutades WiFi asemel mobiilset internetiühendust).\n\nLisateavet leiad siit korduva kippumate küsimuste alajaotusest. 2025. aasta augustis teatas Google, et alates septembrist 2026 uute rakenduste paigaldamine kõikides uutes Androidi seadmetes eeldab arendajate verifitseerimist, sealhulgas juhtudel, kui selline rakendus on paigaldatud väljastpoolt Google Play rakendustepoodi. Kuna NewPipe\'i arendajad pole sellise nõudmisega nõus, siis sellise aja saabumisel NewPipe enam ei toimi sertifitseeritud Androidi seadmetes. Üksikasjad Lahendus + + Eksportimisel on %d tellimus… + Eksportimisel on %d tellimust… + + + Laadimisel on %d tellimus… + Laadimisel on %d tellimust… + + + Importimisel on %d tellimus… + Importimisel on %d tellimust… + + Impordi tellimusi + Ekspordi tellimusi + Impordi tellimusi varasemeksporditud json-failist + Ekspirdi oma tellimused json-faili + Impordi tellimusi varasemeksporditud failist diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index c83ce3c99..3b3a4af5d 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -861,9 +861,29 @@ Erreur HTTP 403 reçue du serveur pendant la lecture, probablement causée par l\'expiration de l\'URL de streaming ou une interdiction d\'IP Erreur HTTP %1$s reçue du serveur pendant la lecture Erreur HTTP 403 reçue du serveur pendant la lecture, probablement causée par un bannissement d\'IP ou des problèmes de désobfuscation de l\'URL de streaming - %1$s a refusé de fournir des données et a demandé un identifiant pour confirmer que le demandeur n\'est pas un robot.\n\nVotre adresse IP a peut-être été temporairement bannie par %1$s. Vous pouvez patienter un peu ou changer d\'adresse IP (par exemple en activant/désactivant un VPN, ou en passant du Wi-Fi aux données mobiles). + %1$s a refusé de fournir des données et a demandé un identifiant pour confirmer que l\'auteur de la requête n\'est pas un robot.\n\nVotre adresse IP a peut-être été temporairement bloquée par %1$s. Vous pouvez patienter ou essayer une autre adresse IP (par exemple, en activant/désactivant un VPN ou en passant du Wi-Fi aux données mobiles).\n\nPour plus d\'informations, veuillez consulter cette FAQ. Ce contenu n\'est pas disponible pour le pays actuellement sélectionné.\n\nModifiez votre sélection dans « Paramètres > Contenu > Pays par défaut ». En août 2025, Google a annoncé qu\'à compter de septembre 2026, l\'installation d\'applications nécessiterait une vérification par le développeur pour toutes les applications Android sur les appareils certifiés, y compris celles installées en dehors du Play Store. Les développeurs de NewPipe refusant cette exigence, NewPipe ne fonctionnera plus sur les appareils Android certifiés après cette date. Détails Solution + + Exportation de l\'abonnement %d… + Exportation de %d abonnements… + Exportation de %d abonnements… + + + Chargement de l\'abonnement %d… + Chargement de %d abonnements… + Chargement de %d abonnements… + + + Importation de l\'abonnement %d… + Importation de %d abonnements… + Importation de %d abonnements… + + Importer des abonnements + Exporter les abonnements + Importer des abonnements à partir d\'une exportation .json précédente + Exportez vos abonnements dans un fichier .json + Importer à partir d\'une exportation précédente diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml index c3873c2a4..249a5a764 100644 --- a/app/src/main/res/values-gl/strings.xml +++ b/app/src/main/res/values-gl/strings.xml @@ -369,7 +369,7 @@ Cargando transmisión… Non se cargou: %d Actualizada a última información: %s - Grupos da canle + Grupos da canles %d día %d días @@ -388,7 +388,7 @@ Debido ás restricións de ExoPlayer, a duración da busca estableceuse en %d segundos Si, e visualizou parcialmente estes vídeos - Eliminaranse os vídeos vistos antes e despois de seren engadidos á lista de reprodución. \nEstás seguro? Isto non se pode desfacer.! + Eliminaranse as emisións vistas antes e despois de seren engadidas á lista de reprodución.\nEstás seguro? Borrar todos os vídeos vistos? Eliminar o visto Sistema predeterminado @@ -812,4 +812,11 @@ Pistas Lapelas a recuperar ao actualizar o feed. Esta opción non ten efecto se a canle se actualiza no modo rápido. Esta solución alternativa libera os códecs de video e os re-instancia cando muda a máscara, no canto de configurar a máscara directamente no códec. ExoPlayer xa emprega esta configuración nalgúns dispositivos con este problema e só afecta a Android 6 e versións posteriores.\n\nActivar esta opción pode minimizar erros de reprodución ao mudar o reprodutor de video actual ou mudar ao modo de pantalla completa + %sK + %sM + %sMM + Procurar %1$s + Procurar %1$s (%2$s) + Listas de reprodución + Páxina do grupo de canles diff --git a/app/src/main/res/values-hi/strings.xml b/app/src/main/res/values-hi/strings.xml index b01125060..d85058656 100644 --- a/app/src/main/res/values-hi/strings.xml +++ b/app/src/main/res/values-hi/strings.xml @@ -483,7 +483,7 @@ %d सेकेंड %d सेकंड्स
- देखे गए वीडियो हटायें? + देखे गए स्ट्रीम्स हटाएँ? देखे गए को हटा दें सिस्टम डिफ़ॉल्ट ऐप की भाषा @@ -529,7 +529,7 @@ ऑटोमैटिक (डिवाइस थीम) अपनी पसंदीदा नाइट थीम चुने — %s आप अपनी पसंदीदा नाइट थीम नीचे चुन सकते हैं - डाउनलोड शुरू हो गया है + डाउनलोड शुरू हुआ यह वीडियो आयु-प्रतिबंधित है। \nयूट्यूब की नई नीतियों के कारण न्यूपाइप किसी भी आयु प्रतिबंधित वीडियो स्ट्रीम का इस्तेमाल नहीं कर सकता है और इस कारण इसे वीडियो को प्ले करने में असमर्थ है। पियरट्यूब इंसटैंस @@ -669,7 +669,7 @@ चैनल विवरण दिखाएं आइटम्स का असल अपलोड समय दिखाएं सेवाओं से मूल पाठ स्ट्रीम आइटम में दिखाई देंगे - प्लेलिस्ट में शामिल, पहले और बाद में देखे जा चुके वीडियो हटा दिए जाएंगे। \nक्या यक़ीनन आप ऐसा चाह्ते हैं? इसे असंपादित नहीं किया जा सकेगा! + जो स्ट्रीम्स प्लेलिस्ट में जोड़ने से पहले या बाद में देखी जा चुकी हैं, उन्हें हटा दिया जाएगा।\nक्या यक़ीनन आप ऐसा चाह्ते हैं? %d मिनट %d मिनट्स @@ -845,9 +845,9 @@ पले करते समय सर्वर से HTTP error 403 मिला, शायद स्ट्रीमिंग URL एक्सपायर होने या IP बैन की वजह से हुआ पले करते समय सर्वर से HTTP error %1$s मिला पले करते समय सर्वर से HTTP error 403 मिला, जो शायद IP बैन या स्ट्रीमिंग URL डीओबफस्केशन की दिक्कतों की वजह से हुआ है - %1$s ने डेटा देने से मना कर दिया, और यह कन्फर्म करने के लिए लॉगिन मांगा कि रिक्वेस्ट करने वाला बोट नहीं है।\n\nहो सकता है कि %1$s ने आपके IP को कुछ समय के लिए बैन कर दिया हो, आप कुछ समय इंतज़ार कर सकते हैं या किसी दूसरे IP पर स्विच कर सकते हैं (जैसे VPN ऑन/ऑफ करके, या WiFi से मोबाइल डेटा पर स्विच करके)। + %1$s ने डेटा देने से मना कर दिया, और यह कन्फर्म करने के लिए लॉगिन मांगा कि रिक्वेस्ट करने वाला बोट नहीं है।\n\nहो सकता है कि %1$s ने आपके IP को कुछ समय के लिए बैन कर दिया हो, आप कुछ समय इंतज़ार कर सकते हैं या किसी दूसरे IP पर स्विच कर सकते हैं (जैसे VPN ऑन/ऑफ करके, या WiFi से मोबाइल डेटा पर स्विच करके)।\n\nअधिक जानकारी के लिए कृपया यह FAQ एंट्री देखें। यह कंटेंट अभी चुने गए देश के कंटेंट के लिए उपलब्ध नहीं है।\n\n\"सेटिंग्स > कंटेंट > डिफ़ॉल्ट कंटेंट देश\" से अपना चुनाव बदलें। - Google ने घोषणा की है कि 2026/2027 से, प्रमाणित Android डिवाइसों पर सभी ऐप्स के लिए डेवलपर्स को अपनी व्यक्तिगत पहचान संबंधी जानकारी सीधे Google को जमा करनी होगी। चूँकि इस ऐप के डेवलपर्स इस आवश्यकता से सहमत नहीं हैं, यह ऐप उस समय के बाद प्रमाणित Android डिवाइसों पर काम नहीं करेगा। + अगस्त 2025 में, Google ने घोषणा की कि सितंबर 2026 से, सर्टिफाइड डिवाइस पर सभी Android ऐप्स जिनमें Play Store के बाहर से इंस्टॉल किए गए ऐप्स भी शामिल हैं, को इंस्टॉल करने के लिए डेवलपर वेरिफिकेशन ज़रूरी होगा। चूंकि NewPipe के डेवलपर्स इस शर्त से सहमत नहीं हैं, इसलिए उस समय के बाद NewPipe सर्टिफाइड Android डिवाइस पर काम नहीं करेगा। विवरण समाधान diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 0fecf5fb4..2f6f4c09b 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -816,9 +816,26 @@ A lejátszás közben a kiszolgáló 403-as HTTP-hibát adott vissza, valószínűleg a közvetítési hivatkozás érvényessége lejárt vagy a IP-tiltás miatt HTTP-hiba (%1$s) érkezett a kiszolgálótól a lejátszás során HTTP 403-as hiba érkezett a kiszolgálótól a lejátszás közben, valószínűleg IP-tiltás vagy a közvetítési hivatkozás feloldási problémák miatt - %1$s visszautasította az adatok szolgáltatását, és bejelentkezést kér annak megerősítésére, hogy a kérés nem robot által érkezik.\n\nElőfordulhat, hogy az IP-címét ideiglenesen letiltotta %1$s, várhat egy keveset, vagy váltson egy másik IP-címre (például VPN be-/kikapcsolásával, vagy Wi-Fi-ről mobiladat-forgalomra váltva). + %1$s visszautasította az adatok szolgáltatását, és bejelentkezést kér annak megerősítésére, hogy a kérés nem robot által érkezik.\n\nElőfordulhat, hogy az IP-címét ideiglenesen letiltotta %1$s, várhat egy keveset, vagy váltson egy másik IP-címre (például VPN be-/kikapcsolásával, vagy Wi-Fi-ről mobiladat-forgalomra váltva).\n\nTovábbi információért tekintse meg ezt a GYIK-bejegyzést. Ez a tartalom a jelenleg kiválasztott tartalom országában nem elérhető.\n\nVáltoztassa meg a „Beállítások > Tartalom >Tartalom alapértelmezett országa” menüpontban. 2025 augusztusában a Google bejelentette, hogy 2026 szeptemberétől az alkalmazások telepítéséhez fejlesztői ellenőrzésre lesz szükség a tanúsított eszközökön található összes Android-alkalmazáshoz, beleértve a Play Áruházon kívül telepített alkalmazásokat is. Mivel a NewPipe fejlesztői nem értenek egyet ezzel a követelménnyel, a NewPipe ezután nem fog működni a tanúsított Android-eszközökön. Részletek Megoldás + + %d feliratkozás exportálása… + %d feliratkozások exportálása… + + + %d feliratkozás betöltése… + %d feliratkozások betöltése… + + + %d feliratkozás importálása… + %d feliratkozások importálása… + + Feliratkozások importálása + Feliratkozások exportálása + Feliratkozások importálása korábbi .json-fájlból + Feliratkozások exportálása .json-fájlba + Importálás korábbi exportból diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml index eafd00e8d..f8199f45c 100644 --- a/app/src/main/res/values-in/strings.xml +++ b/app/src/main/res/values-in/strings.xml @@ -434,7 +434,7 @@ Hapus berkas yang diunduh Izinkan untuk ditampilkan di atas aplikasi lain Bahasa apl - Default sistem + Bawaan sistem Selesai Durasi maju/mundur cepat Tekan \"Selesai\" saat selesai @@ -746,7 +746,7 @@ Tab saluran Shorts Memuat Metadata… - Dapatjan tab saluran + Dapatkan tab saluran Tentang Album Tab untuk didapatkan ketika memperarui umpan. Opsi ini tidak memiliki efek jika saluran diperbarui menggunakan mode cepat. @@ -828,9 +828,12 @@ Kesalahan HTTP 403 diterima dari server saat memutar, dapat disebabkan oleh URL streaming kedaluwarsa atau pemblokiran IP Kesalahan HTTP %1$s diterima dari server saat memutar Kesalahan HTTP 403 diterima dari server saat memutar, dapat disebabkan oleh pemblokiran IP atau masalah deobfuskasi URL streaming - %1$s menolak memberikan data, meminta login untuk memastikan peminta bukan bot.\n\nAlamat IP Anda mungkin telah diblokir sementara oleh %1$s, Anda dapat menunggu beberapa saat atau beralih ke alamat IP yang berbeda (misalnya dengan mengaktifkan/menonaktifkan VPN, atau beralih dari WiFi ke data seluler). + %1$s menolak memberikan data, meminta login untuk memastikan peminta bukan bot.\n\nAlamat IP Anda mungkin telah diblokir sementara oleh %1$s, Anda dapat menunggu beberapa saat atau beralih ke alamat IP yang berbeda (misalnya dengan mengaktifkan/menonaktifkan VPN, atau beralih dari WiFi ke data seluler).\n\nHarap lihat <a href=\"%2$s\"></a>entri Pertanyaan ini</a> untuk informasi lebih lanjut. Konten ini tidak tersedia untuk negara konten yang saat ini dipilih.\n\nUbah pilihan Anda dari “Pengaturan > Konten > Negara konten bawaan”. %sK %sM %sB + Pada Agustus 2025, Google mengumumkan bahwa mulai September 2026, pemasangan aplikasi akan memerlukan verifikasi pengembang untuk semua aplikasi Android pada perangkat bersertifikasi, termasuk yang dipasang di luar Play Store. Karena pengembang NewPipe tidak menyetujui persyaratan ini, NewPipe tidak akan lagi berfungsi pada perangkat Android bersertifikasi setelah waktu tersebut. + Rincian + Solusi diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 86b9c382a..3dbd1b8a5 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -859,9 +859,29 @@ Errore HTTP 403 ricevuto dal server durante la riproduzione, probabilmente causato dalla scadenza dell\'URL in streaming o da un divieto dell\'IP Errore HTTP %1$s ricevuto dal server durante la riproduzione Errore HTTP 403 ricevuto dal server durante la riproduzione, probabilmente causato da un divieto dell\'IP o problemi di de-offuscamento dell\'URL in streaming - %1$s ha rifiutato di fornire i dati, chiedendo un accesso per confermare che il richiedente non sia un bot.\n\nIl tuo IP potrebbe essere stato temporaneamente vietato da %1$s, puoi aspettare un po\' di tempo o passare ad un IP diverso (ad esempio accendendo/spegnendo una VPN, o passando dal WiFi ai dati mobili). + %1$s ha rifiutato di fornire i dati, chiedendo un accesso per confermare che il richiedente non sia un bot.\n\nIl tuo IP potrebbe essere stato temporaneamente vietato da %1$s, puoi aspettare un po\' di tempo o passare ad un IP diverso (ad esempio accendendo/spegnendo una VPN, o passando dal WiFi ai dati mobili).\n\nLeggi questa voce nelle FAQ per maggiori informazioni. Questo contenuto non è disponibile per il Paese dei contenuti attualmente selezionato.\n\nModifica la selezione da \"Impostazioni > Contenuti > Paese dei contenuti predefinito\". Ad agosto 2025, Google ha annunciato che a partire da settembre 2026, l\'installazione di app richiederà la verifica dello sviluppatore per tutte le app Android su dispositivi certificati, compresi quelli installati al di fuori del Play Store. Poiché gli sviluppatori di NewPipe non sono d\'accordo con questo requisito, NewPipe non funzionerà più su dispositivi Android certificati dopo quel mese. Dettagli Soluzione + + Esportazione di %d iscrizione… + Esportazione di %d iscrizioni… + Esportazione di %d iscrizioni… + + + Caricamento di %d iscrizione… + Caricamento di %d iscrizioni… + Caricamento di %d iscrizioni… + + + Importazione di %d iscrizione… + Importazione di %d iscrizioni… + Importazione di %d iscrizioni… + + Importa iscrizioni + Esporta iscrizioni + Importa iscrizioni da un\'esportazione .json precedente + Esporta le tue iscrizioni su un file .json + Importa da un\'esportazione precedente diff --git a/app/src/main/res/values-kab/strings.xml b/app/src/main/res/values-kab/strings.xml index 055af88f9..b14b66b39 100644 --- a/app/src/main/res/values-kab/strings.xml +++ b/app/src/main/res/values-kab/strings.xml @@ -223,4 +223,12 @@ Tibzimin Asebter d ilem Iɣewwaṛen n ExoPlayer + + %d n wass + %d n wussan + + + %s n tvidyut + %s n tvidyutin + diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index b94258e76..c76a24563 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -831,9 +831,23 @@ 재생 중 서버에서 HTTP 403 오류를 수신했으며, 스트리밍 URL이 만료되었거나 IP 차단으로 인해 발생했을 수 있습니다 재생 중 서버에서 HTTP %1$s 오류를 수신했습니다 재생 중 서버에서 HTTP 403 오류를 수신했으며, 스트리밍 URL 역난독화 문제나 IP 차단 때문일 수 있습니다 - %1$s에서 데이터 제공을 거부하고, 요청자가 봇이 아닌지 확인하기 위해 로그인을 요청하고 있습니다.\n\n아마 IP가 %1$s에서 임시 차단되었을 것이며, 잠시 기다리거나 다른 IP로 전환할 수 있습니다 (예를 들자면 VPN을 켜/끄거나, WiFi를 모바일 데이터로 바꾸세요). + %1$s에서 데이터 제공을 거부하고, 요청자가 봇이 아닌지 확인하기 위해 로그인을 요청하고 있습니다.\n\n아마 IP가 %1$s에서 임시 차단되었을 것이며, 잠시 기다리거나 다른 IP로 전환할 수 있습니다 (예를 들어 VPN을 켜/끄거나, WiFi를 모바일 데이터로 바꿔 보세요).\n\n자세한 정보는 여기 FAQ를 확인하세요. 이 콘텐츠는 현재 선택한 콘텐츠 지역에서 이용할 수 없습니다.\n\n\"설정 > 콘텐츠 > 기본 콘텐츠 국가\"에서 지역을 바꾸세요. 2025년 8월, Google은 2026년 9월부터 인증된 기기에 앱을 설치하려면 Play 스토어 외 앱을 포함한 모든 Android 앱에 대해 개발자 인증을 받아야 한다고 발표했습니다. NewPipe 개발자는 이 요구 사항에 동의하지 않으므로, 이 이후 NewPipe는 더 이상 인증된 Android 기기에서 동작하지 않을 것입니다. 자세히 해결책 + + 구독 %d건 내보내는 중… + + + 구독 %d건 불러오는 중… + + + 구독 %d건 가져오는 중… + + 구독 가져오기 + 구독 내보내기 + 이전에 내보낸 .json에서 구독을 가져옵니다 + 구독 현황을 .json 파일로 내보냅니다 + 이전 내보내기에서 가져오기 diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml index 8a3d8dc90..608322878 100644 --- a/app/src/main/res/values-lv/strings.xml +++ b/app/src/main/res/values-lv/strings.xml @@ -2,8 +2,8 @@ Nav Subtitri Atskaņošanas saraksta attēls nomainīts. - Atskaņošanas saraksts radīts - Dzēst atskaņošanas sarakstu\? + Atskaņošanas saraksts izveidots + Vai tiešām vēlaties dzēst šo atskaņošanas sarakstu? Iestatīt, kā atskaņošanas saraksta attēlu Pievienot atskaņošanas sarakstam Nosaukums @@ -29,10 +29,10 @@ Jauns un populārs Top 50 Nevarēja ielādēt komentārus - Vai jūs vēlaties ievietot arī iestatījumus? + Vai vēlaties ievietot arī iestatījumus? Pašreizējie dati tiks aizstāti. Uzmanību: Ne visas datnes varēja ievietot. - Nav derīgs ZIP fails + Nederīga ZIP datne Ievietošana pabeigta Eksportēts Atlasiet kiosku @@ -48,7 +48,7 @@ Galvenā lapa Visvairāk Atskaņotais Pēdējais atskaņotais - Vai jūs tiešām vēlaties izdzēst šo vaicājumu no meklēšanas vēstures? + Vai tiešām vēlaties izdzēst šo vaicājumu no meklēšanas vēstures? Vēsture Vēsture Izlasīt licenci @@ -80,7 +80,7 @@ reCAPTCHA izaicinājums dots Nospiediet \"Pabeigts\", kad to atrisinat reCAPTCHA izaicinājums - 1 lieta izdzēsta. + 1 vienums dzēsts. Šī atļauja ir nepieciešama, lai \natvērtu popup režīmā Lūdzu nosakiet lejupielādes mapi iestatījumos vēlāk @@ -91,13 +91,13 @@ NewPipe lejupielādē Kļūda Procesi - Faila nosaukums + Datnes nosaukums Labi Pārsaukt Noraidīt Kontrolsumma - Izdzēst - Radīt + Dzēst + Izveidot / Saglabāt Pauzēt Sākt Nav komentāru @@ -168,16 +168,16 @@ Ziņojiet pa e-pastu Piedotiet, tam nevajadzēja notikt. Dot atļauju rādīt pāri citām aplikācijām - Vai jūs tiešām vēlaties atjaunot noklusējuma vērtības? + Vai tiešām vēlaties atjaunot noklusējuma vērtības? Atjaunot noklusējuma vērtības Nevarēja nolasīt saglabātās cilnes, tādēļ izmanto noklusējuma Neviens video nav pieejams lejupielādei Notika kļūda: %1$s - Faila nosaukums nevar būt tukšs + Datnes nosaukums nevar būt tukšs Datne neeksistē vai nav dota atļauja to lasīt vai rakstīt - Tāds fails/saturs neeksistē + Tāda datne/saturs neeksistē Tāda mape neeksistē - Fails pārvietots vai izdzēsts + Datne pārvietota vai dzēsta Netika atrasts audio Netika atrasti video Ārējie atskaņotāj neatbalsta šāda tipa saites @@ -190,26 +190,26 @@ Nevarēja apstrādāt mājaslapu Nevarēja ielādēt visus video attēlus Tīkla kļūda - Lejupielādēt uz SD karti nav iespējams. Atiestatīt lejupielāžu mapes lokāciju\? + Lejupielāde ārējā SD kartē nav iespējama. Vai tiešām vēlaties atiestatīt lejupielāžu mapi? Ārējā krātuve nepieejama Kļūda - Meklēšanas vēsture izdzēsta - Vai tiešām izdzēst visu meklēšanas vēsturi? - Izdzēš meklēto vārdu vēsturi + Meklēšanas vēsture dzēsta + Vai tiešām vēlaties izdzēst visu meklēšanas vēsturi? + Izdzēš visus meklēšanas vaicājumus Notīrīt meklēšanas vēsturi - Atskaņošanas pozīcikas izdzēstas - Izdzēst visas atskaņošanas pozīcijas\? + Atskaņošanas pozīcijas dzēstas + Vai tiešām vēlaties dzēst visas atskaņošanas pozīcijas? Izdzēš visas atskaņošanas pozīcijas - Izdzēst atskaņošanas pozīcijas - Skatīšanās vēsture izdzēsta - Izdzēst visu skatīšanās vēsturi\? - Izdzēš atskaņoto videoklipu un atskaņošanas pozīciju vēsturi + Notīrīt atskaņošanas pozīcijas + Skatīšanās vēsture dzēsta + Vai tiešām vēlaties dzēst visu skatīšanās vēsturi? + Izdzēš atskaņoto video / audio un atskaņošanas pozīciju vēsturi Notīrīt skatīšanās vēsturi - Notīrīt sīkfailus , kurus NewPipe saglabā, kad jūs atrisinat reCAPTCHA + Izdzēš sīkdatnes, kuras NewPipe uzglabā, kad jūs atrisiniet reCAPTCHA Eksportēt vēsturi, abonementus, atskaņošanas sarakstus un iestatījumus Aizstās jūsu pašreizējo vēsturi, abonementus, atskaņošanas sarakstus un (pēc izvēles) iestatījumus - reCAPTCHA sīkfaili tika izdzēsti - Izdzēst reCAPTCHA sīkfailus + reCAPTCHA sīkdatnes dzēstas + Notīrīt reCAPTCHA sīkdatnes Eksportēt datubāzi Ievietot datubāzi Pārslēgt uz Galveno @@ -217,14 +217,14 @@ Pārslēgt uz Fonu [Nezināms] Paziņojumi par jaunām NewPipe versijām - Aplikācijas atjauninājuma paziņojums + Lietotnes atjauninājuma paziņojums Paziņojumi priekš NewPipe atskaņotāja NewPipe paziņojums - Fails + Datne Tikai Vienreiz Vienmēr Atskaņot Visu - Fails izdzēsts + Datne dzēsta Atsaukt Labākā izšķirtspēja Notīrīt @@ -329,7 +329,7 @@ ExoPlayer ierobežojumu dēļ tīšanas solis tika iestatīts uz %d sekundēm Jā, un daļēji skatītos Tiešraides, kas iepriekš noskatītas un pēc tam pievienotas atskaņošanas sarakstam, tiks noņemtas. \nVai tiešām turpināt? - Vai tiešām noņemt skatītās tiešraides? + Vai tiešām vēlaties noņemt skatītās tiešraides? Noņemt skatīto System default Lietotnes valoda @@ -349,17 +349,17 @@ Maksimālais mēģinājumu skaits pirms lejupielādes atcelšanas Maksimālais atkārtoto mēģinājumu skaits Stop - Dzēst lejupielādētos failus - Vai vēlaties notīrīt lejupielāžu vēsturi vai izdzēst visus lejupielādētos failus\? + Dzēst lejupielādētās datnes + Vai tiešām vēlaties dzēst lejupielāžu vēsturi un visas lejupielādētās datnes? Notīrīt lejupielāžu vēsturi Nevar atgūt šo lejupielādi Savienojums pārtraukts - Progress zaudēts, jo fails tika izdzēsts + Progress zaudēts, jo datne tika dzēsta Ierīcē nav vietas Strādājot ar failu, NewPipe tika aizvērts Pēcapstrāde neizdevās Nav atrasts - Serveris nepieņem vairāku procesu lejupielādes, mēģiniet vēlreiz ar @ string / msg_threads = 1 + Serveris nepieņem daudzpavedienu lejupielādes, mēģiniet vēlreiz ar @string/msg_threads = 1 Serveris nesūta datus Nevar izveidot savienojumu ar serveri Nevarēja atrast serveri @@ -370,8 +370,8 @@ Ir gaidāma lejupielāde ar šo nosaukumu Notiek lejupielāde ar šo nosaukumu nevar pārrakstīt datni - Lejupielādēts fails ar šo nosaukumu jau pastāv - Fails ar šo nosaukumu jau pastāv + Lejupielādētā datne ar šādu nosaukumu jau pastāv + Datne ar šādu nosaukumu jau pastāv Pārrakstīt Ģenerēt unikālu nosaukumu Darbību noraidīja sistēma @@ -385,9 +385,7 @@ Solis Klusuma brīžos patīt uz priekšu Atvienot (var izraisīt traucējumus) - Paturiet prātā, ka šī darbība var pieprasīt lielu datu daudzumu -\n -\nVai vēlaties turpināt\? + Paturiet prātā, ka šī darbība var pieprasīt lielu datu daudzumu\n\nVai vēlaties turpināt? Aizvērt Atvilkni Atvērt Atvilkni Vispopulārākais @@ -420,7 +418,7 @@ Pausēts Gaida Pabeigts - Ir pieejams Newpipe atjauninājums! + Pieejama jauna NewPipe versija! Automātiski Tīkls Saraksts @@ -452,7 +450,7 @@ Rādīt oriģinālo laiku uz lietām Rādīt atmiņas noplūdes Subtitri - Automātiski radīti + Automātiski izveidots Pietuvināt Piepildīt Pielāgot @@ -557,7 +555,7 @@ Dažās izšķirtspējās nav pieejami skaņas celiņi Izmantot ārējo video atskaņotāju Kopīgot ar - Tiek rādīti %s rezultāti + Tiek rādīti %s vaicājuma rezultāti Varbūt jūs gribējāt meklēt \"%1$s\"? Iestatījumi Meklēt @@ -588,7 +586,7 @@ Valoda Vecuma ierobežojums License - Tagi + Birkas Kategorija Jums tiks jautāts, kur saglabāt katru lejupielādi Nerādīt @@ -606,13 +604,13 @@ Lokālos meklēšanas ieteikumus Augstas kvalitātes (lielāks) Pārbaudīt atjauninājumus - Pašrocīgi pārbaudīt jaunas versijas pieejamību + Pašrocīgi veikt jaunas versijas pārbaudi Video atskaņošanas joslas sīktēla priekšskatījums - Pārbauda, vai ir atjauninājumi… + Notiek atjauninājumu pārbaude… Sākot ar Android 10, tikai“Krātuves Piekļuves Sistēma” ir atbalstīta Nevarēja ielādēt straumi priekš \'%s\'. Kļūda lādējot plūsmu - Autora konts tika slēgts.\nNewPipe turpmāk vairs nevarēs ielādēt šī kanāla plūsmas saturu.\nVai tiešām atteikties no šī kanāla abonēšanas? + Autora konts tika slēgts.\nNewPipe turpmāk vairs nevarēs ielādēt šī kanāla saturu.\nVai tiešām vēlaties atteikties no šī kanāla abonēšanas? Ātrās straumes režīms nesniedz vairāk informācijas par šo. Izslēgt teksta atlasīšanu video aprakstā Iekšeji @@ -627,16 +625,16 @@ Atzīmēt kā noskatītu Apstrādā... Var aizņemt kādu laiku - Izdzēsa %1$s lejupielāžu - Izdzēsa %1$s lejupielādi - Izdzēsa %1$s lejupielādes + Dzēstas %1$s lejupielādes + Dzēsta %1$s lejupielāde + Dzēstas %1$s lejupielādes %s lejupielādes pabeigtas %s lejupielāde pabeigta %s lejupielādes pabeigtas - Tagad varat atlasīt tekstu video aprakstā. + Tagad variet atlasīt tekstu video aprakstā. Paziņojumi Avarēt atskaņotāju Pielāgojiet pašlaik atskaņotās plūsmas paziņojumu @@ -648,7 +646,7 @@ %s jauna tiešraide %s jaunas tiešraides - Paziņojumi par jaunām tiešraidēm abonementos + \@string/enable_streams_notifications_summary Bieži uzdotie jautājumi Paziņojumi, lai ziņotu par kļūdām Kļūdas ziņojuma paziņojums @@ -665,11 +663,11 @@ LeakCanary nav pieejams Izveidot kļūdas paziņojumu Jebkurš tīkls - Jums ir jaunākā NewPipe versija + Jūs jau izmantojiet jaunāko NewPipe versiju Noder, piemēram, kad lietojiet austiņas ar bojātām pogām Atskaņos skaņas celiņu ar audio aprakstiem vājredzīgajiem, ja tāds ir pieejams Ignorēt pieslēgtās ierīces multimēdiju pogas - Izdzēst visus lejupielādētos failus\? + Vai tiešām vēlaties dzēst visas lejupielādētās datnes? Jaunumi kanālā Dot priekšroku oriģinālajai skaņai Atskaņos oriģinālo skaņas celiņu neatkarīgi no iestatītās valodas @@ -689,15 +687,15 @@ Dublikāts pievienots %d reizi(-es) Rādīt \"avarēt atskaņotāju\" Karte - Spiediet, lai lejupielādētu %s - Dzēst dublikātus\? - Vai vēlaties dzēst visus tiešraižu dublikātus šajā sarakstā\? + Nospiediet, lai lejupielādētu %s + Vai tiešām vēlaties dzēst dublikātus? + Vai tiešām vēlaties noņemt visus dublētos vienumus šajā atskaņošanas sarakstā? Rādīt/slēpt tiešraides Ātrais režīms - Informē par jaunām abonementu tiešraidēm + Informē, ja pieejami jauni video / audio abonementos Procenti Pustonis - Paziņojumi par jaunām tiešraidēm + Paziņot par jauniem video / audio Pārbaužu biežums Galvenās cilnes atlasītāja pārvietošana uz apakšu Rediģējiet katru zemāk redzamo paziņojuma darbību, pieskaroties tai. Pirmās trīs darbības (atskaņot/pauze, iepriekšējais un nākamais) ir sistēmas iestatītas, un tās nevar pielāgot. @@ -714,16 +712,14 @@ Par Sīkattēli Kārtot - NewPipe pati var automātiski pārbaudīt jaunas versijas pieejamību laiku pa laikam un informēt jūs, kad tā ir pieejama.\nVai jūs tiešām gribiet ieslēgt šo funkciju? + NewPipe pati var veikt jaunas versijas pārbaudi laiku pa laikam un informēt jūs, kad tā ir pieejama.\nVai tiešām vēlaties ieslēgt šo funkciju? Netika atrasts atbilstošs failu pārvaldnieks šai darbībai. \nLūdzu instalējiet failu pārvaldnieku vai pamēģiniet atspējot \'%s\' lejuplādēšanas iestatījumos oriģinālais Nepieciešams tīkla savienojums Atiestata visus iestatījumus uz to sākotnējām vērtībām Atiestatīt iestatījumus - Visu iestatījumu atiestatošana atmetīs visus jūsu izvēlētos iestatījumus un restartēs aplikāciju. -\n -\nVai jūs esat droši, ka vēlaties turpināt? + Atiestatot iestatījumus, visi jūsu iestatītie iestatījumi tiks atmesti uz to noklusētajām vērtībām un lietotne palaista pa jaunu.\n\nVai tiešām vēlaties turpināt? Šī opcija ir pieejama tikai, ja %s ir izvēlēts kā motīvs Piespraustais komentārs Paziņojumi ir atspējoti @@ -836,4 +832,5 @@ Detalizētāka informācija Risinājums SoundCloud likvidēja oriģinālos Top 50 topus. Atbilstošā cilne noņemta no jūsu galvenās lapas. + Lai varētu izmantot uznirstošo atskaņotāju, lūdzu, atlasiet %1$s šajā Android iestatījumu izvēlnē un iespējojiet %2$s. diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 2ff13b391..d8b00b38a 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -847,4 +847,9 @@ HTTP-fout 403 ontvangen van de server tijdens het afspelen, waarschijnlijk veroorzaakt door een ip-blokkade of problemen met de deobfuscatie van de streaming-url %1$s weigerde gegevens te verstrekken en vroeg om een login om te bevestigen dat de aanvrager geen bot is.\n\nUw ip-adres is mogelijk tijdelijk geblokkeerd door %1$s. U kunt even wachten of overschakelen naar een ander ip-adres (bijvoorbeeld door een vpn in of uit te schakelen, of door over te schakelen van wifi naar mobiele data). Deze inhoud is niet beschikbaar voor het momenteel geselecteerde inhouds­land.\n\nWijzig uw selectie via ‘Instellingen > Inhoud > Standaard­land voor inhoud’. + Details + Oplossing + Abonnementen importeren + Abonnementen exporteren + Importeren vanuit vorige export diff --git a/app/src/main/res/values-pa/strings.xml b/app/src/main/res/values-pa/strings.xml index cc0be8ae4..161dcc886 100644 --- a/app/src/main/res/values-pa/strings.xml +++ b/app/src/main/res/values-pa/strings.xml @@ -24,7 +24,7 @@ ਸਬਸਕ੍ਰਿਪਸ਼ਨ ਨੂੰ ਬਦਲਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ ਜਾਣਕਾਰੀ ਵਿਖਾਓ ਸਬਸਕ੍ਰਿਪਸ਼ਨ ਅਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ - ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ + ਸਬਸਕ੍ਰਿਪਸ਼ਨਜ਼ ਬੁੱਕਮਾਰਕ ਕੀਤੀਆਂ ਪਲੇਲਿਸਟਾਂ ਨਵਾਂ ਕੀ ਹੈ ਬੈਕਗ੍ਰਾਊਂਡ @@ -104,10 +104,10 @@ ਬੈਕਗ੍ਰਾਊਂਡ ਮੋਡ ਵਿੱਚ ਚਲਾਓ ਪੌਪ-ਅਪ ਮੋਡ ਵਿੱਚ ਚਲਾਓ ਮੇਨ ਤੇ ਚਲਾਓ - ਡਾਟਾਬੇਸ ਆਯਾਤ ਕਰੋ - ਡਾਟਾਬੇਸ ਨਿਰਯਾਤ ਕਰੋ + ਡਾਟਾਬੇਸ ਇੰਪੋਰਟ ਕਰੋ + ਡਾਟਾਬੇਸ ਐਕਸਪੋਰਟ ਕਰੋ ਤੁਹਾਡੇ ਮੌਜੂਦਾ ਇਤਿਹਾਸ, ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ, ਪਲੇਲਿਸਟਾਂ ਅਤੇ (ਚੋਣਵੇਂ ਤੌਰ \'ਤੇ) ਸੈਟਿੰਗਾਂ ਨੂੰ ਨਵੀਆਂ ਨਾਲ ਬਦਲ ਦਿੰਦਾ ਹੈ - ਇਤਿਹਾਸ, ਸੁਬਸਕ੍ਰਿਪਸ਼ਨਾਂ, ਪਲੇਲਿਸਟਾਂ ਅਤੇ ਸੈਟਿੰਗਾਂ ਨਿਰਯਾਤ ਕਰੋ + ਇਤਿਹਾਸ, ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ, ਪਲੇਲਿਸਟਾਂ ਅਤੇ ਸੈਟਿੰਗਾਂ ਐਕਸਪੋਰਟ ਕਰੋ ਵੇਖੇ ਗਏ ਵੀਡੀਓਜ਼ ਦੀ ਸੂਚੀ ਮਿਟਾਓ ਚਲਾਈਆਂ ਗਈਆਂ ਸਟ੍ਰੀਮਾਂ ਦੇ ਇਤਿਹਾਸ ਅਤੇ ਪਲੇ-ਸਥਿਤੀਆਂ ਨੂੰ ਮਿਟਾਉਂਦਾ ਹੈ ਕੀ ਵੇਖੇ ਗਏ ਵੀਡੀਓਜ਼ ਦਾ ਇਤਿਹਾਸ ਮਿਟਾ ਦਿੱਤਾ ਜਾਵੇ\? @@ -273,7 +273,7 @@ ਤੇ ਐਕਸਪੋਰਟ ਕਰੋ ਇੰਪੋਰਟ ਹੋ ਰਿਹਾ ਹੈ… ਐਕਸਪੋਰਟ ਹੋ ਰਿਹਾ ਹੈ… - ਇੰਪੋਰਟ ਫਾਈਲ + ਫ਼ਾਈਲ ਇੰਪੋਰਟ ਕਰੋ ਪਿੱਛਲਾ ਐਕਸਪੋਰਟ ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਇੰਪੋਰਟ ਨਹੀਂ ਹੋ ਸਕੀਆਂ ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਐਕਸਪੋਰਟ ਨਹੀਂ ਹੋ ਸਕੀਆਂ @@ -430,7 +430,7 @@ ਵੇਰਵੇ \'ਚੋਂ ਲਿਖਤ ਚੁਣਨਾ ਬੰਦ ਕਰੋ ਵੇਰਵੇ \'ਚੋਂ ਲਿਖਤ ਚੁਣਨਾ ਚਾਲੂ ਕਰੋ ਤੁਸੀਂ ਹੁਣ ਵੇਰਵੇ \'ਚੋਂ ਲਿਖਤ ਨੂੰ ਚੁਣ ਸਕਦੇ ਹੋ। ਨੋਟ ਕਰੋ ਕਿ ਪੰਨਾ ਜਗ-ਬੁੱਝ ਸਕਦਾ ਹੈ ਅਤੇ ਚੋਣ ਮੋਡ ਵਿੱਚ ਹੋਣ ਵੇਲੇ ਲਿੰਕ ਕਲਿੱਕ ਕਰਨ ਯੋਗ ਨਹੀਂ ਹੋ ਸਕਦੇ ਹਨ। - ਡਾਊਨਲੋਡ ਸ਼ੁਰੂ ਹੋ ਗਿਐ + ਡਾਊਨਲੋਡ ਸ਼ੁਰੂ ਹੋਇਆ ਤੁਸੀਂ ਆਪਣੀ ਪਸੰਦੀਦਾ ਰਾਤ ਦੀ ਥੀਮ ਹੇਠਾਂ ਚੁਣ ਸਕਦੇ ਹੋ ਆਪਣੀ ਪਸੰਦੀਦਾ ਰਾਤ ਦੀ ਥੀਮ ਚੁਣੋ — %s ਆਟੋਮੈਟਿਕ (ਡਿਵਾਈਸ ਥੀਮ) @@ -494,8 +494,8 @@ %d ਸਕਿੰਟ
ਹਾਂ, ਅਤੇ ਅੱਧ-ਪਚੱਧੀਆਂ ਵੇਖੀਆਂ ਹੋਈਆਂ ਵੀ - ਪਲੇਲਿਸਟ ਵਿੱਚ ਸ਼ਾਮਿਲ ਪਹਿਲਾਂ ਤੇ ਬਾਅਦ ਵਿੱਚ ਵੇਖੇ ਜਾ ਚੁੱਕੇ ਵੀਡੀਓ ਹਟਾ ਦਿੱਤੇ ਜਾਣਗੇ। \nਕੀ ਵਾਕਿਆ ਹੀ ਤੁਸੀਂ ਇਹਨਾਂ ਨੂੰ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ? ਇਸ ਕਾਰਵਾਈ ਨੂੰ ਵਾਪਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਣਾ! - ਵੇਖੇ ਹੋਏ ਵੀਡੀਓ ਹਟਾ ਦੇਈਏ? + ਪਲੇਲਿਸਟ ਵਿੱਚ ਸ਼ਾਮਿਲ ਪਹਿਲਾਂ ਤੇ ਬਾਅਦ ਵਿੱਚ ਵੇਖੀਆਂ ਸਟ੍ਰੀਮਾਂ ਨੂੰ ਹਟਾ ਦਿੱਤਾ ਜਾਵੇਗਾ।\nਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਹ ਚਾਹੁੰਦੇ ਹੋ? + ਕੀ ਵੇਖੀਆਂ ਸਟ੍ਰੀਮਾਂ ਨੂੰ ਹਟਾਉਣਾ ਹੈ? ਵੇਖੇ ਹੋਏ ਨੂੰ ਹਟਾਓ ਸਿਸਟਮ ਡਿਫ਼ਾਲਟ ਐਪ ਦੀ ਭਾਸ਼ਾ @@ -651,8 +651,7 @@ %1$s ਡਾਊਨਲੋਡ ਹਟਾਏ
ਚੈਨਲ ਦਾ ਅਵਤਾਰ ਥੰਮਨੇਲ - ਇਸ ਕਾਰਜ ਲਈ ਕੋਈ ਢੁਕਵਾਂ ਫਾਈਲ ਮੈਨੇਜਰ ਨਹੀਂ ਮਿਲਿਆ। -\nਕ੍ਰਿਪਾ ਕਰਕੇ ਸਟੋਰੇਜ ਐਕਸਿਸ ਫਰੇਮਵਰਕ SAF ਅਨੁਕੂਲ ਫਾਈਲ ਮੈਨੇਜਰ ਇੰਨਸਟਾਲ ਕਰੋ + ਇਸ ਕਾਰਜ ਲਈ ਕੋਈ ਢੁਕਵਾਂ ਫਾਈਲ ਮੈਨੇਜਰ ਨਹੀਂ ਮਿਲਿਆ।\nਕ੍ਰਿਪਾ ਕਰਕੇ ਸਟੋਰੇਜ ਐਕਸਿਸ ਫਰੇਮਵਰਕ SAF ਅਨੁਕੂਲ ਫਾਈਲ ਮੈਨੇਜਰ ਸਥਾਪਤ ਕਰੋ ਟੈਬਲੇਟ ਮੋਡ ਨੋਟੀਫਿਕੇਸ਼ਨ ਬੰਦ ਕੀਤੇ ਹੋਏ ਹਨ ਸਭ ਨੂੰ ਟੌਗਲ ਕਰੋ @@ -684,7 +683,7 @@ \n \nਤੁਹਾਡੀ ਚੋਣ ਇਸ ਗੱਲ ਤੇ ਮੁਨੱਸਰ ਕਰਦੀ ਹੈ ਕਿ ਤੁਸੀਂ ਗਤੀ ਤੇ ਸਟੀਕਤਾ ਵਿੱਚੋਂ ਕਿਸ ਨੂੰ ਪ੍ਰਾਥਮਿਕਤਾ ਦਿੰਦੇ ਹੋ।
ਤੇਜ ਮੋਡ - 3-ਡੌਟ ਮੀਨੂ ਤੋਂ ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਨੂੰ ਆਯਾਤ ਜਾਂ ਨਿਰਯਾਤ ਕਰੋ + 3-ਡੌਟ ਮੀਨੂ ਤੋਂ ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਨੂੰ ਇੰਪੋਰਟ ਜਾਂ ਐਕਸਪੋਰਟ ਕਰੋ ਤੁਸੀਂ ਨਿਊਪਾਈਪ ਦਾ ਨਵੀਨਤਮ ਸੰਸਕਰਣ ਚਲਾ ਰਹੇ ਹੋ %s ਨੂੰ ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਟੈਪ ਕਰੋ ਇਹ ਵਿਕਲਪ ਤਾਂ ਹੀ ਉਪਲਬਧ ਹੁੰਦਾ ਹੈ ਜੇਕਰ %s ਨੂੰ ਥੀਮ ਲਈ ਚੁਣਿਆ ਜਾਂਦਾ ਹੈ @@ -827,6 +826,26 @@ ਪਲੇਅ ਕਰਦੇ ਸਮੇਂ ਸਰਵਰ ਤੋਂ HTTP error 403 ਪ੍ਰਾਪਤ ਹੋਇਆ, ਜੋ ਸ਼ਾਇਦ ਸਟ੍ਰੀਮਿੰਗ URL ਦੀ ਮਿਆਦ ਪੁੱਗਣ ਜਾਂ IP ਦੀ ਪਾਬੰਦੀ ਕਾਰਨ ਹੋਈ ਹੈ ਚਲਾਉਣ ਦੌਰਾਨ ਸਰਵਰ ਤੋਂ HTTP error %1$s ਪ੍ਰਾਪਤ ਹੋਇਆ ਪਲੇਅ ਕਰਦੇ ਸਮੇਂ ਸਰਵਰ ਤੋਂ HTTP error 403 ਪ੍ਰਾਪਤ ਹੋਇਆ, ਜੋ ਸ਼ਾਇਦ IP ਬੈਨ ਜਾਂ ਸਟ੍ਰੀਮਿੰਗ URL ਡੀਔਬਫਸਕੇਸ਼ਨ ਸਮੱਸਿਆਵਾਂ ਕਾਰਨ ਹੋਈ ਹੈ - %1$s ਨੇ ਡੇਟਾ ਪ੍ਰਦਾਨ ਕਰਨ ਤੋਂ ਇਨਕਾਰ ਕਰ ਦਿੱਤਾ, ਅਤੇ ਇਹ ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ ਲੌਗਇਨ ਕਰਨ ਲਈ ਕਿਹਾ ਕਿ ਬੇਨਤੀਕਰਤਾ ਬੋਟ ਨਹੀਂ ਹੈ।\n\nਹੋ ਸਕਦਾ ਹੈ ਕਿ %1$s ਨੇ ਤੁਹਾਡੇ IP ਨੂੰ ਅਸਥਾਈ ਤੌਰ \'ਤੇ ਪਾਬੰਦੀ ਲਗਾਈ ਹੋਵੇ, ਤੁਸੀਂ ਕੁਝ ਸਮਾਂ ਉਡੀਕ ਕਰ ਸਕਦੇ ਹੋ ਜਾਂ ਕਿਸੇ ਵੱਖਰੇ IP \'ਤੇ ਸਵਿੱਚ ਕਰ ਸਕਦੇ ਹੋ (ਉਦਾਹਰਣ ਵਜੋਂ VPN ਨੂੰ ਚਾਲੂ/ਬੰਦ ਕਰਕੇ, ਜਾਂ WiFi ਤੋਂ ਮੋਬਾਈਲ ਡੇਟਾ \'ਤੇ ਸਵਿੱਚ ਕਰਕੇ)। + %1$s ਨੇ ਡੇਟਾ ਪ੍ਰਦਾਨ ਕਰਨ ਤੋਂ ਇਨਕਾਰ ਕਰ ਦਿੱਤਾ, ਅਤੇ ਇਹ ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ ਲੌਗਇਨ ਕਰਨ ਲਈ ਕਿਹਾ ਕਿ ਬੇਨਤੀਕਰਤਾ ਬੋਟ ਨਹੀਂ ਹੈ।\n\nਹੋ ਸਕਦਾ ਹੈ ਕਿ %1$s ਨੇ ਤੁਹਾਡੇ IP ਨੂੰ ਅਸਥਾਈ ਤੌਰ \'ਤੇ ਪਾਬੰਦੀ ਲਗਾਈ ਹੋਵੇ, ਤੁਸੀਂ ਕੁਝ ਸਮਾਂ ਉਡੀਕ ਕਰ ਸਕਦੇ ਹੋ ਜਾਂ ਕਿਸੇ ਵੱਖਰੇ IP \'ਤੇ ਸਵਿੱਚ ਕਰ ਸਕਦੇ ਹੋ (ਉਦਾਹਰਣ ਵਜੋਂ VPN ਨੂੰ ਚਾਲੂ/ਬੰਦ ਕਰਕੇ, ਜਾਂ WiFi ਤੋਂ ਮੋਬਾਈਲ ਡੇਟਾ \'ਤੇ ਸਵਿੱਚ ਕਰਕੇ)।\n\nਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਕਿਰਪਾ ਕਰਕੇ ਇਹ FAQ ਐਂਟਰੀ ਵੇਖੋ। ਇਹ ਸਮੱਗਰੀ ਵਰਤਮਾਨ ਵਿੱਚ ਚੁਣੇ ਗਏ ਦੇਸ਼ ਦੀ ਸਮੱਗਰੀ ਲਈ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ।\n\n\"ਸੈਟਿੰਗਾਂ > ਸਮੱਗਰੀ > ਡਿਫ਼ਾਲਟ ਸਮੱਗਰੀ ਦੇਸ਼\" ਤੋਂ ਆਪਣੀ ਚੋਣ ਬਦਲੋ। + ਅਗਸਤ 2025 ਵਿੱਚ, ਗੂਗਲ ਨੇ ਐਲਾਨ ਕੀਤਾ ਕਿ ਸਤੰਬਰ 2026 ਤੋਂ, ਐਪਸ ਨੂੰ ਸਥਾਪਿਤ ਕਰਨ ਲਈ ਪ੍ਰਮਾਣਿਤ ਡਿਵਾਈਸਾਂ \'ਤੇ ਸਾਰੇ ਐਂਡਰਾਇਡ ਐਪਸ ਲਈ ਡਿਵੈਲਪਰ ਤਸਦੀਕ ਦੀ ਲੋੜ ਹੋਵੇਗੀ, ਜਿਸ ਵਿੱਚ ਪਲੇ ਸਟੋਰ ਤੋਂ ਬਾਹਰ ਸਥਾਪਤ ਕੀਤੇ ਐਪਸ ਵੀ ਸ਼ਾਮਲ ਹਨ। ਕਿਉਂਕਿ ਨਿਊਪਾਈਪ ਦੇ ਡਿਵੈਲਪਰ ਇਸ ਲੋੜ ਨਾਲ ਸਹਿਮਤ ਨਹੀਂ ਹਨ, ਇਸ ਲਈ ਨਿਊਪਾਈਪ ਉਸ ਸਮੇਂ ਤੋਂ ਬਾਅਦ ਪ੍ਰਮਾਣਿਤ ਐਂਡਰਾਇਡ ਡਿਵਾਈਸਾਂ \'ਤੇ ਕੰਮ ਨਹੀਂ ਕਰੇਗੀ। + ਵੇਰਵੇ + ਹੱਲ + + %d ਸਬਸਕ੍ਰਿਪਸ਼ਨ ਐਕਸਪੋਰਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ… + %d ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਐਕਸਪੋਰਟ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ… + + + %d ਸਬਸਕ੍ਰਿਪਸ਼ਨ ਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ… + %d ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਲੋਡ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ… + + + %d ਸਬਸਕ੍ਰਿਪਸ਼ਨ ਇੰਪੋਰਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ… + %d ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਇੰਪੋਰਟ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ… + + ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਇੰਪੋਰਟ ਕਰੋ + ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਐਕਸਪੋਰਟ ਕਰੋ + ਪਹਿਲਾਂ ਕੀਤੇ .json ਐਕਸਪੋਰਟ ਤੋਂ ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਨੂੰ ਇੰਪੋਰਟ ਕਰੋ + ਆਪਣੀਆਂ ਸਬਸਕ੍ਰਿਪਸ਼ਨਾਂ ਨੂੰ .json ਫਾਈਲ ਵਿੱਚ ਐਕਸਪੋਰਟ ਕਰੋ + ਪਹਿਲਾਂ ਕੀਤੇ ਐਕਸਪੋਰਟ ਤੋਂ ਇੰਪੋਰਟ ਕਰੋ diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index cf45f92fd..3cf0405f9 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -868,9 +868,32 @@ Podczas odtwarzania otrzymano od serwera błąd HTTP 403, prawdopodobnie spowodowany wygaśnięciem adresu URL strumienia lub blokadą adresu IP. Podczas odtwarzania otrzymano od serwera błąd HTTP %1$s. Podczas odtwarzania otrzymano od serwera błąd HTTP 403, prawdopodobnie spowodowany blokadą adresu IP lub problemami z odszyfrowaniem adresu URL strumienia. - %1$s odmówił dostarczenia danych, prosząc o zalogowanie się w celu potwierdzenia, że nie jest się botem.\n\nTwoje IP mogło zostać tymczasowo zablokowane przez %1$s. Możesz chwilę poczekać lub zmienić adres IP (na przykład włączając/wyłączając VPN lub przełączając się z sieci Wi-Fi na dane komórkowe). + %1$s odmówił dostarczenia danych, prosząc o zalogowanie się w celu potwierdzenia, że nie jest się botem.\n\nTwoje IP mogło zostać tymczasowo zablokowane przez %1$s. Możesz chwilę poczekać lub zmienić adres IP (na przykład włączając/wyłączając VPN lub przełączając się z sieci Wi-Fi na dane komórkowe).\n\nZobacz ten wpis w FAQ, aby uzyskać więcej informacji. Ta treść nie jest dostępna dla aktualnie wybranego kraju treści.\n\nZmień swój wybór w „Ustawienia > Zawartość > Domyślny kraj treści”. W sierpniu 2025 r. Google ogłosił, że od września 2026 r. instalowanie aplikacji będzie wymagać weryfikacji ich twórców w przypadku wszystkich aplikacji na Androida na certyfikowanych urządzeniach, w tym tych zainstalowanych poza sklepem Google Play. Ponieważ programiści NewPipe nie zgadzają się z tym wymogiem, NewPipie nie będzie już działać na certyfikowanych urządzeniach z Androidem po tym czasie. Szczegóły Rozwiązanie + + Eksportowanie %d subskrypcji… + Eksportowanie %d subskrypcji… + Eksportowanie %d subskrypcji… + Eksportowanie %d subskrypcji… + + + Ładowanie %d subskrypcji… + Ładowanie %d subskrypcji… + Ładowanie %d subskrypcji… + Ładowanie %d subskrypcji… + + + Importowanie %d subskrypcji… + Importowanie %d subskrypcji… + Importowanie %d subskrypcji… + Importowanie %d subskrypcji… + + Importuj subskrypcje + Eksportuj subskrypcje + Zaimportuj subskrypcje z poprzedniego eksportu do .json + Wyeksportuj swoje subskrypcje do pliku .json + Importuj z poprzedniego eksportu diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 056551d3f..b454706ed 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -859,9 +859,29 @@ Erro HTTP 403 recebido do servidor durante a reprodução, provavelmente causado por URL de streaming expirado ou IP banido Erro HTTP %1$s recebido do servidor durante reprodução Erro HTTP 403 recebido do servidor durante a reprodução, provavelmente causado por um banimento de IP ou problemas de desofuscação de URL de streaming - %1$s se recusou a fornecer dados, solicitando um login para confirmar que o solicitante não é um bot.\n\nSeu IP pode ter sido temporariamente banido por %1$s. Você pode esperar um pouco ou mudar para um IP diferente (por exemplo, ativando/desativando uma VPN ou alternando de Wi-Fi para dados móveis). + %1$s se recusou a fornecer dados, solicitando um login para confirmar que o solicitante não é um bot.\n\nSeu IP pode ter sido temporariamente banido por %1$s. Você pode esperar um pouco ou mudar para um IP diferente (por exemplo, ativando/desativando uma VPN ou alternando de Wi-Fi para dados móveis).\n\nConfira este artigo do FAQ para mais informações. Este conteúdo não está disponível para o país selecionado atualmente.\n\nAltere sua seleção acessando “Configurações > Conteúdo > País padrão do conteúdo”. Em agosto de 2025, o Google anunciou que, a partir de setembro de 2026, a instalação de aplicativos exigirá a verificação do desenvolvedor para todos os aplicativos Android em dispositivos certificados, incluindo aqueles instalados fora da Play Store. Como os desenvolvedores do NewPipe não concordam com esse requisito, o NewPipe não funcionará mais em dispositivos Android certificados após essa data. Detalhes Solução + + Exportando %d inscrição… + Exportando %d inscrições… + Exportando %d inscrições… + + + Carregando %d inscrição… + Carregando %d inscrições… + Carregando %d inscrições… + + + Importando %d inscrição… + Importando %d inscrições… + Importando %d inscrições… + + Importar inscrições + Exportar inscrições + Importar inscrições do arquivo .json exportado anterior + Exportar inscrições para arquivo .json + Importar da exportação anterior diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index 8bee327f3..07d3c345c 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -857,7 +857,7 @@ Entrada apagada Conta terminada\n\n%1$s fornece esta razão: %2$s Erro HTTP %1$s recebido do servidor ao reproduzir - %1$s recusou fornecer dados, pedindo por um login para confirmar que o solicitante não é um bot.\n\nO seu IP pode ter sido temporariamente banido por %1$s, pode esperar algum tempo ou mudar para um IP diferente (por exemplo, a ligar / desligar uma VPN, ou a alternar de Wi-Fi para dados móveis). + %1$s recusou fornecer dados, pedindo por um login para confirmar que o solicitante não é um bot.\n\nO seu IP pode ter sido temporariamente banido por %1$s, você pode esperar algum tempo ou mudar para um IP diferente (por exemplo, a ligar/desligar uma VPN, ou a alternar de Wi-Fi para dados móveis).\n\nConfira este artigo do FAQ para mais informações. Este conteúdo não está disponível para o país de conteúdo atualmente selecionado.\n\nAltere a sua seleção de \"Configurações > Conteúdo > País predefinido de conteúdo\". Erro HTTP 403 recebido do servidor durante a reprodução, provavelmente causado pela URL de streaming expirado ou IP banido Erro HTTP 403 recebido do servidor durante a reprodução, provavelmente causado por um bloqueio de IP ou problemas de desofuscação da URL de streaming diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index a8d6ff26a..a91069326 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -857,7 +857,7 @@ Entrada apagada Conta terminada\n\n%1$s fornece esta razão: %2$s Erro HTTP %1$s recebido do servidor ao reproduzir - %1$s recusou fornecer dados, pedindo por um login para confirmar que o solicitante não é um bot.\n\nO seu IP pode ter sido temporariamente banido por %1$s, pode esperar algum tempo ou mudar para um IP diferente (por exemplo, a ligar / desligar uma VPN, ou a alternar de Wi-Fi para dados móveis). + %1$s recusou fornecer dados, pedindo por um login para confirmar que o solicitante não é um bot.\n\nO seu IP pode ter sido temporariamente banido por %1$s, você pode esperar algum tempo ou mudar para um IP diferente (por exemplo, a ligar/desligar uma VPN, ou a alternar de Wi-Fi para dados móveis).\n\nConfira este artigo do FAQ para mais informações. Este conteúdo não está disponível para o país de conteúdo atualmente selecionado.\n\nAltere a sua seleção de \"Configurações > Conteúdo > País predefinido de conteúdo\". Erro HTTP 403 recebido do servidor durante a reprodução, provavelmente causado pela URL de streaming expirado ou IP banido Erro HTTP 403 recebido do servidor durante a reprodução, provavelmente causado por um bloqueio de IP ou problemas de desofuscação da URL de streaming diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml index f38397497..0e3854ea4 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -860,9 +860,32 @@ Počas prehrávania bola zo servera prijatá chyba HTTP 403, pravdepodobne spôsobená vypršaním platnosti streamingovej adresy URL alebo zákazom IP adresy Chyba HTTP %1$s prijatá zo servera počas prehrávania Chyba HTTP 403 prijatá zo servera počas prehrávania, pravdepodobne spôsobená zákazom IP adresy alebo problémami s deobfuskáciou streamingovej URL adresy - %1$s odmietol poskytnúť údaje, žiada o prihlásenie na potvrdenie, že žiadateľ nie je bot.\n\nVaša IP adresa mohla byť dočasne zakázaná %1$s, môžete nejaký čas počkať alebo prejsť na inú IP adresu (napríklad zapnutím/vypnutím VPN alebo prepnutím z WiFi na mobilné dáta). + %1$s odmietol poskytnúť údaje, žiada o prihlásenie na potvrdenie, že žiadateľ nie je bot.\n\nVaša IP adresa mohla byť dočasne zakázaná %1$s, môžete nejaký čas počkať alebo prejsť na inú IP adresu (napríklad zapnutím/vypnutím VPN alebo prepnutím z WiFi na mobilné dáta).\n\nPozrite si túto časť FAQ pre viac informácií. Tento obsah nie je dostupný pre aktuálne zvolenú krajinu obsahu.\n\nZmeňte výber v ponuke \"Nastavenia > Obsah > Predvolená krajina obsahu\". V auguste 2025 spoločnosť Google oznámila, že od septembra 2026 bude inštalácia aplikácií vyžadovať overenie vývojára pre všetky aplikácie Android na certifikovaných zariadeniach, vrátane tých, ktoré sú inštalované mimo obchodu Play Store. Keďže vývojári NewPipe s touto požiadavkou nesúhlasia, NewPipe po tomto termíne nebude na certifikovaných zariadeniach Android fungovať. Podrobnosti Riešenie + + Exportovanie %d odberu… + Exportovanie %d odberov… + Exportovanie %d odberov… + Exportovanie %d odberov… + + + Načítanie %d odberu… + Načítanie %d odberov… + Načítanie %d odberov… + Načítanie %d odberov… + + + Importovanie %d odberu… + Importovanie %d odberov… + Importovanie %d odberov… + Importovanie %d odberov… + + Importovať odbery + Exportovať odbery + Import odberov z predchádzajúceho exportu .json + Export vašich odberov do súboru .json + Importovať z predchádzajúceho exportu diff --git a/app/src/main/res/values-so/strings.xml b/app/src/main/res/values-so/strings.xml index dc2a89c9c..d242f8e3c 100644 --- a/app/src/main/res/values-so/strings.xml +++ b/app/src/main/res/values-so/strings.xml @@ -1,12 +1,12 @@ - Dhaafinta dagdaga ah + Isticmaal Dhaafinta dagdaga ah Xusuusnow meeshii iyo cabirkii udambeeyay ee daaqada Xusuusnow fadhiga daaqada - Madow + Mugdi Nashqada Nooca muuqaalka - Nooca dhagaysiga + Nooca Maqaalka Androidka hakuu baddalo midabka ogaysiiska galka waxa daaran asagoo kusalaynaya midabka galka shayga daaran (aalladahoo dhan looma wada heli karo nidaamkan) Midabbee ogaysiiska Soo Kicinaya @@ -14,25 +14,25 @@ Ku celi Ugu badnaan waxad dooran kartaa sadex shay iney ka muuqdaan ogaysiiska yar! Wax ka baddal hawsha ogaysiiska adigoo dushooda ku dhufanaya. Dooro ilaa sadex kamida si ay uga muuqdaan ogaysiiska yar adigoo saxaya santuuqa dhanka midig kaga yaala - Batoonka hawsha shanaad - Batoonka hawsha afraad - Batoonka hawsha sadexaad - Batoonka hawsha labaad - Batoonka hawsha koowaad + Batoonka shanaad + Batoonka afraad + Batoonka saddexaad + Batoonka labaad + Batoonka koowaad La ekaysii galka muuqaalka xaga ogaysiisyada ka muuqda cabirka 1:1 ayadoo laga soo baddalayo 16:9 Galka la ekaysii cabirka 1:1 - Soo bandhig istikhyaar ah in muuqaalka lagu furo xarunta madadaalada Kodi + Soo bandhig istikhyaar ah in muuqaalka lagu furo Kodi Soodhig istikhyaarka \"Ku fur Kodi\" - Kushub appka maqan ee Kore\? + Soo deji appka maqan ee Kore? Ku fur Kodi Aalladaha qaar kaliya ayaa furi kara muuqaalada 2K/4K ga ah - Tus tayooyinka kasii sareeeya + Tus tayooyinka sare Tayada muuqaalka daaqada Tayada muuqaalka - Dooro khaanada dhagaysiga lasoo dajiyo - Dooro khaanada muuqaalada lasoo dajiyo - Dhagaysiyada lasoo dajiyay halkan ayaa lagu kaydiyaa - Muuqaalada lasoo dajiyo halkan ayaa lagu kaydiyaa + Dooro Khaanada soo dejinta ee faylasha maqalka ah + Dooro khaanada Muuqaallada lagu soo dejinayo + Dhagaysiyada lasoo dajiyay halkan ayaa lagu kaydiyey + Muuqaalada lasoo dajiyo halkan ayaa lagu kaydiyey Khaanada dajinta dhagaysiga Khaanada dajinta muuqaalada Ku Dar @@ -41,17 +41,17 @@ Dooro Daaqada La calaamadsaday Rukunka - Faahfaahinta + Tus Faahfaahinta Lama cusbooneysiin karo rukunka Lama baddali karo rukunka Kanaalka waad iskajoojisay Iskajooji Rukunka Rukuntay Rukumo - Isticmaal dhagaysi daare dibada ah + Isticmaal dhagaysi Daare dibada ah Codka ayuu ka saaraa tayada muuqaalada qaar Isticmaal muuqaal daare dibada ah - La wadaag + Ku La wadaag Kutusaya natiijooyinka: %s Ma waxaad ka waday \"%1$s\"\? Fadhiga @@ -64,7 +64,7 @@ Wax fura lama helin shaygan. (waxaad Ku shuban kartaa VLC si aad u furto). Wax fura lama helin shaygan. Ku shubo VLC\? Lasoo galiyay: %1$s - Ku dhufo waynaysada 🔍 si aad wax uraadiso. + Ku dhufo raadinta si aad wax uraadiso. Shay magacan leh ayaa horay ujiray Ku badal Usamee magac gaar ah @@ -262,7 +262,7 @@ Fadlan hubi in arin cilladdan ka hadlaya horay loo wariyay. Marka wax horay u jiray la wariyo markale, wakhti ayaad naga qaadaysaa wakhtigaas oo aan cilada ku sixi la hayn. Ku wari xaga GitHub-ka Koobiyee warka oo diyaarsan - Khaladkan email ahaan ku warceli + Khaladkan email ahaan uga war bixi Waan ka xunahay, sidaa inay dhacdo ma ahayn. U ogolow appka inuu dul fuulo applicationada kale Ma rabtaa inaad sidii hore kuceliso\? @@ -400,11 +400,11 @@ Tus faallooyinka Hormada daareha hadda wax shidaya waa la baddali doonaa Kala baddalka daareha waxay badali kartaa hormada sidaas darteed waydii in la xaqiijiyo intaan hormada la tirtirin - Xaqiijinta tirtirka hormada + Weydii xaqiijin ka hor intaadan tirtirin saf-ka Wakhtiga horay udhaafinta/dibucelinta - Mugdi - Caddaan - Dhagaysi + Madow + Iftiin + Maqal Waxba Raadi Daji @@ -491,7 +491,7 @@ Ayadooy ugu wacantahay xayiraad xaga ExoPlayer-ka ah xadka dhaaf-dhaafinta waa %d ilbiriqsi Haa, sidoo kale ku dar muuqaalada qayb laga daawaday - Muuqaalada la daawaday kahor iyo kadib markii xulka lagu daray waa la saari doonaa. \nMa hubtaa? Arrinkan dib looma soocelin karo! + Muuqaalada la daawaday kahor iyo kadib markii xulka lagu daray waa la saari doonaa. \nMa hubtaa? Saar muuqaalada la daawaday? Saar kuwa la daawaday Aaladu saytahay @@ -520,7 +520,7 @@ Habayntii way guuldareystay Lama helin Martigaliyuhu ma aqbalo dajinta qaybaha badan leh, iskula day @string/msg_threads = 1 - Kuma xidhi karo martigaliyaha + Kuma xidhmi karo server-ka Lama heli karo martigaliyaha Lama samayn karo iskuxidh amni ah khaanadii la rabay lama samayn karo @@ -630,7 +630,7 @@ Soojeedinada raadinta banaanka Soojeedinada raadinta gudaha Cabirka soodaarida udhexeeya - Jabi Daareha + Jabi Daaraha Haa Maya Raadi %1$s diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 84590e255..6eb49e6a1 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -845,9 +845,26 @@ Oynatırken sunucudan HTTP 403 hatası alındı, akış URL’si bitmiş ya da IP engellenmiş olabilir Oynatırken sunucudan HTTP %1$s hatası alındı Oynatırken sunucudan HTTP 403 hatası alındı, IP engeli ya da akış URL’si çözme sorunları olabilir - %1$s veri sağlamayı geri çevirdi, istekçinin robot olmadığını doğrulaması için oturum açmasını istiyor.\n\n%1$s, IP adresinizi geçici olarak engellemiş olabilir, bir süre bekleyebilir ya da başka IP\'ye geçebilirsiniz (örneğin VPN\'i açıp/kapatarak ya da WiFi\'den mobil veriye geçerek). + %1$s veri sağlamıyor, istekçinin robot olmadığını doğrulaması için oturum açmasını istiyor.\n\n%1$s, IP adresinizi geçici olarak engellemiş olabilir, bir süre bekleyebilir ya da başka IP\'ye geçebilirsiniz (örneğin VPN\'i açıp/kapatarak ya da WiFi\'den mobil veriye geçerek).\n\nDaha çok bilgi için bu SSS girdisine bakın. Bu içerik şu anda seçili içerik ülkesinde kullanılamıyor.\n\nSeçiminizi \"Ayarlar > İçerik > Öntanımlı içerik ülkesi\"nden değiştirin. - Google, Eylül 2026\'dan itibaren sertifikalı Android cihazlardaki Play Store harici olmak üzere tüm uygulamaların, geliştiricilerin kişisel kimlik bilgilerini doğrudan Google’a göndermesini gerektireceğini duyurdu. NewPipe geliştiricileri bu zorunluluğu kabul etmediğinden, NewPipe bu tarihten sonra sertifikalı Android cihazlarda çalışmayacaktır. - Detaylar + Google, Eylül 2026\'dan sonra sertifikalı Android aygıtlarda Play Store dışından kurulmuşlarla birlikte tüm uygulamaların, geliştiricilerin kişisel kimlik bilgilerini doğrudan Google’a göndermesini gerektireceğini duyurdu. NewPipe geliştiricileri bu zorunluluğu kabul etmediğinden, NewPipe bu tarihten sonra sertifikalı Android aygıtlarda çalışmayacaktır. + Ayrıntılar Çözüm + + %d abonelik dışa aktarılıyor… + %d abonelik dışa aktarılıyor… + + + %d abonelik yükleniyor… + %d abonelik yükleniyor… + + + %d abonelik içeri aktarılıyor… + %d abonelik içeri aktarılıyor… + + Abonelikleri içeri aktar + Abonelikleri dışarı aktar + Abonelikleri önceki dışarı aktarmadaki .json dosyası ile içeri aktar + Aboneliklerini bir .json dosyasında dışarı aktar + Önceki dışarı aktarmadan içe aktar diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index e43b2f5df..755fa7bec 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -62,7 +62,7 @@ Lỗi Lỗi kết nối mạng Không thể tải tất cả hình thu nhỏ - Không thể phân tích cú pháp trang web vì trang này đã ngừng hoạt động vào 21/07/2025. + Không thể phân tích cú pháp web. Nội dung không khả dụng Không thể thiết lập menu tải về Ứng dụng/Giao diện người dùng bị lỗi @@ -821,8 +821,8 @@ Phim và chương trình đang thịnh hành Âm nhạc đang thịnh hành Đã xảy ra lỗi HTTP 403 trong khi phát, có thể do URL phát sóng đã hết hạn hoặc bị ban IP - %1$s đã từ chối cung cấp dữ liệu, cần phải đăng nhập để xác nhận yêu cầu viên ko phải là bot.\n\nIP này có vẻ đã bị ban tạm thời bởi %1$s, bạn có thể đợi một lúc hoặc chuyển sang IP khác (ví dụ như việc tắt / bật lại VPN, hoặc là chuyển mạng từ WIFI sang 4G/5G). - Nội dung này không được hỗ trợ tại quốc gia mà bạn chọn.\n\nHãy đổi quốc gia trong phần \"Cài đặt > Nội dung > Nội dung quốc gia mặc định\". + %1$s đã từ chối cung cấp dữ liệu, cần phải đăng nhập để xác nhận requester của NewPipe ko phải là bot.\n\nIP này có vẻ đã bị ban tạm thời bởi %1$s, bạn có thể đợi một lúc hoặc chuyển sang IP khác (ví dụ như việc tắt / bật lại VPN, hoặc là chuyển mạng từ WIFI sang 4G/5G).\n\nXem qua phần FAQ này đẻ biết thêm chi tiết + Nội dung này không được hỗ trợ tại quốc gia mà bạn chọn.\n\nHãy đổi quốc gia trong phần \"Cài đặt > Nội dung > Quốc gia nội dung mặc định\". Để sử dụng tính năng phát video nổi, hãy chọn %1$s trong Cài đặt Android và bật tính năng %2$s. Đã xảy ra lỗi HTTP 403 trong khi phát, có thể IP này đã bị ban hoặc vấn đề phát URL deobfuscation \"Cho phép hiển thị trên ứng dụng khác\" @@ -831,4 +831,7 @@ Tài khoản bị vô hiệu hóa. \n\n%1$s cung cấp lý do này: %2$s Entry đã xóa Đã xảy ra lỗi HTTP %1$s trong khi phát + Từ tháng 8 năm 2025, Google đã thông báo rằng kể từ tháng 9 năm 2026, việc cài app sẽ yêu cầu các nhà phát triển phải xác minh trên những thiết bị đã chứng nhận, kể cả đối với các ứng dụng ngoài Play Store. Vì các nhà phát triển của NewPipe không đồng ý với điều kiện này, nên có lẽ NewPipe sẽ không còn hoạt động trên các máy Android được chứng nhận sau thời điểm ấy. + Chi tiết + Giải pháp diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 53f0f1d06..881829c90 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -831,9 +831,23 @@ 播放时从服务器收到 HTTP 403 错误,可能因串流 URL 过期或 IP 封锁导致 播放时从服务器收到 HTTP %1$s 错误 播放时从服务器收到 HTTP 403 错误,可能因 IP 封锁或串流 URL 解密问题导致 - %1$s 拒绝提供数据, 要求登录确认请求方不是机器人。\n\n你的 IP 可能已经暂时被 %1$s 封禁,你可以等待一段时间或切换到不同 IP (比如开/关 VPN, 或者从 WiFi 连接切换到移动数据)。 + %1$s 拒绝提供数据, 要求登录确认请求方不是机器人。\n\n你的 IP 可能已经暂时被 %1$s 封禁,你可以等待一段时间或切换到不同 IP (比如开/关 VPN, 或者从 WiFi 连接切换到移动数据)。\n\n请见 此 FAQ条目 获取更多信息。 此内容对当前选中的内容地区不可用。\n\n要更改选择,请前往 “设置 > 内容 > 默认内容地区”。 2025 年 8 月,Google 宣布自 2026 年 9 月起,在已认证设备上安装所有安卓应用都需要开发者验证身份,包括在 Play 商店之外安装的应用。由于 NewPipe 开发者反对此要求,NewPipe 在此时间点后不会再在已认证设备上工作。 详情 解决方案 + + 正在导出 %d 个订阅… + + + 正在加载 %d 个订阅… + + + 正在导入 %d 个订阅… + + 导入订阅 + 导出订阅 + 从之前的 .json 导出文件导入订阅 + 导出订阅到 .json 文件 + 从之前的导出文件导入 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index cca70f771..9240a6cdd 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -343,7 +343,7 @@ 生成獨特的名稱 覆寫 有已下載的同名檔案 - 已有進行中的下載與此同名 + 已有正在進行的下載與此同名 顯示錯誤 無法建立檔案 無法建立目的地資料夾 @@ -377,7 +377,7 @@ 檔案已被移動或刪除 同名的檔案已存在 無法覆寫檔案 - 已有擱置中的下載與此同名 + 已有正在擱置的下載與此同名 NewPipe 在處理檔案時被關閉 裝置上沒有剩餘的空間 進度遺失,因為檔案已被刪除 @@ -811,6 +811,23 @@ 播放時收到來自伺服器的 HTTP 錯誤 403,可能因串流網址過期或 IP 封鎖所致 播放時收到來自伺服器的 HTTP 錯誤 %1$s 播放時收到來自伺服器的 HTTP 錯誤 403,可能因 IP 封鎖或串流網址去混淆化問題所致 - %1$s 拒絕提供資料,要求登入以確認請求者並非機器人。\n\n您的 IP 位址可能已被 %1$s 暫時封鎖,您可稍候片刻或切換至其他 IP 位址(例如開啟/關閉 VPN,或從 Wi-Fi 切換至行動數據)。 + %1$s 拒絕提供資料,要求登入以確認請求者並非機器人。\n\n您的 IP 位址可能已被 %1$s 暫時封鎖,您可稍候片刻或切換至其他 IP 位址(例如開啟/關閉 VPN,或從 Wi-Fi 切換至行動數據)。\n\n更多資訊請參見此 FAQ 條目 此內容目前無法於您所選的國家/地區提供。\n\n請至「設定」→「內容」→「預設內容國家」變更您的選擇。 + 2025年8月,Google 宣佈自2026年9月起,所有經認證裝置上的 Android 應用程式(包含不是透過 Play 商店安裝的應用程式)皆須通過開發者驗證方可安裝。由於 NewPipe 開發團隊不接受此項要求,該應用程式屆時將無法在經認證的 Android 裝置上運作。 + 詳細資訊 + 解決方案 + + 正在匯出 %d 個訂閱… + + + 正在載入 %d 個訂閱… + + + 正在匯入 %d 個訂閱… + + 匯入訂閱 + 匯出訂閱 + 匯出您的訂閱至 .json 檔案 + 從先前匯出的 .json 匯入訂閱 + 從先前的匯出檔案匯入 diff --git a/fastlane/metadata/android/hi/changelogs/1007.txt b/fastlane/metadata/android/hi/changelogs/1007.txt index 071ab64e3..82f70fc69 100644 --- a/fastlane/metadata/android/hi/changelogs/1007.txt +++ b/fastlane/metadata/android/hi/changelogs/1007.txt @@ -1 +1,10 @@ -फिक्स्ड YouTube कोई स्ट्रीम नहीं चला रहा है +इस हॉटफ़िक्स रिलीज़ से "Content not available" एरर ठीक हो गया है: अब YouTube वीडियो फिर से चलाए जा सकते हैं! + +इससे 0.28.1 में आई कुछ और गड़बड़ियाँ भी ठीक हो गई हैं: +• प्लेलिस्ट आइटम को खींचकर सिर्फ़ आस-पास की जगहों पर ही ले जा पाना +• मौजूदा और पिछले वीडियो के बीच टाइटल/कमेंट्स का बार-बार बदलना +• "Start main player in fullscreen" ऑप्शन का काम न करना + +दूसरे सुधार: +• [YouTube] लाइवस्ट्रीम को 4 घंटे तक पीछे ले जाने की सुविधा फिर से चालू +• बैकग्राउंड में चलते समय लाइवस्ट्रीम वीडियो लोड न करना diff --git a/fastlane/metadata/android/hi/changelogs/1008.txt b/fastlane/metadata/android/hi/changelogs/1008.txt new file mode 100644 index 000000000..c5e335119 --- /dev/null +++ b/fastlane/metadata/android/hi/changelogs/1008.txt @@ -0,0 +1,4 @@ +∙ स्ट्रीम को पिछली प्लेबैक स्थिति से फिर से शुरू करने की समस्या ठीक की गई +∙ [YouTube] ज़्यादा चैनल URL फ़ॉर्मैट के लिए सपोर्ट जोड़ा गया +∙ [YouTube] ज़्यादा वीडियो मेटा-इन्फ़ो फ़ॉर्मैट के लिए सपोर्ट जोड़ा गया +∙ अनुवाद अपडेट किए गए diff --git a/fastlane/metadata/android/hi/changelogs/1009.txt b/fastlane/metadata/android/hi/changelogs/1009.txt new file mode 100644 index 000000000..13387ec52 --- /dev/null +++ b/fastlane/metadata/android/hi/changelogs/1009.txt @@ -0,0 +1,14 @@ +ज़रूरी +'Keep Android Open' कैंपेन के बारे में जानकारी और कार्रवाई के लिए अपील जोड़ी गई: https://www.keepandroidopen.org/ + +बेहतर +[फ़ीड] पुरानी सब्सक्रिप्शन के अपडेट होने का क्रम बदला गया +कमेंट पेज एक के ऊपर एक न दिखें +वीडियो डिटेल पेज पर क्लिक करने पर, क्लिक इवेंट नीचे के व्यूज़ तक न पहुँचें + +ठीक किया गया +कमेंट रिप्लाई हेडर लेआउट में अवतार इमेज न दिखना +प्लेयर से जुड़े कई UI सुधार +[SoundCloud] लंबी ID वाले स्ट्रीम को ठीक किया गया + +और भी कई सुधार और बेहतर बदलाव! diff --git a/fastlane/metadata/android/id/changelogs/1006.txt b/fastlane/metadata/android/id/changelogs/1006.txt new file mode 100644 index 000000000..b098c7e3e --- /dev/null +++ b/fastlane/metadata/android/id/changelogs/1006.txt @@ -0,0 +1,16 @@ +# Peningkatan +Pertahankan pemutar saat ini ketika mengklik stempel waktu +Cobalah untuk memulihkan misi pengunduhan yang tertunda jika memungkinkan +Tambahkan opsi untuk menghapus unduhan tanpa ikut menghapus berkas +Izin Overlay: menampilkan dialog penjelasan untuk Android > R +Mendukung tautan on.soundcloud saat membuka +Banyak perbaikan dan optimasi kecil. + +# Telah diperbaiki +Memperbaiki format penghitungan pendek untuk versi Android di bawah 7 +Memperbaiki notifikasi berhantu +Memperbaiki berkas SRT +Memperbaiki banyak sekali kerusakan + +# Pengembangan +Modernisasi kode internal diff --git a/fastlane/metadata/android/id/changelogs/1008.txt b/fastlane/metadata/android/id/changelogs/1008.txt new file mode 100644 index 000000000..26580f472 --- /dev/null +++ b/fastlane/metadata/android/id/changelogs/1008.txt @@ -0,0 +1,4 @@ +∙ Memperbaiki masalah melanjutkan pemutaran pengaliran dari posisi pemutaran terakhir +∙ [YouTube] Menambahkan dukungan untuk lebih banyak format Tautan saluran +∙ [YouTube] Menambahkan dukungan untuk lebih banyak format metainfo video +∙ Pembaruan terjemahan diff --git a/fastlane/metadata/android/id/changelogs/1009.txt b/fastlane/metadata/android/id/changelogs/1009.txt new file mode 100644 index 000000000..46e5ebceb --- /dev/null +++ b/fastlane/metadata/android/id/changelogs/1009.txt @@ -0,0 +1,14 @@ +Penting +Informasi dan ajakan untuk bertindak terkait kampanye Keep Android Open telah ditambahkan: https://www.keepandroidopen.org/ + +Improved +[Feed] Acak urutan pembaruan langganan yang sudah kedaluwarsa di +Jangan menumpuk halaman komentar +Jangan meneruskan peristiwa klik ke tampilan yang mendasarinya saat mengklik halaman detail video. + +Telah Diperbaiki +Tata letak header balasan komentar tanpa gambar avatar +Perbaikan antarmuka pengguna terkait pemain ganda +[SoundCloud] Perbaiki aliran data dengan ID yang panjang + +dan masih banyak perbaikan dan peningkatan lainnya! diff --git a/fastlane/metadata/android/it/changelogs/1008.txt b/fastlane/metadata/android/it/changelogs/1008.txt new file mode 100644 index 000000000..c8924ecc1 --- /dev/null +++ b/fastlane/metadata/android/it/changelogs/1008.txt @@ -0,0 +1,4 @@ +∙ Corretto il problema di ripresa degli streaming dall'ultima posizione di riproduzione +∙ [YouTube] Aggiunto il supporto per più formati di URL dei canali +∙ [YouTube] Aggiunto il supporto per più formati di metainformazioni video +∙ Traduzioni aggiornate diff --git a/fastlane/metadata/android/it/changelogs/1009.txt b/fastlane/metadata/android/it/changelogs/1009.txt new file mode 100644 index 000000000..5e0110e49 --- /dev/null +++ b/fastlane/metadata/android/it/changelogs/1009.txt @@ -0,0 +1,14 @@ +Importante +Informazioni e invito all'azione per la campagna Keep Android Open aggiunte: https://www.keepandroidopen.org/ + +Migliorato +[Feed] Riordina l'ordine in cui vengono aggiornati gli abbonamenti obsoleti +Non sovrapporre le pagine dei commenti +Non passare gli eventi clic alle viste sottostanti quando si fa clic sulla pagina dei dettagli del video + +Corretto +Layout dell'intestazione delle risposte ai commenti senza immagine avatar +Correzioni multiple all'interfaccia utente relative al player +[SoundCloud] Correzione degli stream con ID lunghi + +e altre correzioni e miglioramenti! diff --git a/fastlane/metadata/android/pa/changelogs/1008.txt b/fastlane/metadata/android/pa/changelogs/1008.txt new file mode 100644 index 000000000..ff98b5761 --- /dev/null +++ b/fastlane/metadata/android/pa/changelogs/1008.txt @@ -0,0 +1,4 @@ +∙ ਫਿਕਸਡ ਆਖਰੀ ਪਲੇਬੈਕ ਸਥਿਤੀ 'ਤੇ ਸਟ੍ਰੀਮਾਂ ਨੂੰ ਰਿਜ਼ਿਊਮ ਕਰਨਾ ਠੀਕ ਕੀਤਾ ਗਿਆ +∙ [YouTube] ਹੋਰ ਚੈਨਲ URL ਫਾਰਮੈਟਾਂ ਲਈ ਸਮਰਥਨ ਜੁਟਾਇਆ ਗਿਆ +∙ [YouTube] ਹੋਰ ਵੀਡੀਓ ਮੈਟਾਇਨਫੋ ਫਾਰਮੈਟਾਂ ਲਈ ਸਮਰਥਨ ਜੁਟਾਇਆ ਗਿਆ +∙ ਅੱਪਡੇਟ ਕੀਤੇ ਅਨੁਵਾਦ diff --git a/fastlane/metadata/android/pa/changelogs/1009.txt b/fastlane/metadata/android/pa/changelogs/1009.txt new file mode 100644 index 000000000..0b3b521f4 --- /dev/null +++ b/fastlane/metadata/android/pa/changelogs/1009.txt @@ -0,0 +1,15 @@ +ਮਹੱਤਵਪੂਰਨ +ਕੀਪ ਐਂਡਰਾਇਡ ਓਪਨ ਮੁਹਿੰਮ ਲਈ ਜਾਣਕਾਰੀ ਅਤੇ ਕਾਰਵਾਈ ਲਈ ਸੱਦਾ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ: https://www.keepandroidopen.org/ + +ਫਿਕਸਡ +[ਫੀਡ] ਪੁਰਾਣੀਆਂ ਗਾਹਕੀਆਂ ਨੂੰ ਅੱਪਡੇਟ ਕੀਤੇ ਜਾਣ ਦੇ ਕ੍ਰਮ ਨੂੰ ਸ਼ਫਲ ਕਰੋ + +ਟਿੱਪਣੀ ਪੰਨਿਆਂ ਨੂੰ ਸਟੈਕ ਨਾ ਕਰੋ +ਵੀਡੀਓ ਵੇਰਵੇ ਪੰਨੇ 'ਤੇ ਕਲਿੱਕ ਕਰਦੇ ਸਮੇਂ ਕਲਿੱਕ ਇਵੈਂਟਾਂ ਨੂੰ ਅੰਡਰਲਾਈੰਗ ਵਿਯੂਜ਼ ਵਿੱਚ ਨਾ ਭੇਜੋ + +ਸਥਿਰ +ਅਵਤਾਰ ਚਿੱਤਰ ਤੋਂ ਬਿਨਾਂ ਟਿੱਪਣੀ ਜਵਾਬਾਂ ਦਾ ਸਿਰਲੇਖ ਲੇਆਉਟ +ਮਲਟੀਪਲ ਪਲੇਅਰ-ਸਬੰਧਤ UI ਫਿਕਸ +[ਸਾਊਂਡ ਕਲਾਉਡ] ਲੰਬੇ ਆਈਡੀ ਨਾਲ ਸਟ੍ਰੀਮਾਂ ਨੂੰ ਫਿਕਸ ਕਰੋ + +ਅਤੇ ਹੋਰ ਫਿਕਸ ਅਤੇ ਸੁਧਾਰ! diff --git a/fastlane/metadata/android/ro/changelogs/1000.txt b/fastlane/metadata/android/ro/changelogs/1000.txt new file mode 100644 index 000000000..6ceb4642f --- /dev/null +++ b/fastlane/metadata/android/ro/changelogs/1000.txt @@ -0,0 +1,11 @@ +Îmbunătățiri +• Descrierea listei de redare poate fi extinsă sau restrânsă la clic +• Gestionare automată a linkurilor subscribeto.me pentru PeerTube +• Redarea unui singur element pornește doar din ecranul Istoric + +Remedieri +• Corectată vizibilitatea butonului RSS +• Rezolvată blocarea previzualizării în bara de căutare +• Corectată adăugarea elementelor fără miniatură +• Reparat pop-up-ul pentru elemente corelate +• Corectată ordinea în „Adaugă la lista de redare” diff --git a/fastlane/metadata/android/ro/changelogs/1001.txt b/fastlane/metadata/android/ro/changelogs/1001.txt new file mode 100644 index 000000000..2a8af34cd --- /dev/null +++ b/fastlane/metadata/android/ro/changelogs/1001.txt @@ -0,0 +1,6 @@ +Îmbunătățit +• Se permite întotdeauna modificarea preferințelor de notificare ale jucătorului pe Android 13+ + +Remediat +• S-a remediat problema care împiedica exportul bazei de date/abonamentelor să trunchieze un fișier deja existent, ceea ce putea duce la un export corupt +• S-a remediat problema reluării playerului de la început la clic pe un timestamp diff --git a/fastlane/metadata/android/ro/changelogs/1002.txt b/fastlane/metadata/android/ro/changelogs/1002.txt new file mode 100644 index 000000000..32148e1b5 --- /dev/null +++ b/fastlane/metadata/android/ro/changelogs/1002.txt @@ -0,0 +1,4 @@ +S-a remediat eroarea care împiedica YouTube să redea niciun stream. + +Această versiune rezolvă doar cea mai urgentă eroare care împiedică încărcarea detaliilor videoclipurilor YouTube. +Știm că există și alte probleme și vom lansa în curând o versiune separată pentru a le rezolva. diff --git a/fastlane/metadata/android/ro/changelogs/1003.txt b/fastlane/metadata/android/ro/changelogs/1003.txt new file mode 100644 index 000000000..e52ece7a6 --- /dev/null +++ b/fastlane/metadata/android/ro/changelogs/1003.txt @@ -0,0 +1,6 @@ +Aceasta este o actualizare rapidă care corectează erori YouTube: +• [YouTube] Repară încărcarea informațiilor video, erorile HTTP 403 la redare și redarea unor videoclipuri cu restricție de vârstă +• Corectează problema dimensiunii subtitrărilor care nu se actualiza +• Corectează descărcarea dublă a informațiilor la deschiderea unui stream +• [SoundCloud] Elimină streamurile protejate DRM care nu puteau fi redate +• Traduceri actualizate diff --git a/fastlane/metadata/android/ro/changelogs/1004.txt b/fastlane/metadata/android/ro/changelogs/1004.txt new file mode 100644 index 000000000..c2751a982 --- /dev/null +++ b/fastlane/metadata/android/ro/changelogs/1004.txt @@ -0,0 +1,3 @@ +Această versiune remediază problema YouTube care oferea doar un flux video la 360p. + +Rețineți că soluția utilizată în această versiune este probabil temporară și, pe termen lung, protocolul video SABR trebuie implementat, însă membrii TeamNewPipe sunt ocupați în prezent, așa că orice ajutor ar fi foarte apreciat! https://github.com/TeamNewPipe/NewPipe/issues/12248 diff --git a/fastlane/metadata/android/tr/changelogs/1005.txt b/fastlane/metadata/android/tr/changelogs/1005.txt index 46b3142f7..9673114f1 100644 --- a/fastlane/metadata/android/tr/changelogs/1005.txt +++ b/fastlane/metadata/android/tr/changelogs/1005.txt @@ -1,17 +1,2 @@ -Yeni -• Android Auto desteği eklendi -• Akış gruplarının ana ekran sekmeleri olarak ayarlanmasına izin verme -• [YouTube] Geçici oynatma listesi olarak paylaşma -• [SoundCloud] Beğenilen kanal sekmesi - -Geliştirildi -• Daha iyi arama çubuğu önerileri -• İndirilenler'de indirme tarihini gösterimi -• Android 13 uygulama başı dil kullanma - -Düzeltildi -• Karanlık modda bozuk metin renkleri düzeltildi -• [YouTube] 100'den fazla öğeyi yüklemeyen oynatma listeleri düzeltildi -• [YouTube] Eksik önerilen videolar düzeltildi -• Geçmiş listesi görünümündeki çökmeler düzeltildi -• Yorum yanıtlarındaki zaman damgaları düzeltildi +Yeni: Android Auto desteği eklendi. Akış grupları ana ekran sekmesi yapılabilir. [YouTube] Geçici oynatma listesi olarak paylaşma. [SoundCloud] Beğenilen kanallar sekmesi geliştirildi. Daha iyi arama çubuğu önerileri. İndirilenler’de indirme tarihi gösterimi. Android 13 uygulama başı dil kullanımı. +Düzeltildi: Karanlık modda bozuk metin renkleri. [YouTube] 100+ öğe yükleyemeyen oynatma listeleri. Eksik önerilen videolar. Geçmiş listesi çökmeleri. Yorum yanıtı zaman damgaları. diff --git a/fastlane/metadata/android/vi/changelogs/66.txt b/fastlane/metadata/android/vi/changelogs/66.txt index 99b09fe05..2e28f70bd 100644 --- a/fastlane/metadata/android/vi/changelogs/66.txt +++ b/fastlane/metadata/android/vi/changelogs/66.txt @@ -7,15 +7,15 @@ ### Cải tiến -- Tắt hoạt ảnh biểu tượng burgermenu #1486 -- hoàn tác xóa tải xuống #1472 +- Tắt animation của biểu tượng burgermenu #1486 +- hoàn tác các tải xuống đã xóa #1472 - Tùy chọn tải xuống trong menu chia sẻ #1498 -- Đã thêm tùy chọn chia sẻ vào menu nhấn dài #1454 -- Thu nhỏ trình phát chính ở lối ra #1354 -- Phiên bản thư viện cập nhật và bản sửa lỗi sao lưu cơ sở dữ liệu #1510 -- ExoPlayer 2.8.2 Cập nhật #1392 -- Làm lại hộp thoại kiểm soát tốc độ phát lại để hỗ trợ các kích cỡ bước khác nhau nhằm thay đổi tốc độ nhanh hơn. -- Đã thêm nút chuyển đổi để tua đi nhanh trong khi im lặng trong điều khiển tốc độ phát lại. Điều này sẽ hữu ích cho sách nói và một số thể loại âm nhạc nhất định, đồng thời có thể mang lại trải nghiệm liền mạch thực sự (và có thể ngắt một bài hát có nhiều khoảng lặng =\\). +- Đã thêm tùy chọn chia sẻ vào menu nhấn giữ #1454 +- Thu nhỏ trình phát chính khi thoát #1354 +- Cập nhật phiên bản thư viện và bản sửa lỗi sao lưu cơ sở dữ liệu #1510 +- Cập nhật ExoPlayer lên bản 2.8.2 #1392 +- Làm lại hộp thoại kiểm soát tốc độ phát lại để hỗ trợ các số lần nhân đôi khác nhau nhằm thay đổi tốc độ nhanh hơn. +- Đã thêm nút chuyển đổi để tuanhanh trong khi im lặng trong điều khiển tốc độ phát lại. Điều này sẽ hữu ích cho sách nói và một số thể loại âm nhạc nhất định, đồng thời có thể mang lại trải nghiệm liền mạch thực sự (và có thể ngắt một bài hát có nhiều khoảng lặng =\\). - Độ phân giải nguồn phương tiện được tái cấu trúc để cho phép truyền siêu dữ liệu cùng với phương tiện nội bộ trong trình phát thay vì thực hiện thủ công. Bây giờ chúng tôi có một nguồn siêu dữ liệu duy nhất và có sẵn trực tiếp khi quá trình phát lại bắt đầu. - Đã sửa lỗi siêu dữ liệu danh sách phát từ xa không cập nhật khi có siêu dữ liệu mới khi mở đoạn danh sách phát. - Nhiều bản sửa lỗi giao diện người dùng khác nhau: #1383, các điều khiển thông báo trình phát nền giờ đây luôn có màu trắng, dễ dàng tắt trình phát cửa sổ bật lên thông qua thao tác ném diff --git a/fastlane/metadata/android/vi/changelogs/68.txt b/fastlane/metadata/android/vi/changelogs/68.txt index 2247be255..f3c7b7499 100644 --- a/fastlane/metadata/android/vi/changelogs/68.txt +++ b/fastlane/metadata/android/vi/changelogs/68.txt @@ -1,31 +1,21 @@ -# thay đổi của v0.14.1 +# Thay đổi -### Đã sửa -- Đã sửa lỗi không giải mã được url video #1659 -- Sửa lỗi link mô tả không giải nén tốt #1657 +### v0.14.1 +Đã sửa +• Lỗi không giải mã được URL video (#1659) +• Lỗi liên kết trong mô tả video (#1657) -# thay đổi của v0.14.0 +### v0.14.0 +Mới +• Thiết kế ngăn kéo mới +• Trang chủ có thể tùy chỉnh -### Mới -- Thiết kế ngăn kéo mới #1461 -- Trang trước có thể tùy chỉnh mới #1461 +Cải tiến +• Cử chỉ điều khiển được làm lại +• Cách mới để đóng trình phát cửa sổ bật lên -### Cải tiến -- Điều khiển cử chỉ được làm lại #1604 -- Cách mới để đóng trình phát cửa sổ bật lên #1597 - -### Đã sửa -- Sửa lỗi khi không có số lượng đăng ký. Đóng #1649. -- Hiển thị "Không có số lượng người đăng ký" trong những trường hợp đó -- Khắc phục NPE khi danh sách phát YouTube trống -- Sửa nhanh các ki-ốt trong SoundCloud -- Tái cấu trúc và sửa lỗi #1623 -- Sửa kết quả tìm kiếm theo chu kỳ #1562 -- Sửa lỗi thanh Tìm kiếm không được bố trí tĩnh -- Sửa lỗi video YT Premium không bị chặn đúng cách -- Khắc phục Video đôi khi không tải (do phân tích cú pháp DASH) -- Sửa các liên kết trong phần mô tả video -- Hiển thị cảnh báo khi ai đó cố gắng tải xuống thẻ sdcard bên ngoài -- sửa lỗi không hiển thị báo cáo kích hoạt ngoại lệ -- hình thu nhỏ không hiển thị trong trình phát nền dành cho android 8.1 [xem tại đây](https://github.com/TeamNewPipe/NewPipe/issues/943) -- Sửa lỗi đăng ký máy thu phát sóng. Đóng #1641. +Đã sửa +• Lỗi hiển thị số lượng người đăng ký +• Lỗi danh sách phát YouTube trống +• Lỗi tìm kiếm, liên kết mô tả và tải video +• Một số lỗi trình phát, hình thu nhỏ và đăng ký diff --git a/fastlane/metadata/android/vi/changelogs/71.txt b/fastlane/metadata/android/vi/changelogs/71.txt index 6eb1ad511..e2145ae34 100644 --- a/fastlane/metadata/android/vi/changelogs/71.txt +++ b/fastlane/metadata/android/vi/changelogs/71.txt @@ -1,10 +1,6 @@ ### Cải thiện -* Thêm thông báo cập nhật ứng dụng cho bản dựng GitHub (#1608 bởi @krtkush) -* Nhiều cải tiến cho trình tải xuống (#1944 bởi @kapodamy): -* Thêm biểu tượng trắng bị thiếu và sử dụng cách thức cố định để thay đổi màu biểu tượng -* Kiểm tra xem trình lặp có được khởi tạo hay không (sửa lỗi #2031) -* Cho phép tải xuống lại với lỗi "xử lý hậu kỳ thất bại" trong bộ ghép nối mới -* Bộ ghép nối MPEG-4 mới sửa lỗi luồng video và âm thanh không đồng bộ (#2039) +* Thêm thông báo cập nhật cho bản build từ GitHub (#1608, @krtkush) +* Cải thiện downloader: bổ sung icon, cho phép tải lại khi lỗi hậu xử lý và thêm muxer MPEG-4 mới để đồng bộ video-audio (#1944, #2039, @kapodamy) ### Sửa lỗi -* Luồng trực tiếp YouTube dừng phát sau một thời gian ngắn (#1996 bởi @yausername) +* Livestream YouTube dừng phát sau một thời gian ngắn (#1996, @yausername) diff --git a/fastlane/metadata/android/vi/changelogs/740.txt b/fastlane/metadata/android/vi/changelogs/740.txt index dacb5019a..4f23c5e87 100644 --- a/fastlane/metadata/android/vi/changelogs/740.txt +++ b/fastlane/metadata/android/vi/changelogs/740.txt @@ -1,23 +1,20 @@

Cải tiến

    -
  • click được liên kết trong phần bình luận, tăng cỡ chữ
  • -
  • nhảy đến khi click vào mốc thời gian ở bình luận
  • -
  • hiện tab ưa thích dựa trên trạng thái lựa chọn gần đây
  • -
  • thêm danh sách phát vào hàng chờ khi chạm lâu 'Phát nền' trong cửa sổ danh sách phát
  • -
  • tìm kiếm từ ngữ chung khi nó không phảiURL
  • -
  • thêm "chia sẻ thời gian hiện tại " nút trờ về video chính
  • -
  • thêm nút đóng vào trình phát chính khi hàng đợi video kết thúc
  • -
  • thêm "Chơi trực tiếp dưới nền" chạm lâu vào menu để xem danh sách video
  • -
  • cải thiện bản dịch tiếng Anh cho lệnh Chơi/Thêm vào danh sách
  • -
  • cải thiện hiệu năng một xíu
  • -
  • xóa bỏ những tệp không dùng đến
  • -
  • cập nhật ExoPlayer lên 2.9.6
  • -
  • hỗ trợ liên kết Invidious
  • +
  • Click được link và mốc thời gian trong bình luận
  • +
  • Hiện tab ưa thích theo lựa chọn gần đây
  • +
  • Chạm lâu “Phát nền” để thêm playlist vào hàng chờ
  • +
  • Tìm kiếm khi nhập không phải URL
  • +
  • Thêm nút “Chia sẻ thời điểm hiện tại”
  • +
  • Thêm nút đóng khi hàng phát kết thúc
  • +
  • Cải thiện hiệu năng
  • +
  • Cập nhật ExoPlayer 2.9.6
  • +
  • Hỗ trợ liên kết Invidious
+

Vá lỗi

    -
  • sửa w/ bình luận và vô hiệu hóa phát luồng liên quan
  • -
  • sửa lỗi CheckForNewAppVersionTask bị thực thi khi không mong muốn't
  • -
  • sửa lỗi nhập danh sách kênh youtube đăng ký: phớt lờ url không hợp lệ và giữ nó trống với tiêu đề
  • -
  • sửa lỗi url youtube không hợp lệ: tên thẻ chữ ký không phải lúc nào cũng là "chữ ký" ngăn luồng tải
  • +
  • Sửa lỗi bình luận
  • +
  • Sửa kiểm tra cập nhật chạy ngoài ý muốn
  • +
  • Sửa nhập danh sách kênh đăng ký
  • +
  • Sửa URL YouTube không hợp lệ
diff --git a/fastlane/metadata/android/vi/changelogs/750.txt b/fastlane/metadata/android/vi/changelogs/750.txt new file mode 100644 index 000000000..88cff7a89 --- /dev/null +++ b/fastlane/metadata/android/vi/changelogs/750.txt @@ -0,0 +1,16 @@ +Mới +• Tiếp tục phát video từ vị trí đã dừng (#2288) +• Cải tiến tải xuống: hỗ trợ SD-card (SAF), muxer MP4 mới, đổi thư mục tải trước khi tải, tôn trọng mạng dữ liệu (#2149) + +Cải thiện +• Dọn chuỗi không dùng +• Xử lý xoay màn hình tốt hơn +• Menu chạm lâu nhất quán hơn + +Đã sửa +• Hiển thị đúng tên phụ đề +• Không crash khi kiểm tra cập nhật thất bại +• Sửa lỗi tải kẹt 99.9% +• Cập nhật metadata hàng phát +• Sửa lỗi playlist SoundCloud +• Sửa lỗi đọc thời lượng YouTube TeamNewPipe/NewPipeExtractor#177 From 831425a74272dcdb1cee24dc124f94c0ebc580fc Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:14:12 +0100 Subject: [PATCH 021/127] Deleted translation using Weblate (Arabic (Najdi)) --- app/src/main/res/values-ars/strings.xml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 app/src/main/res/values-ars/strings.xml diff --git a/app/src/main/res/values-ars/strings.xml b/app/src/main/res/values-ars/strings.xml deleted file mode 100644 index a6b3daec9..000000000 --- a/app/src/main/res/values-ars/strings.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file From 08326c64cb3be4b315ee06d93543e7374b118e5e Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:14:50 +0100 Subject: [PATCH 022/127] Deleted translation using Weblate (English (Middle)) --- app/src/main/res/values-enm/strings.xml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 app/src/main/res/values-enm/strings.xml diff --git a/app/src/main/res/values-enm/strings.xml b/app/src/main/res/values-enm/strings.xml deleted file mode 100644 index a6b3daec9..000000000 --- a/app/src/main/res/values-enm/strings.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file From 2fec3a3c58fa73446ac93d0b0a5a470b698ca16e Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:15:07 +0100 Subject: [PATCH 023/127] Deleted translation using Weblate (English (Old)) --- app/src/main/res/values-ang/strings.xml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 app/src/main/res/values-ang/strings.xml diff --git a/app/src/main/res/values-ang/strings.xml b/app/src/main/res/values-ang/strings.xml deleted file mode 100644 index a6b3daec9..000000000 --- a/app/src/main/res/values-ang/strings.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file From 3f8d26d33e28c0b292714b618dbd06fd59e48843 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:15:23 +0100 Subject: [PATCH 024/127] Deleted translation using Weblate (German (Low)) --- app/src/main/res/values-nds/strings.xml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 app/src/main/res/values-nds/strings.xml diff --git a/app/src/main/res/values-nds/strings.xml b/app/src/main/res/values-nds/strings.xml deleted file mode 100644 index a6b3daec9..000000000 --- a/app/src/main/res/values-nds/strings.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file From fa6412a9aa703f957795ee34b6f755dc8c2f2aad Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:15:57 +0100 Subject: [PATCH 025/127] Deleted translation using Weblate (French (Louisiana)) --- app/src/main/res/values-frc/strings.xml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 app/src/main/res/values-frc/strings.xml diff --git a/app/src/main/res/values-frc/strings.xml b/app/src/main/res/values-frc/strings.xml deleted file mode 100644 index 5b919711c..000000000 --- a/app/src/main/res/values-frc/strings.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - aucun streamer trouvé . Installez VLC? - non - ouvrir dans le browser - ouvrir dans le popup mode - ouvrir avec - partagez - installer le fichier stream - chercher - parameters - installer - Installer - marquer comme vu - "publié le %1$s" - aucun joueur de stream n\'est trouvé ( vous pouvez installez VLC pour jouer) - Annuler - OK - Oui - \ No newline at end of file From 179a7135614bbaadabc71a293c33a36eba213ea4 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:16:35 +0100 Subject: [PATCH 026/127] Deleted translation using Weblate (Arabic (Tunisian)) --- app/src/main/res/values-aeb/strings.xml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 app/src/main/res/values-aeb/strings.xml diff --git a/app/src/main/res/values-aeb/strings.xml b/app/src/main/res/values-aeb/strings.xml deleted file mode 100644 index a6b3daec9..000000000 --- a/app/src/main/res/values-aeb/strings.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file From 80a47be2187922abf896529d28a1adcbd6c24512 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:17:11 +0100 Subject: [PATCH 027/127] Deleted translation using Weblate (Gaelic) --- app/src/main/res/values-gd/strings.xml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 app/src/main/res/values-gd/strings.xml diff --git a/app/src/main/res/values-gd/strings.xml b/app/src/main/res/values-gd/strings.xml deleted file mode 100644 index 55344e519..000000000 --- a/app/src/main/res/values-gd/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file From db61af15e82825ea8b759bb09b769787eff4e4bf Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:17:29 +0100 Subject: [PATCH 028/127] Deleted translation using Weblate (Corsican) --- app/src/main/res/values-co/strings.xml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 app/src/main/res/values-co/strings.xml diff --git a/app/src/main/res/values-co/strings.xml b/app/src/main/res/values-co/strings.xml deleted file mode 100644 index 55344e519..000000000 --- a/app/src/main/res/values-co/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file From b0f2d509e654a44f33bafa90c894fb1c7c0ecd47 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:17:48 +0100 Subject: [PATCH 029/127] Deleted translation using Weblate (Romany) --- app/src/main/res/values-rom/strings.xml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 app/src/main/res/values-rom/strings.xml diff --git a/app/src/main/res/values-rom/strings.xml b/app/src/main/res/values-rom/strings.xml deleted file mode 100644 index 55344e519..000000000 --- a/app/src/main/res/values-rom/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file From cf0d7016ecc4e16a1f9d78b10b2997e35270e7c6 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:18:05 +0100 Subject: [PATCH 030/127] Deleted translation using Weblate (Yiddish) --- app/src/main/res/values-ji/strings.xml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 app/src/main/res/values-ji/strings.xml diff --git a/app/src/main/res/values-ji/strings.xml b/app/src/main/res/values-ji/strings.xml deleted file mode 100644 index 55344e519..000000000 --- a/app/src/main/res/values-ji/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file From 3112eefb99c85708c7ee58b5fc3243548226b783 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:18:29 +0100 Subject: [PATCH 031/127] Deleted translation using Weblate (Luri (Bakhtiari)) --- app/src/main/res/values-bqi/strings.xml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 app/src/main/res/values-bqi/strings.xml diff --git a/app/src/main/res/values-bqi/strings.xml b/app/src/main/res/values-bqi/strings.xml deleted file mode 100644 index a6b3daec9..000000000 --- a/app/src/main/res/values-bqi/strings.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file From 2dda39205de6e61ac06e1853e5d27df66c0fc5a6 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:18:48 +0100 Subject: [PATCH 032/127] Deleted translation using Weblate (Aymara) --- app/src/main/res/values-ay/strings.xml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 app/src/main/res/values-ay/strings.xml diff --git a/app/src/main/res/values-ay/strings.xml b/app/src/main/res/values-ay/strings.xml deleted file mode 100644 index a6b3daec9..000000000 --- a/app/src/main/res/values-ay/strings.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file From 09c96159d1bdf2b6527096332273dcaeab106042 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:19:05 +0100 Subject: [PATCH 033/127] Deleted translation using Weblate (Sicilian) --- app/src/main/res/values-scn/strings.xml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 app/src/main/res/values-scn/strings.xml diff --git a/app/src/main/res/values-scn/strings.xml b/app/src/main/res/values-scn/strings.xml deleted file mode 100644 index a6b3daec9..000000000 --- a/app/src/main/res/values-scn/strings.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file From af08ddcf0433dbb03b0ba8462d34e6afb14e820e Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:19:25 +0100 Subject: [PATCH 034/127] Deleted translation using Weblate (Kashmiri) --- app/src/main/res/values-ks/strings.xml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 app/src/main/res/values-ks/strings.xml diff --git a/app/src/main/res/values-ks/strings.xml b/app/src/main/res/values-ks/strings.xml deleted file mode 100644 index a6b3daec9..000000000 --- a/app/src/main/res/values-ks/strings.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file From 949f0f3448ecbb8f511a7662c0a3289e42b2cc66 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:22:22 +0100 Subject: [PATCH 035/127] Deleted translation using Weblate (Azerbaijani (Southern)) --- fastlane/metadata/android/azb/short_description.txt | 1 - 1 file changed, 1 deletion(-) delete mode 100644 fastlane/metadata/android/azb/short_description.txt diff --git a/fastlane/metadata/android/azb/short_description.txt b/fastlane/metadata/android/azb/short_description.txt deleted file mode 100644 index 4f991f505..000000000 --- a/fastlane/metadata/android/azb/short_description.txt +++ /dev/null @@ -1 +0,0 @@ -اندرویددا یوتیوب اوچون بیر اؤزگور و یونگول قاپاخ. From f8c9ab8b11d7d127dddf8005d34da3a59feddbc9 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:22:23 +0100 Subject: [PATCH 036/127] Deleted translation using Weblate (Azerbaijani (Southern)) --- app/src/main/res/values-azb/strings.xml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 app/src/main/res/values-azb/strings.xml diff --git a/app/src/main/res/values-azb/strings.xml b/app/src/main/res/values-azb/strings.xml deleted file mode 100644 index 55344e519..000000000 --- a/app/src/main/res/values-azb/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file From 6d50fe79b8c460174eedbef3a3a4be92f5277706 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:23:30 +0100 Subject: [PATCH 037/127] =?UTF-8?q?Deleted=20translation=20using=20Weblate?= =?UTF-8?q?=20(Mainfr=C3=A4nkisch)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/res/values-vmf/strings.xml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 app/src/main/res/values-vmf/strings.xml diff --git a/app/src/main/res/values-vmf/strings.xml b/app/src/main/res/values-vmf/strings.xml deleted file mode 100644 index b1cb4e774..000000000 --- a/app/src/main/res/values-vmf/strings.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - im brüscher öffn - passd scho - passd scho - stoarnieren - iser - net - tealn - From 75ba70ab41e366d64c7d90f16520b0dc903beba2 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Fri, 27 Mar 2026 08:30:49 +0100 Subject: [PATCH 038/127] Deleted translation using Weblate (Aymara (Southern)) --- app/src/main/res/values-ayc/strings.xml | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 app/src/main/res/values-ayc/strings.xml diff --git a/app/src/main/res/values-ayc/strings.xml b/app/src/main/res/values-ayc/strings.xml deleted file mode 100644 index bfc24d06d..000000000 --- a/app/src/main/res/values-ayc/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - Uka luparu ch’allt’aña qalltañataki. - \ No newline at end of file From da76ddbf19bd3ff7fe7153f164406f8bd9d0b030 Mon Sep 17 00:00:00 2001 From: tobigr Date: Fri, 27 Mar 2026 08:35:49 +0100 Subject: [PATCH 039/127] Remove French (Lousiana) frc from app locales --- app/src/main/res/values/settings_keys.xml | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/main/res/values/settings_keys.xml b/app/src/main/res/values/settings_keys.xml index d01709d27..f49ed3dad 100644 --- a/app/src/main/res/values/settings_keys.xml +++ b/app/src/main/res/values/settings_keys.xml @@ -1215,7 +1215,6 @@ fi fil fr - frc gl gu he @@ -1316,7 +1315,6 @@ Suomen kieli Wikang Filipino Français - Français (Louisiana) Galego ગુજરાતી עברית From 07a2ab29de8ce94531fb7c43f15ad12016fb471e Mon Sep 17 00:00:00 2001 From: arjun Date: Sat, 28 Mar 2026 14:22:24 +0530 Subject: [PATCH 040/127] Fix NullPointerException in enqueue actions by using Application Context Use getApplicationContext() instead of getContext() in ENQUEUE, ENQUEUE_NEXT, START_HERE_ON_BACKGROUND, and START_HERE_ON_POPUP entries to prevent NullPointerException when the fragment's activity context becomes null during configuration changes (e.g. device rotation). The fragment context can become null when the activity is destroyed during rotation, but the async callback from fetchItemInfoIfSparse still holds a reference to the now-detached fragment. Using Application context ensures a stable, non-null context throughout the async operation lifecycle. --- .../dialog/StreamDialogDefaultEntry.java | 36 +++++++++++-------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/info_list/dialog/StreamDialogDefaultEntry.java b/app/src/main/java/org/schabi/newpipe/info_list/dialog/StreamDialogDefaultEntry.java index a2bf4a1ff..2df11900e 100644 --- a/app/src/main/java/org/schabi/newpipe/info_list/dialog/StreamDialogDefaultEntry.java +++ b/app/src/main/java/org/schabi/newpipe/info_list/dialog/StreamDialogDefaultEntry.java @@ -5,6 +5,7 @@ import static org.schabi.newpipe.util.SparseItemUtil.fetchStreamInfoAndSaveToDatabase; import static org.schabi.newpipe.util.SparseItemUtil.fetchUploaderUrlIfSparse; +import android.content.Context; import android.net.Uri; import androidx.annotation.NonNull; @@ -52,28 +53,33 @@ public enum StreamDialogDefaultEntry { /** * Enqueues the stream automatically to the current PlayerType. */ - ENQUEUE(R.string.enqueue_stream, (fragment, item) -> - fetchItemInfoIfSparse(fragment.requireContext(), item, singlePlayQueue -> - NavigationHelper.enqueueOnPlayer(fragment.getContext(), singlePlayQueue)) - ), + ENQUEUE(R.string.enqueue_stream, (fragment, item) -> { + final Context ctx = fragment.requireContext().getApplicationContext(); + fetchItemInfoIfSparse(ctx, item, singlePlayQueue -> + NavigationHelper.enqueueOnPlayer(ctx, singlePlayQueue)); + }), /** * Enqueues the stream automatically to the current PlayerType * after the currently playing stream. */ - ENQUEUE_NEXT(R.string.enqueue_next_stream, (fragment, item) -> - fetchItemInfoIfSparse(fragment.requireContext(), item, singlePlayQueue -> - NavigationHelper.enqueueNextOnPlayer(fragment.getContext(), singlePlayQueue)) - ), + ENQUEUE_NEXT(R.string.enqueue_next_stream, (fragment, item) -> { + final Context ctx = fragment.requireContext().getApplicationContext(); + fetchItemInfoIfSparse(ctx, item, singlePlayQueue -> + NavigationHelper.enqueueNextOnPlayer(ctx, singlePlayQueue)); + }), - START_HERE_ON_BACKGROUND(R.string.start_here_on_background, (fragment, item) -> - fetchItemInfoIfSparse(fragment.requireContext(), item, singlePlayQueue -> - NavigationHelper.playOnBackgroundPlayer( - fragment.getContext(), singlePlayQueue, true))), + START_HERE_ON_BACKGROUND(R.string.start_here_on_background, (fragment, item) -> { + final Context ctx = fragment.requireContext().getApplicationContext(); + fetchItemInfoIfSparse(ctx, item, singlePlayQueue -> + NavigationHelper.playOnBackgroundPlayer(ctx, singlePlayQueue, true)); + }), - START_HERE_ON_POPUP(R.string.start_here_on_popup, (fragment, item) -> - fetchItemInfoIfSparse(fragment.requireContext(), item, singlePlayQueue -> - NavigationHelper.playOnPopupPlayer(fragment.getContext(), singlePlayQueue, true))), + START_HERE_ON_POPUP(R.string.start_here_on_popup, (fragment, item) -> { + final Context ctx = fragment.requireContext().getApplicationContext(); + fetchItemInfoIfSparse(ctx, item, singlePlayQueue -> + NavigationHelper.playOnPopupPlayer(ctx, singlePlayQueue, true)); + }), SET_AS_PLAYLIST_THUMBNAIL(R.string.set_as_playlist_thumbnail, (fragment, item) -> { throw new UnsupportedOperationException("This needs to be implemented manually " From db8edd3b442df1232f6c4a635bf68aa343c66096 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Sun, 29 Mar 2026 20:59:37 +0200 Subject: [PATCH 041/127] Fix SecurityException when opening downloaded files in other app The flag was not passed to the intent that wraps the actual view intent for the app chooser. --- .../java/us/shandian/giga/ui/adapter/MissionAdapter.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/us/shandian/giga/ui/adapter/MissionAdapter.java b/app/src/main/java/us/shandian/giga/ui/adapter/MissionAdapter.java index 45ffcb331..0ea3b1ac3 100644 --- a/app/src/main/java/us/shandian/giga/ui/adapter/MissionAdapter.java +++ b/app/src/main/java/us/shandian/giga/ui/adapter/MissionAdapter.java @@ -1,5 +1,6 @@ package us.shandian.giga.ui.adapter; +import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK; import static android.content.Intent.FLAG_GRANT_PREFIX_URI_PERMISSION; import static android.content.Intent.FLAG_GRANT_READ_URI_PERMISSION; import static android.content.Intent.createChooser; @@ -356,7 +357,9 @@ private void viewWithFileProvider(Mission mission) { viewIntent.addFlags(FLAG_GRANT_PREFIX_URI_PERMISSION); Intent chooserIntent = createChooser(viewIntent, null); - chooserIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | FLAG_GRANT_READ_URI_PERMISSION); + chooserIntent.addFlags(FLAG_ACTIVITY_NEW_TASK); + chooserIntent.addFlags(FLAG_GRANT_READ_URI_PERMISSION); + chooserIntent.addFlags(FLAG_GRANT_PREFIX_URI_PERMISSION); ShareUtils.openIntentInApp(mContext, chooserIntent); } @@ -375,7 +378,7 @@ private void shareFile(Mission mission) { if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.O_MR1) { intent.putExtra(Intent.EXTRA_TITLE, mContext.getString(R.string.share_dialog_title)); } - intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); + intent.addFlags(FLAG_ACTIVITY_NEW_TASK); intent.addFlags(FLAG_GRANT_READ_URI_PERMISSION); mContext.startActivity(intent); From 3aa74f1e7743e3ec07dd379c5852d8f72674265b Mon Sep 17 00:00:00 2001 From: litetex <40789489+litetex@users.noreply.github.com> Date: Wed, 8 Apr 2026 16:14:52 +0200 Subject: [PATCH 042/127] Update extractor to latest commit To get the changes from https://github.com/TeamNewPipe/NewPipeExtractor/pull/1464 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index b9ddae4bd..0b53fa308 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -60,7 +60,7 @@ teamnewpipe-nanojson = "e9d656ddb49a412a5a0a5d5ef20ca7ef09549996" # the corresponding commit hash, since JitPack sometimes deletes artifacts. # If there’s already a git hash, just add more of it to the end (or remove a letter) # to cause jitpack to regenerate the artifact. -teamnewpipe-newpipe-extractor = "v0.26.0" +teamnewpipe-newpipe-extractor = "c46af335d6" viewpager2 = "1.1.0" webkit = "1.14.0" # Newer versions require minSdk >= 23 work = "2.10.5" # Newer versions require minSdk >= 23 From df6ec4462cf2d4d2984dc98e5cd6a2ea74bd58da Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Fri, 10 Apr 2026 11:25:19 +0200 Subject: [PATCH 043/127] Translated using Weblate (Polish) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 63.3% (57 of 90 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 64.4% (58 of 90 strings) Translated using Weblate (Swedish) Currently translated at 99.8% (772 of 773 strings) Translated using Weblate (Burmese) Currently translated at 1.1% (1 of 90 strings) Translated using Weblate (Latvian) Currently translated at 97.6% (755 of 773 strings) Translated using Weblate (Portuguese) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Portuguese (Portugal)) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Latvian) Currently translated at 97.6% (755 of 773 strings) Translated using Weblate (Latvian) Currently translated at 18.8% (17 of 90 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 64.4% (58 of 90 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Russian) Currently translated at 98.8% (764 of 773 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Latvian) Currently translated at 97.5% (754 of 773 strings) Deleted translation using Weblate (Aymara (Southern)) Deleted translation using Weblate (Mainfränkisch) Deleted translation using Weblate (Azerbaijani (Southern)) Deleted translation using Weblate (Azerbaijani (Southern)) Deleted translation using Weblate (Kashmiri) Deleted translation using Weblate (Sicilian) Deleted translation using Weblate (Aymara) Deleted translation using Weblate (Luri (Bakhtiari)) Deleted translation using Weblate (Yiddish) Deleted translation using Weblate (Romany) Deleted translation using Weblate (Corsican) Deleted translation using Weblate (Gaelic) Deleted translation using Weblate (Arabic (Tunisian)) Deleted translation using Weblate (French (Louisiana)) Deleted translation using Weblate (German (Low)) Deleted translation using Weblate (English (Old)) Deleted translation using Weblate (English (Middle)) Deleted translation using Weblate (Arabic (Najdi)) Co-authored-by: Arif Budiman Co-authored-by: Hosted Weblate Co-authored-by: Mona Lisa Co-authored-by: Morkovka21Vek Co-authored-by: Nicolás Pérez Co-authored-by: Omikorin Co-authored-by: Philip Goto Co-authored-by: TobiGr Co-authored-by: Tun Tun AUNG Co-authored-by: UDP Co-authored-by: ssantos Co-authored-by: ℂ𝕠𝕠𝕠𝕝 (𝕘𝕚𝕥𝕙𝕦𝕓.𝕔𝕠𝕞/ℂ𝕠𝕠𝕠𝕝) Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/lv/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/my/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pl/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/zh_Hant/ Translation: NewPipe/Metadata --- app/src/main/res/values-es/strings.xml | 20 ++++++ app/src/main/res/values-in/strings.xml | 18 +++++- app/src/main/res/values-lv/strings.xml | 62 ++++++++++++------- app/src/main/res/values-nl/strings.xml | 17 ++++- app/src/main/res/values-pt-rPT/strings.xml | 20 ++++++ app/src/main/res/values-pt/strings.xml | 20 ++++++ app/src/main/res/values-ru/strings.xml | 4 +- app/src/main/res/values-sv/strings.xml | 17 ++++- app/src/main/res/values-zh-rTW/strings.xml | 4 +- .../metadata/android/lv/changelogs/956.txt | 2 +- .../android/my-MM/short_description.txt | 1 + .../metadata/android/pl/changelogs/1001.txt | 6 ++ .../metadata/android/pl/changelogs/1002.txt | 4 ++ .../metadata/android/pl/changelogs/1003.txt | 6 ++ .../metadata/android/pl/changelogs/1004.txt | 3 + .../metadata/android/pl/changelogs/1007.txt | 11 ++++ .../metadata/android/pl/changelogs/1008.txt | 4 ++ .../android/zh-Hant/changelogs/64.txt | 2 +- .../android/zh-Hant/changelogs/65.txt | 6 +- .../android/zh-Hant/changelogs/900.txt | 4 +- .../android/zh-Hant/changelogs/954.txt | 6 +- .../android/zh-Hant/changelogs/961.txt | 2 +- .../android/zh-Hant/changelogs/964.txt | 2 +- .../android/zh-Hant/changelogs/984.txt | 2 +- 24 files changed, 200 insertions(+), 43 deletions(-) create mode 100644 fastlane/metadata/android/my-MM/short_description.txt create mode 100644 fastlane/metadata/android/pl/changelogs/1001.txt create mode 100644 fastlane/metadata/android/pl/changelogs/1002.txt create mode 100644 fastlane/metadata/android/pl/changelogs/1003.txt create mode 100644 fastlane/metadata/android/pl/changelogs/1004.txt create mode 100644 fastlane/metadata/android/pl/changelogs/1007.txt create mode 100644 fastlane/metadata/android/pl/changelogs/1008.txt diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 43d34e91c..273d86856 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -854,4 +854,24 @@ En Agosto de 2025, Google ha anunciado que, a partir de 2026/2027, todas las aplicaciones en dispositivos Android certificados requerirán que los desarrolladores envíen sus datos personales de identidad directamente a Google. Como los desarrolladores de NewPipe no están de acuerdo con este requisito, la aplicación dejará de funcionar en dispositivos Android certificados después de esa fecha. Detalles Solución + + Exportando %d suscripción… + Exportando %d suscripciones… + Exportando %d suscripciones… + + + Cargando %d suscripción… + Cargando %d suscripciones… + Cargando %d suscripciones… + + + Importando %d suscripción… + Importando %d suscripciones… + Importando %d suscripciones… + + Importar suscripciones + Exportar suscripciones + Importar suscripciones desde una exportación .json anterior + Exportar suscripciones a un archivo .json + Importar desde exportación anterior diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml index f8199f45c..f9b794ba3 100644 --- a/app/src/main/res/values-in/strings.xml +++ b/app/src/main/res/values-in/strings.xml @@ -478,7 +478,7 @@ Album Lagu Ambil dari langganan aslinya jika tersedia - Buang video yang sudah ditonton? + Hapus siaran yang sudah ditonton? Buang ditonton Video ini dibatasi usia. \n @@ -487,7 +487,7 @@ \n \nSemoga akan didukung pada versi berikutnya. Iya, dan video yang ditonton sebagian - Video yang sudah ditonton sebelum dan sesudah ditambahkan ke daftar putar akan dibuang. \nApakah Anda yakin? Ini tidak bisa diurungkan! + Siaran yang telah ditonton sebelum dan sesudah ditambahkan ke daftar putar akan dihapus. \nAnda yakin? Batal bisukan Bisukan Apakah Anda merasa pemuatan langganan sangat lambat\? Jika iya, coba nyalakan pemuatan cepat (Anda bisa mengubahnya di dalam pengaturan atau dengan menekan tombol di bawah) @@ -836,4 +836,18 @@ Pada Agustus 2025, Google mengumumkan bahwa mulai September 2026, pemasangan aplikasi akan memerlukan verifikasi pengembang untuk semua aplikasi Android pada perangkat bersertifikasi, termasuk yang dipasang di luar Play Store. Karena pengembang NewPipe tidak menyetujui persyaratan ini, NewPipe tidak akan lagi berfungsi pada perangkat Android bersertifikasi setelah waktu tersebut. Rincian Solusi + + Mengekspor %d langganan… + + + Memuat %d langganan… + + + Mengimpor %d langganan… + + Impor langganan + Ekspor langganan + Impor langganan dari ekspor .json sebelumnya + Ekspor langganan Anda ke berkas .json + Impor dari ekspor sebelumnya diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml index 608322878..f7fa2a3f0 100644 --- a/app/src/main/res/values-lv/strings.xml +++ b/app/src/main/res/values-lv/strings.xml @@ -51,11 +51,11 @@ Vai tiešām vēlaties izdzēst šo vaicājumu no meklēšanas vēstures? Vēsture Vēsture - Izlasīt licenci + Lasīt licenci Newpipe ir bezmaksas programmatūra: jūs varat izmantot, izpētīt, dalīties un uzlabot to jebkurā brīdī. Tieši jūs varat kopīgot un/ vai modificēt to saskaņā ar GNU Vispārējās Publiskās Licences noteikumiem, ko publicējusi Brīvās Programmatūras Fonds, vai nu 3. licences versija, vai (pēc jūsu izvēles) jebkura vēlāka versija. NewPipe Licence Izslasīt privātuma politiku - Datu aizsardzība ir ļoti svarīga NewPipe projektam. Tāpēc lietotne neapkopo datus bez jūsu piekrišanas.\nNewPipe konfidencialitātes politika sīki izskaidro, kādi dati tiek nosūtīti un uzglabāti, kad nosūtiet avārijas ziņojumu. + Datu aizsardzība ir ļoti svarīga NewPipe projektam. Tāpēc lietotne neapkopo datus bez jūsu piekrišanas.\nNewPipe konfidencialitātes politika sīki izskaidro, kādi dati tiek nosūtīti un uzglabāti, kad nosūtiet nobrukšanas ziņojumu. NewPipe Privātuna Politika Apmeklēt NewPipe mājaslapu, lai iegūtu vairāk informācijas un ziņu. Mājaslapa @@ -162,7 +162,7 @@ Informācija: Ziņot Piedodiet, kaut kas nogāja greizi. - Lūdzu, pārbaudiet, vai neviens cits jau nav iesniedzis jūsu kļūdu. Veidojot dublētas biļetes, jūs aizņemat laiku, ko mēs varētu izmantot, labojot citas kļūmes. + Lūdzu, pārliecinieties, ka neviens cits jau nav iesniedzis šo nobrukšanas kļūdu. Dublēti kļūdas ziņojumi atņem izstrādātāju dārgo laiku, ko viņi varētu veltīt reālas kļūdas labošanai. Ziņot izmantojot GitHub Kopēt formatētu ziņojumu Ziņojiet pa e-pastu @@ -184,7 +184,7 @@ Atgūstas no atskaņotāja kļūdas Notika kļūda atskaņotājā Nevarēja atskaņot šo video - Aplikācijas/UI avārija + Nobruka lietotne/lietotāja saskarne Nevarēja iestatīt lejupielādes izvēlni Saturs nav pieejams Nevarēja apstrādāt mājaslapu @@ -251,7 +251,7 @@ Rādīt saturu, iespējams nepiemērotu bērniem, jo tam ir vecuma ierobežojums Rādīt vecuma ierobežotu saturu Saturs - Atskaņo popup režīmā + Atskaņo uznirstošā logā Atskaņo fonā Atjauninājumi Atkļūdošana @@ -260,12 +260,12 @@ Video un audio Uzvedība Atskaņotājs - Instance jau eksistē - Tikai HTTPS saišu URL ir atbalstīti - Nevarēja apstiprināt instanci - Ievadīt instances saites URL - Pievienot instanci - Atrodiet instances, kas jums patīk ar %s + Šāds serveris (instance) jau eksistē + Atbalsta tikai HTTPS URL adreses + Nevarēja apstiprināt serveri (instanci) + Ievadiet servera (instances) URL + Pievienot serveri (instanci) + Atrodiet sev tīkamus serverus (instances) %s vietnē Atlasiet savas iecienītākās PeerTube instances PeerTube serveri (instances) Neviena lietotne jūsu ierīcē nevar šo atvērt @@ -515,7 +515,7 @@ Pielāgot paziņojumu krāsu Neko Ielādējas - Sajaukt + Samaisīt Atkārtot Jūs variet atlasīt ne vairāk kā 3 darbības, ko rādīt kompaktajā paziņojumā! Rediģējiet katru zemāk redzamo paziņojuma darbību, pieskaroties tai. Atķeksējiet izvēles rūtiņas labajā pusē, lai atlasītu līdz pat trīm darbībām, kuras rādīt kompaktajā paziņojumā. @@ -531,7 +531,7 @@ Uzstādīt trūkstošo Kore, tālvadības pults, lietotni? Atskaņot Kodi Ne visas ierīcas var atskaņot 2K/4K izšķirtspējas video - Rādīt augstākas izšķirtspējas + Ļaut atlasīt augstākas izšķirtspējas atskaņotājā Noklusējuma izšķirtspēja Atlasīt lejupielādes mapi, kur glabāt audio datnes Lejupielādētās audio datnes tiek glabātas šeit @@ -548,7 +548,7 @@ Abonementu nevarēja atjaunināt Abonementu nevarēja mainīt Atcelts kanāla abonements - Atcelt abonementu + Pārtraukt abonementu Abonēts Abonēt Izmantot ārējo audio atskaņotāju @@ -572,7 +572,7 @@ Šis saturs ir privāts, tāpēc Newpipe to nevar straumēt vai lejupielādēt. Šis ir SoundCloud Go+ audio, vismaz jūsu valstī, tāpēc to nevar straumēt vai lejupielādēt ar Newpipe. Šis saturs nav pieejams jūsu valstī. - Avarēt aplikāciju + Izraisīt lietotnes nobrukšanu Rādīt kanāla informāciju Atrisināt Šis video ir ierobežots ar vecumu. @@ -585,7 +585,7 @@ Atbalsts Valoda Vecuma ierobežojums - License + Licence Birkas Kategorija Jums tiks jautāts, kur saglabāt katru lejupielādi @@ -615,7 +615,7 @@ Izslēgt teksta atlasīšanu video aprakstā Iekšeji Autors piekrīt - Atvērt mājaslapu + Atvērt vietni Planšetes režīms Zemas kvalitātes (mazāks) Privātums @@ -636,10 +636,10 @@ Tagad variet atlasīt tekstu video aprakstā. Paziņojumi - Avarēt atskaņotāju + Izraisīt atskaņotāja nobrukšanu Pielāgojiet pašlaik atskaņotās plūsmas paziņojumu Atskaņotāja paziņojums - Jaunās tiešraides + Jauni video Radās kļūda, detalizētāku informāciju skatiet paziņojumā %s jaunas tiešraides @@ -656,7 +656,7 @@ Neizdevās kopēt starpliktuvē Noņemt pastāvīgo sīktēlu Pārbaudīt, vai nav jaunas tiešraides - Rāda avarēšanas iespēju, kad lietojat atskaņotāju + Rāda nobrukšanas izsaukšanas funkciju, kad izmantojiet atskaņotāju Dzēst dublikātus Rādīt sekojošās tiešraides Saraksti, kas atzīmēti pelēkā, jau satur šo objektu. @@ -685,7 +685,7 @@ Skaņu celiņš Ielādē straumes informāciju… Dublikāts pievienots %d reizi(-es) - Rādīt \"avarēt atskaņotāju\" + Rādīt \"Izraisīt atskaņotāja nobrukšanu\" Karte Nospiediet, lai lejupielādētu %s Vai tiešām vēlaties dzēst dublikātus? @@ -833,4 +833,24 @@ Risinājums SoundCloud likvidēja oriģinālos Top 50 topus. Atbilstošā cilne noņemta no jūsu galvenās lapas. Lai varētu izmantot uznirstošo atskaņotāju, lūdzu, atlasiet %1$s šajā Android iestatījumu izvēlnē un iespējojiet %2$s. + Ievietot abonementus + Izgūt abonementus + Ievietot no iepriekšējās izgūšanas + + Izgūst %d abonementus… + Izgūst %d abonementu… + Izgūst %d abonementus… + + + Ielādē %d abonementus… + Ielādē %d abonementu… + Ielādē %d abonementus… + + + Ievieto %d abonementus… + Ievieto %d abonementu… + Ievieto %d abonementus… + + Ievieto abonementus no iepriekšējās .json izgūšanas + Izgūst jūsu abonementus .json datnē diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index d8b00b38a..1c7118aa0 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -845,11 +845,26 @@ HTTP-fout 403 ontvangen van de server tijdens het afspelen, waarschijnlijk veroorzaakt door het verlopen van de streaming-url of een ip-blokkade HTTP-fout %1$s ontvangen van de server tijdens het afspelen HTTP-fout 403 ontvangen van de server tijdens het afspelen, waarschijnlijk veroorzaakt door een ip-blokkade of problemen met de deobfuscatie van de streaming-url - %1$s weigerde gegevens te verstrekken en vroeg om een login om te bevestigen dat de aanvrager geen bot is.\n\nUw ip-adres is mogelijk tijdelijk geblokkeerd door %1$s. U kunt even wachten of overschakelen naar een ander ip-adres (bijvoorbeeld door een vpn in of uit te schakelen, of door over te schakelen van wifi naar mobiele data). + %1$s weigerde gegevens te verstrekken en vroeg om inlog­gegevens om te bevestigen dat de aanvrager geen bot is.\n\nUw IP-adres is mogelijk tijdelijk geblokkeerd door %1$s. U kunt even wachten of over­schakelen naar een ander IP-adres (bij­voorbeeld door een VPN in/uit te schakelen of door over te schakelen van wifi naar mobiele data).\n\nZie dit FAQ-item voor meer informatie. Deze inhoud is niet beschikbaar voor het momenteel geselecteerde inhouds­land.\n\nWijzig uw selectie via ‘Instellingen > Inhoud > Standaard­land voor inhoud’. Details Oplossing Abonnementen importeren Abonnementen exporteren Importeren vanuit vorige export + + %d abonnement aan het exporteren… + %d abonnementen aan het exporteren… + + + %d abonnement aan het laden… + %d abonnementen aan het laden… + + + %d abonnement aan het importeren… + %d abonnementen aan het importeren… + + Importeer abonnementen vanuit een eerder geëxporteerd .json-bestand + Exporteer uw abonnementen naar een .json-bestand + In augustus 2025 kondigde Google aan dat vanaf september 2026 voor het installeren van apps op gecertificeerde Android-apparaten, inclusief apps die buiten de Play Store zijn geïnstalleerd, een ontwikkelaars­verificatie vereist is. Omdat de ontwikkelaars van NewPipe het niet eens zijn met deze vereiste, zal NewPipe na die datum niet meer werken op gecertificeerde Android-apparaten. diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index 07d3c345c..10e7f1a3c 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -864,4 +864,24 @@ Em agosto de 2025, o Google anunciou que, a partir de setembro de 2026, a instalação de apps exigirá a verificação do programador para todas as apps Android em dispositivos certificados, incluindo aqueles instalados fora da Play Store. Como os programadores do NewPipe não concordam com este requisito, o NewPipe já não funcionará em dispositivos Android certificados após essa data. Pormenores Solução + + A exportar %d subscrição… + A exportar %d subscrições… + A exportar %d subscrições… + + + A carregar %d subscrição… + A carregar %d subscrições… + A carregar %d subscrições… + + + A importar %d subscrição… + A importar %d subscrições… + A importar %d subscrições… + + Importar subscrições + Exportar subscrições + Importar subscrições do ficheiro .json anteriormente exportado + Exportar subscrições para um ficheiro .json + Importar da exportação anterior diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index a91069326..722e74947 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -864,4 +864,24 @@ Em agosto de 2025, o Google anunciou que, a partir de setembro de 2026, a instalação de apps exigirá a verificação do programador para todas as apps Android em dispositivos certificados, incluindo aqueles instalados fora da Play Store. Como os programadores do NewPipe não concordam com este requisito, o NewPipe já não funcionará em dispositivos Android certificados após essa data. Detalhes Solução + + A exportar %d subscrição… + A exportar %d subscrições… + A exportar %d subscrições… + + + A carregar %d subscrição… + A carregar %d subscrições… + A carregar %d subscrições… + + + A importar %d subscrição… + A importar %d subscrições… + A importar %d subscrições… + + Importar subscrições + Exportar subscrições + Importar subscrições do ficheiro .json anteriormente exportado + Exportar subscrições para um ficheiro .json + Importar da exportação anterior diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 5bacb22ef..c49c5fe48 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -839,8 +839,8 @@ Поделиться как временным плейлистом YouTube Плейлисты Страница группы каналов - Выберите группу кормов - Группа кормов еще не создана + Выберите группу каналов + Нет созданной группы каналов Поиск %1$s Поиск %1$s (%2$s) Лайки diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 28099ef5b..e27c7380d 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -845,9 +845,22 @@ HTTP-fel 403 mottogs från servern under uppspelning, troligen orsakat av att streaming-URL:en har löpt ut eller att en IP-adress har blockerats HTTP-fel %1$s mottogs från servern under spelning HTTP-fel 403 mottogs från servern under spelning, troligen orsakat av en IP-avstängning eller problem med deobfuskering av streaming-URL:er - %1$s vägrade att tillhandahålla data och bad om en inloggning för att bekräfta att den som begärde detta inte är en bot.\n\nDin IP-adress kan ha blivit tillfälligt avstängd av %1$s. Du kan vänta en stund eller byta till en annan IP-adress (till exempel genom att slå på/av ett VPN eller genom att byta från WiFi till mobildata). + %1$s vägrade att lämna ut data och bad om en inloggning för att bekräfta att den som begärde detta inte är en bot.\n\nDin IP-adress kan ha blivit tillfälligt avstängd av %1$s. Du kan vänta en stund eller byta till en annan IP-adress (till exempel genom att slå på/av ett VPN eller genom att byta från Wi-Fi till mobildata).\n\nSe denna FAQ-post för mer information. Detta innehåll är inte tillgängligt för det valda innehållslandet.\n\nÄndra ditt val från \"Inställningar > Innehåll > Standardinnehållsland\". - Google har meddelat att från och med 2026/2027 kommer alla appar på certifierade Android-enheter att kräva att utvecklarna lämnar sina personliga identitetsuppgifter direkt till Google. Eftersom utvecklarna av denna app inte accepterar detta krav kommer appen inte längre att fungera på certifierade Android-enheter efter den tiden. + I augusti 2025 meddelade Google att från och med september 2026 kommer installation av appar att kräva utvecklarverifiering för alla Android-appar på certifierade enheter, inklusive de som installerats utanför Play Store. Eftersom utvecklarna av NewPipe inte godkänner detta krav kommer NewPipe inte längre att fungera på certifierade Android-enheter efter den tiden. Detaljer Lösning + + Exporterar %d prenumeration… + Exporterar %d prenumerationer… + + + Importerar %d prenumeration… + Importerar %d prenumerationer… + + Importera prenumerationer + Exportera prenumerationer + Importera prenumerationer från en tidigare .json-export + Exportera dina prenumerationer till en .json-fil + Importera från tidigare export diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 9240a6cdd..420cfc574 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -104,7 +104,7 @@ 訂閱 已訂閱 已取消訂閱頻道 - 無法更改訂閱 + 無法變更訂閱 無法更新訂閱 訂閱清單 新鮮事 @@ -226,7 +226,7 @@ 刪除此播放清單? 已建立播放清單 已增至播放清單 - 播放清單縮圖已更改。 + 播放清單縮圖已變更。 沒有字幕 合適的 填滿 diff --git a/fastlane/metadata/android/lv/changelogs/956.txt b/fastlane/metadata/android/lv/changelogs/956.txt index eafb4c727..8a58cc0e9 100644 --- a/fastlane/metadata/android/lv/changelogs/956.txt +++ b/fastlane/metadata/android/lv/changelogs/956.txt @@ -1 +1 @@ -[YouTube] Novērsta lietotnes avarēšana pie jebkuras video ielādes +[YouTube] Novērsta lietotnes nobrukšana pie jebkuras video ielādes diff --git a/fastlane/metadata/android/my-MM/short_description.txt b/fastlane/metadata/android/my-MM/short_description.txt new file mode 100644 index 000000000..e416884f4 --- /dev/null +++ b/fastlane/metadata/android/my-MM/short_description.txt @@ -0,0 +1 @@ +အန်းဒရွိုက်အတွက် လွတ်လပ်ပြီး၊ ပေါ့ပါးသော YouTube အင်တာဖေ့စ်။ diff --git a/fastlane/metadata/android/pl/changelogs/1001.txt b/fastlane/metadata/android/pl/changelogs/1001.txt new file mode 100644 index 000000000..3572719e4 --- /dev/null +++ b/fastlane/metadata/android/pl/changelogs/1001.txt @@ -0,0 +1,6 @@ +Usprawniono +• Zawsze zezwalaj na zmianę preferencji powiadomień odtwarzacza w systemie Android 13 i nowszych + +Naprawiono +• Naprawiono błąd, w wyniku którego eksport bazy danych/subskrypcji nie skracał istniejącego pliku, co mogło prowadzić do uszkodzenia eksportu +• Naprawiono błąd, w wyniku którego odtwarzacz wznawiał odtwarzanie od początku po kliknięciu znacznika czasu diff --git a/fastlane/metadata/android/pl/changelogs/1002.txt b/fastlane/metadata/android/pl/changelogs/1002.txt new file mode 100644 index 000000000..9eae14ebc --- /dev/null +++ b/fastlane/metadata/android/pl/changelogs/1002.txt @@ -0,0 +1,4 @@ +Naprawiono błąd uniemożliwiający odtwarzanie strumieni na YouTube. + +W tej aktualizacji rozwiązano jedynie najpilniejszy błąd, który uniemożliwiał ładowanie szczegółów filmów na YouTube. +Jesteśmy świadomi istnienia innych problemów i wkrótce udostępnimy osobną aktualizację, aby je rozwiązać. diff --git a/fastlane/metadata/android/pl/changelogs/1003.txt b/fastlane/metadata/android/pl/changelogs/1003.txt new file mode 100644 index 000000000..bd9622621 --- /dev/null +++ b/fastlane/metadata/android/pl/changelogs/1003.txt @@ -0,0 +1,6 @@ +To jest aktualizacja poprawiająca błędy serwisu YouTube: +• [YouTube] Naprawiono brak wyświetlania informacji o filmach, błędy HTTP 403 podczas odtwarzania filmów oraz przywrócono odtwarzanie niektórych filmów z ograniczeniami wiekowymi +• Naprawiono problem z brakiem możliwości zmiany rozmiaru napisów +• Naprawiono podwójne pobieranie informacji podczas otwierania strumienia +• [Soundcloud] Usunięto strumienie chronione DRM, których nie można odtworzyć +• Zaktualizowano tłumaczenia diff --git a/fastlane/metadata/android/pl/changelogs/1004.txt b/fastlane/metadata/android/pl/changelogs/1004.txt new file mode 100644 index 000000000..75fd204f7 --- /dev/null +++ b/fastlane/metadata/android/pl/changelogs/1004.txt @@ -0,0 +1,3 @@ +W tej aktualizacji naprawiono błąd, przez który serwis YouTube udostępniał strumień wyłącznie w rozdzielczości 360p. + +Należy pamiętać, że rozwiązanie zastosowane w tej wersji ma prawdopodobnie charakter tymczasowy, a w dłuższej perspektywie konieczne będzie wdrożenie protokołu wideo SABR. Członkowie zespołu TeamNewPipe są jednak obecnie bardzo zajęci, dlatego będziemy wdzięczni za każdą pomoc! https://github.com/TeamNewPipe/NewPipe/issues/12248 diff --git a/fastlane/metadata/android/pl/changelogs/1007.txt b/fastlane/metadata/android/pl/changelogs/1007.txt new file mode 100644 index 000000000..474a93aac --- /dev/null +++ b/fastlane/metadata/android/pl/changelogs/1007.txt @@ -0,0 +1,11 @@ +Poprawka naprawia błąd "Treść niedostępna": filmy znów można odtwarzać! + +Naprawia kilka błędów z wersji 0.28.1: +• Przesuwanie elementów listy odtwarzania tylko do sąsiednich pozycji +• Migotanie tytułu/komentarzy między bieżącym a poprzednim filmem +• Nie działa opcja „Uruchom odtwarzacz główny na pełnym ekranie” + +Inne: +• [YT] Ponownie działa przewijanie transmisji na żywo do 4 godzin wstecz +• Nie ładuj transmisji na żywo podczas odtwarzania w tle +• Nowy interfejs dla opcji „Usuń z obejrzanych” diff --git a/fastlane/metadata/android/pl/changelogs/1008.txt b/fastlane/metadata/android/pl/changelogs/1008.txt new file mode 100644 index 000000000..f86508290 --- /dev/null +++ b/fastlane/metadata/android/pl/changelogs/1008.txt @@ -0,0 +1,4 @@ +∙ Naprawiono problem ze wznawianiem odtwarzania strumieniowego od ostatniej pozycji +∙ [YouTube] Dodano obsługę kolejnych formatów adresów URL kanałów +∙ [YouTube] Dodano obsługę kolejnych formatów metadanych filmów +∙ Zaktualizowano tłumaczenia diff --git a/fastlane/metadata/android/zh-Hant/changelogs/64.txt b/fastlane/metadata/android/zh-Hant/changelogs/64.txt index d0edf7458..7f3094cad 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/64.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/64.txt @@ -1,5 +1,5 @@ ### 改善 -- 新增使用流動數據時限制視訊品質的功能。 #1339 +- 新增使用行動數據時限制視訊品質的功能。 #1339 - 記住工作階段中的亮度 #1442 - 改善較低規格 CPU 的下載效能 #1431 - 新增媒體工作階段的 (作用) 支援 #1433 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/65.txt b/fastlane/metadata/android/zh-Hant/changelogs/65.txt index e398065cc..651541c4c 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/65.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/65.txt @@ -9,8 +9,8 @@ - ExoPlayer 2.8.2 更新 #1392 - 重新設計播放速度控制對話框,支援不同步驟大小以加快速度變化。 - 在播放速度控制中新增靜音時快轉的切換。這應該對有聲讀物和某些音樂類型很有幫助,並能帶來真正的無縫體驗 (而且可以打破有大量靜音的歌曲 =\)。 - - 重構媒體來源解析,允許在播放器內部傳輸媒體旁的 metadata,而非手動傳輸。現在我們有單一的 metadata 來源,並可在播放開始時直接使用。 - - 開啟播放清單片段時,當有新的 metadata 時,遠端播放清單 metadata 不會更新。 + - 重構媒體來源解析,允許在播放器內部傳輸媒體旁的詮釋資料,而非手動傳輸。現在我們有單一的詮釋資料來源,並可在播放開始時直接使用。 + - 開啟播放清單片段時,當有新的詮釋資料時,遠端播放清單詮釋資料不會更新。 - 各種使用者介面修正: #1383、背景播放器通知控制現在總是白色、透過甩動更容易關閉彈出播放器 - 針對多服務使用重構架構的新萃取器 @@ -18,7 +18,7 @@ - 修正 #1440 破碎的視訊資訊佈局 #1491 - 檢視歷史修正 #1497 - - #1495,通過在用戶訪問播放列表時更新元資料(縮圖、標題和視頻數量)。 + - #1495,通過在用戶訪問播放清單時更新詮釋資料(縮圖、標題和影片數量)。 - 1475, 當使用者在詳細片段的外部播放器上啟動影片時,在資料庫中註冊檢視。 - 修正彈出模式下的超時問題。#1463 (已修復 #640) - 主視訊播放器修正 #1509 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/900.txt b/fastlane/metadata/android/zh-Hant/changelogs/900.txt index ba1a7f5b5..e26f0cec9 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/900.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/900.txt @@ -5,10 +5,10 @@ 改善 • 允許在 NewPipe 中開啟 music.youtube.com 與 media.ccc.de 連結 • 把兩個設定從外觀移動到內容 -• 如果啟用不精確的搜索,則隱藏 5, 15, 25 的搜索選項 +• 如果啟用不精確的搜尋,則隱藏 5, 15, 25 的搜尋選項 修復 -• 某些 WebM 影片無法搜索 +• 某些 WebM 影片無法搜尋 • Android P 上的資料庫備份 • 分享已下載的檔案時當機 • 許多的 YouTube 擷取問題與更多…… diff --git a/fastlane/metadata/android/zh-Hant/changelogs/954.txt b/fastlane/metadata/android/zh-Hant/changelogs/954.txt index 1b293b048..3ea9c7d55 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/954.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/954.txt @@ -1,9 +1,9 @@ -• 新應用工作流(workflow):在視頻詳情頁播放視頻,下滑最小化播放器 +• 新應用工作流(workflow):在影片詳情頁播放影片,下滑最小化播放器 • MediaStyle通知: customizable actions in notifications, performance improvements • basic resizing when using NewPipe as desktop app • show dialog with open options in case of an unsupported URL toast -• 改善搜索體驗(若遠程資源無法取得) [Improve search suggestion experience when remote ones can't be fetched] -• 提升默認視頻分辨率:720p60 (內建播放器) 480p (畫中畫播放器) +• 改善搜尋體驗(若遠端資源無法取得) [Improve search suggestion experience when remote ones can't be fetched] +• 提升預設影片解析度:720p60 (內建播放器) 480p (畫中畫播放器) • 大量bug修復 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/961.txt b/fastlane/metadata/android/zh-Hant/changelogs/961.txt index 564ec8b30..bb163f035 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/961.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/961.txt @@ -7,6 +7,6 @@ • 修復從播放器內部分享影片的問題 • 修復空白的 ReCaptcha webview -• 修復了從列表中移除串流時所發生的當機問題 +• 修復了從清單中移除串流時所發生的當機問題 • [PeerTube] 修復相關串流 • [YouTube] 修復 YouTube Music 搜尋 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/964.txt b/fastlane/metadata/android/zh-Hant/changelogs/964.txt index 7ceb60250..0bf0e4c8a 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/964.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/964.txt @@ -2,7 +2,7 @@ • [PeerTube] 新增 Sepia 搜尋 • 在影片詳細資訊檢視中重新加入了分享按鈕,並將串流描述移動到分頁佈局中 • 如果停用亮度手勢,則停用亮度復原 -• 新增在 kodi 上播放影片的列表項目 +• 新增在 kodi 上播放影片的清單項目 • 修復了某些裝置上未設定預設瀏覽器會當機的臭蟲,並改善了分享對話框 • 在全螢幕播放器中使用硬體 space 按鈕切換播放/暫停 • [media.ccc.de] 許多修復與改善 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/984.txt b/fastlane/metadata/android/zh-Hant/changelogs/984.txt index 4de1b675f..c7e30074d 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/984.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/984.txt @@ -1,6 +1,6 @@ 在清單中載入足夠初始項目以填滿整個螢幕並藉以修正平板電腦和電視上的捲動 修正捲動清單時無常當機 -播放器快速搜索的覆蓋弧形置於系統介面之下 +播放器快速搜尋的覆蓋弧形置於系統介面之下 還原多重視窗播放時的瀏海變更,免致部分手機出現播放器錯置迴歸 compileSdk 由 30 增至 31 更新錯誤報告程式庫 From 0ce141f79db73ac378b0b7dba5a8173e761da7a3 Mon Sep 17 00:00:00 2001 From: tobigr Date: Fri, 10 Apr 2026 11:34:24 +0200 Subject: [PATCH 044/127] Add changelog for NewPipe 0.28.5 (1010) --- fastlane/metadata/android/en-US/changelogs/1010.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 fastlane/metadata/android/en-US/changelogs/1010.txt diff --git a/fastlane/metadata/android/en-US/changelogs/1010.txt b/fastlane/metadata/android/en-US/changelogs/1010.txt new file mode 100644 index 000000000..12e9a6932 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/1010.txt @@ -0,0 +1,9 @@ +Fixed NullPointerException in enqueue actions by using Application Context +[YouTube] Fixed parsing item duration + +Updated translations and removed untranslated locales +Small improvements to Image handling + +Port subscriptions related changes from refactor +Port path related changes from refactor +Update dependencies and Gradle to latest stable release From 148b6f79982a266903a869ec314df931066d45c7 Mon Sep 17 00:00:00 2001 From: tobigr Date: Fri, 10 Apr 2026 14:03:57 +0200 Subject: [PATCH 045/127] Update NewPipe Extractor to v0.26.1 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 0b53fa308..15ae57bd0 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -60,7 +60,7 @@ teamnewpipe-nanojson = "e9d656ddb49a412a5a0a5d5ef20ca7ef09549996" # the corresponding commit hash, since JitPack sometimes deletes artifacts. # If there’s already a git hash, just add more of it to the end (or remove a letter) # to cause jitpack to regenerate the artifact. -teamnewpipe-newpipe-extractor = "c46af335d6" +teamnewpipe-newpipe-extractor = "v0.26.1" viewpager2 = "1.1.0" webkit = "1.14.0" # Newer versions require minSdk >= 23 work = "2.10.5" # Newer versions require minSdk >= 23 From 24abbb8111c05389f626c9cc2cd5fdfd00f54cee Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Fri, 10 Apr 2026 16:05:58 +0200 Subject: [PATCH 046/127] Translated using Weblate (Chinese (Simplified Han script)) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 100.0% (91 of 91 strings) Translated using Weblate (Polish) Currently translated at 63.7% (58 of 91 strings) Co-authored-by: Agnieszka C Co-authored-by: Hosted Weblate Co-authored-by: 大王叫我来巡山 Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pl/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/zh_Hans/ Translation: NewPipe/Metadata --- fastlane/metadata/android/pl/changelogs/1010.txt | 9 +++++++++ fastlane/metadata/android/zh-Hans/changelogs/1009.txt | 2 +- fastlane/metadata/android/zh-Hans/changelogs/1010.txt | 9 +++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 fastlane/metadata/android/pl/changelogs/1010.txt create mode 100644 fastlane/metadata/android/zh-Hans/changelogs/1010.txt diff --git a/fastlane/metadata/android/pl/changelogs/1010.txt b/fastlane/metadata/android/pl/changelogs/1010.txt new file mode 100644 index 000000000..732da83c0 --- /dev/null +++ b/fastlane/metadata/android/pl/changelogs/1010.txt @@ -0,0 +1,9 @@ +Naprawiono NullPointerException podczas akcji dodawania do kolejki przy użyciu Application Context +[YouTube] Naprawiono odczytywanie czasu trwania elementu + +Zaktualizowano tłumaczenia i usunięto nieprzetłumaczone lokalizacje +Drobne ulepszenia w obsłudze obrazów + +Przeniesiono zmiany związane z subskrypcjami po refaktorze +Przeniesiono zmiany związane ze ścieżkami po refaktorze +Zaktualizowano zależności i Gradle do najnowszej stabilnej wersji diff --git a/fastlane/metadata/android/zh-Hans/changelogs/1009.txt b/fastlane/metadata/android/zh-Hans/changelogs/1009.txt index 1d3fc413a..af850b8a0 100644 --- a/fastlane/metadata/android/zh-Hans/changelogs/1009.txt +++ b/fastlane/metadata/android/zh-Hans/changelogs/1009.txt @@ -1,5 +1,5 @@ 新增 -Keep Android Open 运动的重要信息及采取行动的请求:https://www.keepandroidopen.org/ +Keep Android Open 运动的重要信息及采取行动的呼吁:https://www.keepandroidopen.org/ 改进 [Feed] 打乱过期订阅更新顺序 diff --git a/fastlane/metadata/android/zh-Hans/changelogs/1010.txt b/fastlane/metadata/android/zh-Hans/changelogs/1010.txt new file mode 100644 index 000000000..c8397eaa7 --- /dev/null +++ b/fastlane/metadata/android/zh-Hans/changelogs/1010.txt @@ -0,0 +1,9 @@ +使用 Application Context 修复加入队列操作中的 NullPointerExxeption +[YouTube] 修复解析条目时长的问题 + +更新译文并删除未翻译的语言环境 +小幅改进图像处理 + +从代码重构移植订阅相关的更改 +从代码重构移植路径相关的更改 +更新依赖和 Gradle 到最新稳定版 From 1ce1dbe73ce718780237570681bfd9db158d1b10 Mon Sep 17 00:00:00 2001 From: tobigr Date: Fri, 10 Apr 2026 14:04:19 +0200 Subject: [PATCH 047/127] Bump NewPipe version to 0.28.5 (1010) --- app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index ffd66715a..063eeb95c 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -45,9 +45,9 @@ configure { minSdk = 21 targetSdk = 35 - versionCode = System.getProperty("versionCodeOverride")?.toInt() ?: 1009 + versionCode = System.getProperty("versionCodeOverride")?.toInt() ?: 1010 - versionName = "0.28.4" + versionName = "0.28.5" System.getProperty("versionNameSuffix")?.let { versionNameSuffix = it } testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" From 4effcad4366787d0f7ce121192e436b4c5176cd4 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Thu, 16 Apr 2026 15:56:46 +0800 Subject: [PATCH 048/127] libs: Update checkstyle to latest release and fix violations Javadoc comment at column 46 has parse error. Details: no viable alternative at input ' --- .../fragments/list/kiosk/KioskFragment.java | 29 ++++--------------- .../player/playqueue/PlayQueueAdapter.java | 29 ++++--------------- .../player/playqueue/PlayQueueItemHolder.java | 29 ++++--------------- .../settings/SelectChannelFragment.java | 26 ++++------------- .../settings/SelectFeedGroupFragment.java | 26 ++++------------- .../newpipe/settings/SelectKioskFragment.java | 26 ++++------------- .../org/schabi/newpipe/util/ListHelper.java | 2 +- .../org/schabi/newpipe/util/ZipHelper.java | 25 ++++------------ gradle/libs.versions.toml | 2 +- 9 files changed, 37 insertions(+), 157 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/fragments/list/kiosk/KioskFragment.java b/app/src/main/java/org/schabi/newpipe/fragments/list/kiosk/KioskFragment.java index 6823e13d3..d3427f8db 100644 --- a/app/src/main/java/org/schabi/newpipe/fragments/list/kiosk/KioskFragment.java +++ b/app/src/main/java/org/schabi/newpipe/fragments/list/kiosk/KioskFragment.java @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2017-2024 NewPipe contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + package org.schabi.newpipe.fragments.list.kiosk; import android.os.Bundle; @@ -33,30 +38,6 @@ import io.reactivex.rxjava3.core.Single; -/** - * Created by Christian Schabesberger on 23.09.17. - *

- * Copyright (C) Christian Schabesberger 2017 - * KioskFragment.java is part of NewPipe. - *

- *

- * NewPipe is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - *

- *

- * NewPipe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - *

- *

- * You should have received a copy of the GNU General Public License - * along with NewPipe. If not, see . - *

- */ - public class KioskFragment extends BaseListInfoFragment { @State String kioskId = ""; diff --git a/app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueueAdapter.java b/app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueueAdapter.java index 2e19672e5..b647e801d 100644 --- a/app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueueAdapter.java +++ b/app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueueAdapter.java @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2016-2026 NewPipe contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + package org.schabi.newpipe.player.playqueue; import android.content.Context; @@ -22,30 +27,6 @@ import io.reactivex.rxjava3.core.Observer; import io.reactivex.rxjava3.disposables.Disposable; -/** - * Created by Christian Schabesberger on 01.08.16. - *

- * Copyright (C) Christian Schabesberger 2016 - * InfoListAdapter.java is part of NewPipe. - *

- *

- * NewPipe is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - *

- *

- * NewPipe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - *

- *

- * You should have received a copy of the GNU General Public License - * along with NewPipe. If not, see . - *

- */ - public class PlayQueueAdapter extends RecyclerView.Adapter { private static final String TAG = PlayQueueAdapter.class.toString(); diff --git a/app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueueItemHolder.java b/app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueueItemHolder.java index 1f2537baa..23fc4bf18 100644 --- a/app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueueItemHolder.java +++ b/app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueueItemHolder.java @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2016-2021 NewPipe contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + package org.schabi.newpipe.player.playqueue; import android.view.View; @@ -8,30 +13,6 @@ import org.schabi.newpipe.R; -/** - * Created by Christian Schabesberger on 01.08.16. - *

- * Copyright (C) Christian Schabesberger 2016 - * StreamInfoItemHolder.java is part of NewPipe. - *

- *

- * NewPipe is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - *

- *

- * NewPipe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - *

- *

- * You should have received a copy of the GNU General Public License - * along with NewPipe. If not, see . - *

- */ - public class PlayQueueItemHolder extends RecyclerView.ViewHolder { public final TextView itemVideoTitleView; public final TextView itemDurationView; diff --git a/app/src/main/java/org/schabi/newpipe/settings/SelectChannelFragment.java b/app/src/main/java/org/schabi/newpipe/settings/SelectChannelFragment.java index 25d6b3a0f..f1af8c66d 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/SelectChannelFragment.java +++ b/app/src/main/java/org/schabi/newpipe/settings/SelectChannelFragment.java @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2017-2025 NewPipe contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + package org.schabi.newpipe.settings; import android.content.DialogInterface; @@ -30,27 +35,6 @@ import io.reactivex.rxjava3.disposables.Disposable; import io.reactivex.rxjava3.schedulers.Schedulers; -/** - * Created by Christian Schabesberger on 26.09.17. - * SelectChannelFragment.java is part of NewPipe. - *

- * NewPipe is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - *

- *

- * NewPipe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - *

- *

- * You should have received a copy of the GNU General Public License - * along with NewPipe. If not, see . - *

- */ - public class SelectChannelFragment extends DialogFragment { private OnSelectedListener onSelectedListener = null; diff --git a/app/src/main/java/org/schabi/newpipe/settings/SelectFeedGroupFragment.java b/app/src/main/java/org/schabi/newpipe/settings/SelectFeedGroupFragment.java index c106f5998..79838bb3c 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/SelectFeedGroupFragment.java +++ b/app/src/main/java/org/schabi/newpipe/settings/SelectFeedGroupFragment.java @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2017-2025 NewPipe contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + package org.schabi.newpipe.settings; import android.content.DialogInterface; @@ -30,27 +35,6 @@ import io.reactivex.rxjava3.disposables.Disposable; import io.reactivex.rxjava3.schedulers.Schedulers; -/** - * Created by Christian Schabesberger on 26.09.17. - * SelectChannelFragment.java is part of NewPipe. - *

- * NewPipe is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - *

- *

- * NewPipe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - *

- *

- * You should have received a copy of the GNU General Public License - * along with NewPipe. If not, see . - *

- */ - public class SelectFeedGroupFragment extends DialogFragment { private OnSelectedListener onSelectedListener = null; diff --git a/app/src/main/java/org/schabi/newpipe/settings/SelectKioskFragment.java b/app/src/main/java/org/schabi/newpipe/settings/SelectKioskFragment.java index 383390506..d7e72821f 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/SelectKioskFragment.java +++ b/app/src/main/java/org/schabi/newpipe/settings/SelectKioskFragment.java @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2017-2022 NewPipe contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + package org.schabi.newpipe.settings; import android.os.Bundle; @@ -25,27 +30,6 @@ import java.util.List; import java.util.Vector; -/** - * Created by Christian Schabesberger on 09.10.17. - * SelectKioskFragment.java is part of NewPipe. - *

- * NewPipe is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - *

- *

- * NewPipe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - *

- *

- * You should have received a copy of the GNU General Public License - * along with NewPipe. If not, see . - *

- */ - public class SelectKioskFragment extends DialogFragment { private SelectKioskAdapter selectKioskAdapter = null; diff --git a/app/src/main/java/org/schabi/newpipe/util/ListHelper.java b/app/src/main/java/org/schabi/newpipe/util/ListHelper.java index 409fcb30c..634302b96 100644 --- a/app/src/main/java/org/schabi/newpipe/util/ListHelper.java +++ b/app/src/main/java/org/schabi/newpipe/util/ListHelper.java @@ -58,7 +58,7 @@ public final class ListHelper { /** * List of supported YouTube Itag ids. * The original order is kept. - * @see {@link org.schabi.newpipe.extractor.services.youtube.ItagItem#ITAG_LIST} + * @see org.schabi.newpipe.extractor.services.youtube.ItagItem */ private static final List SUPPORTED_ITAG_IDS = List.of( diff --git a/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java b/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java index bccfc7f38..fefd50e3c 100644 --- a/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java +++ b/app/src/main/java/org/schabi/newpipe/util/ZipHelper.java @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2018-2026 NewPipe contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + package org.schabi.newpipe.util; import org.schabi.newpipe.streams.io.SharpInputStream; @@ -16,26 +21,6 @@ import java.util.zip.ZipInputStream; import java.util.zip.ZipOutputStream; -/** - * Created by Christian Schabesberger on 28.01.18. - * Copyright 2018 Christian Schabesberger - * ZipHelper.java is part of NewPipe - *

- * License: GPL-3.0+ - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - *

- * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - *

- * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - public final class ZipHelper { @FunctionalInterface public interface InputStreamConsumer { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 15ae57bd0..ec723a4e5 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -12,7 +12,7 @@ autoservice-google = "1.1.1" autoservice-zacsweers = "1.2.0" bridge = "v2.0.2" cardview = "1.0.0" -checkstyle = "13.3.0" +checkstyle = "13.4.0" coil = "3.4.0" constraintlayout = "2.2.1" core = "1.17.0" # Newer versions require minSdk >= 23 From 2682f233a001f6f4d6a7a967b1658d0445907317 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Thu, 16 Apr 2026 16:13:59 +0800 Subject: [PATCH 049/127] libs: Update kotlinx.serialization to latest release Signed-off-by: Aayush Gupta --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index ec723a4e5..a3c2541cb 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -26,7 +26,7 @@ junit = "4.13.2" junit-ext = "1.3.0" kotlin = "2.3.20" kotlinx-coroutines-rx3 = "1.10.2" -kotlinx-serialization-json = "1.10.0" +kotlinx-serialization-json = "1.11.0" ksp = "2.3.6" ktlint = "1.8.0" leakcanary = "2.14" From 7a3d1d9b5febe08a28f65d09ec6ac6d259807732 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Thu, 16 Apr 2026 16:14:46 +0800 Subject: [PATCH 050/127] libs: Bump minSdk to API 23 androidx framework has bumped minSdk requirement to API 23. Most libs dependening upon the framework as a result require us to bump API level or keep using outdated versions. Signed-off-by: Aayush Gupta --- .github/workflows/ci.yml | 2 +- app/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb8fbc12a..0fa1ca84c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,7 +69,7 @@ jobs: strategy: matrix: include: - - api-level: 21 + - api-level: 23 target: default arch: x86 - api-level: 35 diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 063eeb95c..724b131a2 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -42,7 +42,7 @@ configure { defaultConfig { applicationId = "org.schabi.newpipe" resValue("string", "app_name", "NewPipe") - minSdk = 21 + minSdk = 23 targetSdk = 35 versionCode = System.getProperty("versionCodeOverride")?.toInt() ?: 1010 From aa094bc78233a41b088532a9fa9288d867e96530 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Thu, 16 Apr 2026 16:22:20 +0800 Subject: [PATCH 051/127] libs: Bump all libs stuck due to minSdk to latest release Signed-off-by: Aayush Gupta --- gradle/libs.versions.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index a3c2541cb..f1ef610cc 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -15,7 +15,7 @@ cardview = "1.0.0" checkstyle = "13.4.0" coil = "3.4.0" constraintlayout = "2.2.1" -core = "1.17.0" # Newer versions require minSdk >= 23 +core = "1.18.0" desugar = "2.1.5" documentfile = "1.1.0" exoplayer = "2.19.1" @@ -30,7 +30,7 @@ kotlinx-serialization-json = "1.11.0" ksp = "2.3.6" ktlint = "1.8.0" leakcanary = "2.14" -lifecycle = "2.9.4" # Newer versions require minSdk >= 23 +lifecycle = "2.10.0" localbroadcastmanager = "1.1.0" markwon = "4.6.2" material = "1.11.0" # TODO: update to newer version after bug is fixed. See https://github.com/TeamNewPipe/NewPipe/pull/13018 @@ -41,7 +41,7 @@ phoenix = "3.0.0" preference = "1.2.1" prettytime = "5.0.8.Final" recyclerview = "1.4.0" -room = "2.7.2" # Newer versions require minSdk >= 23 +room = "2.8.4" runner = "1.7.0" rxandroid = "3.0.2" rxbinding = "4.0.0" @@ -62,8 +62,8 @@ teamnewpipe-nanojson = "e9d656ddb49a412a5a0a5d5ef20ca7ef09549996" # to cause jitpack to regenerate the artifact. teamnewpipe-newpipe-extractor = "v0.26.1" viewpager2 = "1.1.0" -webkit = "1.14.0" # Newer versions require minSdk >= 23 -work = "2.10.5" # Newer versions require minSdk >= 23 +webkit = "1.15.0" +work = "2.11.2" [libraries] acra-core = { module = "ch.acra:acra-core", version.ref = "acra" } From c4a6bdd7d45f4d6941aef5dccd43e9b6d59b7d11 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Mon, 19 Jan 2026 14:39:33 +0800 Subject: [PATCH 052/127] Remove non-required API M version checks Signed-off-by: Aayush Gupta --- .../newpipe/player/ui/VideoPlayerUi.java | 24 +++++++------------ .../settings/VideoAudioSettingsFragment.java | 4 +--- .../schabi/newpipe/util/PermissionHelper.java | 5 +--- 3 files changed, 11 insertions(+), 22 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java b/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java index b68d3d94d..f020852cf 100644 --- a/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java +++ b/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java @@ -23,7 +23,6 @@ import android.graphics.PorterDuff; import android.graphics.PorterDuffColorFilter; import android.net.Uri; -import android.os.Build; import android.os.Handler; import android.os.Looper; import android.util.Log; @@ -1584,19 +1583,15 @@ public void setupVideoSurfaceIfNeeded() { // make sure there is nothing left over from previous calls clearVideoSurface(); - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { // >=API23 - surfaceHolderCallback = new SurfaceHolderCallback(context, player.getExoPlayer()); - binding.surfaceView.getHolder().addCallback(surfaceHolderCallback); + surfaceHolderCallback = new SurfaceHolderCallback(context, player.getExoPlayer()); + binding.surfaceView.getHolder().addCallback(surfaceHolderCallback); - // ensure player is using an unreleased surface, which the surfaceView might not be - // when starting playback on background or during player switching - if (binding.surfaceView.getHolder().getSurface().isValid()) { - // initially set the surface manually otherwise - // onRenderedFirstFrame() will not be called - player.getExoPlayer().setVideoSurfaceHolder(binding.surfaceView.getHolder()); - } - } else { - player.getExoPlayer().setVideoSurfaceView(binding.surfaceView); + // ensure player is using an unreleased surface, which the surfaceView might not be + // when starting playback on background or during player switching + if (binding.surfaceView.getHolder().getSurface().isValid()) { + // initially set the surface manually otherwise + // onRenderedFirstFrame() will not be called + player.getExoPlayer().setVideoSurfaceHolder(binding.surfaceView.getHolder()); } surfaceIsSetup = true; @@ -1604,8 +1599,7 @@ public void setupVideoSurfaceIfNeeded() { } private void clearVideoSurface() { - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M // >=API23 - && surfaceHolderCallback != null) { + if (surfaceHolderCallback != null) { binding.surfaceView.getHolder().removeCallback(surfaceHolderCallback); surfaceHolderCallback.release(); surfaceHolderCallback = null; diff --git a/app/src/main/java/org/schabi/newpipe/settings/VideoAudioSettingsFragment.java b/app/src/main/java/org/schabi/newpipe/settings/VideoAudioSettingsFragment.java index c5c4c480c..a4d52592f 100644 --- a/app/src/main/java/org/schabi/newpipe/settings/VideoAudioSettingsFragment.java +++ b/app/src/main/java/org/schabi/newpipe/settings/VideoAudioSettingsFragment.java @@ -2,7 +2,6 @@ import android.content.SharedPreferences; import android.content.res.Resources; -import android.os.Build; import android.os.Bundle; import android.provider.Settings; import android.text.format.DateUtils; @@ -33,8 +32,7 @@ public void onCreatePreferences(final Bundle savedInstanceState, final String ro // on M and above, if user chooses to minimise to popup player on exit // and the app doesn't have display over other apps permission, // show a snackbar to let the user give permission - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M - && getString(R.string.minimize_on_exit_key).equals(key)) { + if (getString(R.string.minimize_on_exit_key).equals(key)) { final String newSetting = sharedPreferences.getString(key, null); if (newSetting != null && newSetting.equals(getString(R.string.minimize_on_exit_popup_key)) diff --git a/app/src/main/java/org/schabi/newpipe/util/PermissionHelper.java b/app/src/main/java/org/schabi/newpipe/util/PermissionHelper.java index 2defbdc5b..77dc472f7 100644 --- a/app/src/main/java/org/schabi/newpipe/util/PermissionHelper.java +++ b/app/src/main/java/org/schabi/newpipe/util/PermissionHelper.java @@ -12,7 +12,6 @@ import android.text.Html; import android.widget.Toast; -import androidx.annotation.RequiresApi; import androidx.appcompat.app.AlertDialog; import androidx.core.app.ActivityCompat; import androidx.core.content.ContextCompat; @@ -116,7 +115,6 @@ public static boolean checkPostNotificationsPermission(final Activity activity, * @param context {@link Context} * @return {@link Settings#canDrawOverlays(Context)} **/ - @RequiresApi(api = Build.VERSION_CODES.M) public static boolean checkSystemAlertWindowPermission(final Context context) { if (!Settings.canDrawOverlays(context)) { if (Build.VERSION.SDK_INT < Build.VERSION_CODES.R) { @@ -174,8 +172,7 @@ public static boolean checkSystemAlertWindowPermission(final Context context) { * @return whether the popup is enabled */ public static boolean isPopupEnabledElseAsk(final Context context) { - if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M - || checkSystemAlertWindowPermission(context)) { + if (checkSystemAlertWindowPermission(context)) { return true; } else { Toast.makeText(context, R.string.msg_popup_permission, Toast.LENGTH_LONG).show(); From a719b898a17074944d66f2e6a99ae5b307f35948 Mon Sep 17 00:00:00 2001 From: Shafqat Bhuiyan Date: Thu, 2 Apr 2026 04:46:45 +1100 Subject: [PATCH 053/127] Fix playback not working after player enters idle state On some phones (e.g. Oppo and Oneplus) the video player enters the STATE_IDLE 10 minutes after being paused. This causes the play button to stop working. This happens because once a player has become idle, we need to call prepare() before playback can happen again. But after I added prepare(), it would just skip to the end of the video. So now I'm executing the same code that happens when ERROR_CODE_UNSPECIFIED is done. This causes playback to resume normally. --- app/src/main/java/org/schabi/newpipe/player/Player.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/src/main/java/org/schabi/newpipe/player/Player.java b/app/src/main/java/org/schabi/newpipe/player/Player.java index 159ecbd6e..e458b707e 100644 --- a/app/src/main/java/org/schabi/newpipe/player/Player.java +++ b/app/src/main/java/org/schabi/newpipe/player/Player.java @@ -1752,6 +1752,13 @@ public void play() { } } + if (isStopped()) { + // Some phones suspend a paused player after 10 minutes. This causes the player to + // enter STATE_IDLE, causing playback to fail. So we try to recover from that here. + setRecovery(); + reloadPlayQueueManager(); + } + simpleExoPlayer.play(); saveStreamProgressState(); } From bdebc926a81290db315afa109af87d47e2109b68 Mon Sep 17 00:00:00 2001 From: tobigr Date: Mon, 20 Apr 2026 15:35:08 +0200 Subject: [PATCH 054/127] Update extractor --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f1ef610cc..9ca4443d6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -60,7 +60,7 @@ teamnewpipe-nanojson = "e9d656ddb49a412a5a0a5d5ef20ca7ef09549996" # the corresponding commit hash, since JitPack sometimes deletes artifacts. # If there’s already a git hash, just add more of it to the end (or remove a letter) # to cause jitpack to regenerate the artifact. -teamnewpipe-newpipe-extractor = "v0.26.1" +teamnewpipe-newpipe-extractor = "1512cf3222b0c5d87a249e6ac231b98090c42623" viewpager2 = "1.1.0" webkit = "1.15.0" work = "2.11.2" From ec81b6bb624fd8b98040fe90022f23c6b799f5ac Mon Sep 17 00:00:00 2001 From: tobigr Date: Mon, 20 Apr 2026 15:38:39 +0200 Subject: [PATCH 055/127] Remove proguard rules for optional jsoup classes The underlying problem is fixed with jsoup 1.12.2. See https://github.com/TeamNewPipe/NewPipeExtractor/pull/1480. Revert 6c5d58bed3a4e7945580c644a875aa1addf3a89b / #13038. --- app/proguard-rules.pro | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index df4f78d8c..61c0d06d0 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -16,11 +16,6 @@ -dontwarn javax.script.** -keep class jdk.dynalink.** { *; } -dontwarn jdk.dynalink.** -# Rules for jsoup -# Ignore intended-to-be-optional re2j classes - only needed if using re2j for jsoup regex -# jsoup safely falls back to JDK regex if re2j not on classpath, but has concrete re2j refs -# See https://github.com/jhy/jsoup/issues/2459 - may be resolved in future, then this may be removed --dontwarn com.google.re2j.** ## Rules for ExoPlayer -keep class com.google.android.exoplayer2.** { *; } From 6740af2c71527e80ea81b7ff1bc6a5ea02bc7b38 Mon Sep 17 00:00:00 2001 From: Y2kz Date: Sat, 25 Apr 2026 14:51:38 +0530 Subject: [PATCH 056/127] Fix video playback when exiting popup to main screen (#13437) Fix for the issue ( #6400 ) wrong video plays when exiting popup mode to fullscreen. --- .../fragments/detail/VideoDetailFragment.java | 31 ++++++++++++++----- .../schabi/newpipe/util/NavigationHelper.java | 6 +++- 2 files changed, 28 insertions(+), 9 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/fragments/detail/VideoDetailFragment.java b/app/src/main/java/org/schabi/newpipe/fragments/detail/VideoDetailFragment.java index da76a4b15..ee93e3138 100644 --- a/app/src/main/java/org/schabi/newpipe/fragments/detail/VideoDetailFragment.java +++ b/app/src/main/java/org/schabi/newpipe/fragments/detail/VideoDetailFragment.java @@ -205,6 +205,7 @@ public final class VideoDetailFragment int lastStableBottomSheetState = BottomSheetBehavior.STATE_EXPANDED; @State protected boolean autoPlayEnabled = true; + private boolean forceFullscreen = false; @Nullable private StreamInfo currentInfo = null; @@ -877,7 +878,7 @@ private void runWorker(final boolean forceLoad, final boolean addToBackStack) { } } - if (isAutoplayEnabled()) { + if (isAutoplayEnabled() || forceFullscreen) { openVideoPlayerAutoFullscreen(); } } @@ -1134,15 +1135,29 @@ public void openVideoPlayer(final boolean directlyFullscreenIfApplicable) { } /** - * If the option to start directly fullscreen is enabled, calls - * {@link #openVideoPlayer(boolean)} with {@code directlyFullscreenIfApplicable = true}, so that - * if the user is not already in landscape and he has screen orientation locked the activity - * rotates and fullscreen starts. Otherwise, if the option to start directly fullscreen is - * disabled, calls {@link #openVideoPlayer(boolean)} with {@code directlyFullscreenIfApplicable - * = false}, hence preventing it from going directly fullscreen. + * If the option to start directly fullscreen is enabled, or if {@code forceFullscreen} is + * {@code true} (e.g. when switching from popup player to main player with a different video), + * calls {@link #openVideoPlayer(boolean)} with {@code directlyFullscreenIfApplicable = true}, + * so that if the user is not already in landscape and he has screen orientation locked the + * activity rotates and fullscreen starts. Otherwise, if the option to start directly fullscreen + * is disabled and {@code forceFullscreen} is {@code false}, calls + * {@link #openVideoPlayer(boolean)} with {@code directlyFullscreenIfApplicable = false}, + * hence preventing it from going directly fullscreen. + * {@code forceFullscreen} is reset to {@code false} after this call. */ public void openVideoPlayerAutoFullscreen() { - openVideoPlayer(PlayerHelper.isStartMainPlayerFullscreenEnabled(requireContext())); + openVideoPlayer(forceFullscreen + || PlayerHelper.isStartMainPlayerFullscreenEnabled(requireContext())); + forceFullscreen = false; + } + + public void setForceFullscreen(final boolean force) { + this.forceFullscreen = force; + } + + @Nullable + public String getUrl() { + return url; } private void openNormalBackgroundPlayer(final boolean append) { diff --git a/app/src/main/java/org/schabi/newpipe/util/NavigationHelper.java b/app/src/main/java/org/schabi/newpipe/util/NavigationHelper.java index bfdf6a02c..9632b9bee 100644 --- a/app/src/main/java/org/schabi/newpipe/util/NavigationHelper.java +++ b/app/src/main/java/org/schabi/newpipe/util/NavigationHelper.java @@ -1,6 +1,7 @@ package org.schabi.newpipe.util; import static android.text.TextUtils.isEmpty; +import android.text.TextUtils; import static org.schabi.newpipe.util.ListHelper.getUrlAndNonTorrentStreams; import android.annotation.SuppressLint; @@ -430,13 +431,16 @@ public static void openVideoDetailFragment(@NonNull final Context context, final RunnableWithVideoDetailFragment onVideoDetailFragmentReady = detailFragment -> { expandMainPlayer(detailFragment.requireActivity()); detailFragment.setAutoPlay(autoPlay); - if (switchingPlayers) { + if (switchingPlayers && TextUtils.equals(detailFragment.getUrl(), url)) { // Situation when user switches from players to main player. All needed data is // here, we can start watching (assuming newQueue equals playQueue). // Starting directly in fullscreen if the previous player type was popup. detailFragment.openVideoPlayer(playerType == PlayerType.POPUP || PlayerHelper.isStartMainPlayerFullscreenEnabled(context)); } else { + if (switchingPlayers && playerType == PlayerType.POPUP) { + detailFragment.setForceFullscreen(true); + } detailFragment.selectAndLoadVideo(serviceId, url, title, playQueue); } detailFragment.scrollToTop(); From 8805c9e8c9c9f0d61853c33b8dce0e82a14aacbb Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Sat, 25 Apr 2026 11:21:55 +0200 Subject: [PATCH 057/127] Translated using Weblate (Swedish) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Swedish) Currently translated at 95.6% (87 of 91 strings) Translated using Weblate (Hindi) Currently translated at 100.0% (91 of 91 strings) Translated using Weblate (Hindi) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Punjabi) Currently translated at 100.0% (91 of 91 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 63.7% (58 of 91 strings) Translated using Weblate (Polish) Currently translated at 63.7% (58 of 91 strings) Translated using Weblate (Swedish) Currently translated at 95.6% (87 of 91 strings) Translated using Weblate (Swedish) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 63.7% (58 of 91 strings) Translated using Weblate (Bengali (India)) Currently translated at 2.1% (2 of 91 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 63.7% (58 of 91 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Uzbek (Latin script)) Currently translated at 27.4% (25 of 91 strings) Translated using Weblate (Turkish) Currently translated at 35.1% (32 of 91 strings) Translated using Weblate (Russian) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (German) Currently translated at 100.0% (91 of 91 strings) Translated using Weblate (Persian) Currently translated at 95.6% (739 of 773 strings) Translated using Weblate (Czech) Currently translated at 100.0% (91 of 91 strings) Translated using Weblate (German) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Belarusian) Currently translated at 98.0% (758 of 773 strings) Translated using Weblate (French) Currently translated at 100.0% (91 of 91 strings) Co-authored-by: 439JBYL80IGQTF25UXNR0X1BG <439jbyl80igqtf25uxnr0x1bg@users.noreply.hosted.weblate.org> Co-authored-by: Danial Behzadi Co-authored-by: Doniyor Nasriddinov Co-authored-by: Edward Co-authored-by: Erenay Co-authored-by: Fjuro Co-authored-by: Gabriel Wirtuwiusz Co-authored-by: Hosted Weblate Co-authored-by: IEEE-754 <253034919+IEEE-754@users.noreply.github.com> Co-authored-by: Mickaël Binos Co-authored-by: Mona Lisa Co-authored-by: Pavel Miniutka Co-authored-by: Peter Dave Hello Co-authored-by: UDP Co-authored-by: VfBFan Co-authored-by: whistlingwoods <72640314+whistlingwoods@users.noreply.github.com> Co-authored-by: পার্থ ধর Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/bn_IN/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/cs/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/de/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/fr/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/hi/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pa/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pl/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/sv/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/tr/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/uz_Latn/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/zh_Hant/ Translation: NewPipe/Metadata --- app/src/main/res/values-be/strings.xml | 5 ++ app/src/main/res/values-de/strings.xml | 8 +-- app/src/main/res/values-fa/strings.xml | 13 +++- app/src/main/res/values-hi/strings.xml | 17 +++++ app/src/main/res/values-ro/strings.xml | 72 ++++++++++++++----- app/src/main/res/values-ru/strings.xml | 25 ++++++- app/src/main/res/values-sv/strings.xml | 10 ++- .../android/bn-IN/full_description.txt | 1 + .../android/bn-IN/short_description.txt | 1 + .../metadata/android/cs/changelogs/1010.txt | 9 +++ .../metadata/android/de/changelogs/1010.txt | 9 +++ .../metadata/android/de/changelogs/850.txt | 2 +- .../metadata/android/fr/changelogs/1009.txt | 1 - .../metadata/android/fr/changelogs/1010.txt | 6 ++ .../metadata/android/hi/changelogs/1010.txt | 9 +++ .../metadata/android/pa/changelogs/1010.txt | 9 +++ .../metadata/android/pl/changelogs/65.txt | 4 +- .../metadata/android/sv/changelogs/1009.txt | 14 ++++ .../metadata/android/sv/full_description.txt | 2 +- .../metadata/android/sv/short_description.txt | 2 +- .../metadata/android/tr/changelogs/1010.txt | 9 +++ .../android/uz-Latn/changelogs/1000.txt | 23 ++++++ .../android/uz-Latn/changelogs/1001.txt | 11 +++ .../android/uz-Latn/changelogs/1002.txt | 7 ++ .../android/zh-Hant/changelogs/750.txt | 2 +- .../android/zh-Hant/changelogs/955.txt | 2 +- .../android/zh-Hant/changelogs/960.txt | 2 +- .../android/zh-Hant/changelogs/978.txt | 1 + .../android/zh-Hant/full_description.txt | 2 +- .../android/zh-Hant/short_description.txt | 2 +- 30 files changed, 240 insertions(+), 40 deletions(-) create mode 100644 fastlane/metadata/android/bn-IN/full_description.txt create mode 100644 fastlane/metadata/android/bn-IN/short_description.txt create mode 100644 fastlane/metadata/android/cs/changelogs/1010.txt create mode 100644 fastlane/metadata/android/de/changelogs/1010.txt create mode 100644 fastlane/metadata/android/fr/changelogs/1010.txt create mode 100644 fastlane/metadata/android/hi/changelogs/1010.txt create mode 100644 fastlane/metadata/android/pa/changelogs/1010.txt create mode 100644 fastlane/metadata/android/sv/changelogs/1009.txt create mode 100644 fastlane/metadata/android/tr/changelogs/1010.txt create mode 100644 fastlane/metadata/android/uz-Latn/changelogs/1000.txt create mode 100644 fastlane/metadata/android/uz-Latn/changelogs/1001.txt create mode 100644 fastlane/metadata/android/uz-Latn/changelogs/1002.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/978.txt diff --git a/app/src/main/res/values-be/strings.xml b/app/src/main/res/values-be/strings.xml index 16c940e6c..a5edb6ce8 100644 --- a/app/src/main/res/values-be/strings.xml +++ b/app/src/main/res/values-be/strings.xml @@ -830,4 +830,9 @@ Гэты кантэнт недаступны для цяперашняй краіны кантэнту.\n\nЯе можна змяніць праз «Налады > Кантэнт > Прадвызначаная краіна кантэнту». 21 ліпеня 2025 года YouTube спыніў падтрымку аб\'яднанай старонкі трэндаў. NewPipe замяніў старонку трэндаў на трэнды трансляцый.\n\nТаксама можна выбраць іншыя старонкі трэндаў праз «Налады > Кантэнт > Змесціва галоўнай старонкі». Аб\'яднаныя трэнды YouTube выдалены + Імпартаваць падпіскі + Экспартаваць падпіскі + У жніўні 2025 года Google абвясціў, што з верасня 2026 года для ўсталявання праграм для Android на сертыфікаваныя прылады будзе патрабавацца праверка распрацоўшчыка. Гэта тычыцца і тых праграм, што ўсталёўваюцца па-за Play Store. Паколькі распрацоўшчыкі NewPipe не згодныя з гэтым патрабаваннем, пасля гэтага часу NewPipe больш не будзе працаваць на сертыфікаваных прыладах Android. + Падрабязнасці + Рашэнне diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 778321ecc..2a2df280c 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -43,7 +43,7 @@ Aussehen Fehler Konnte nicht alle Vorschaubilder laden - Konnte Webseite nicht analysieren + Konnte Website nicht analysieren Inhalt nicht verfügbar Inhalt Altersbeschränkte Inhalte anzeigen @@ -185,7 +185,7 @@ Spenden Zurückgeben Website - Besuche die NewPipe Website für weitere Informationen und Neuigkeiten. + Besuche die NewPipe-Website für weitere Informationen und Neuigkeiten. NewPipe wird von Freiwilligen entwickelt, die ihre Freizeit dafür verwenden, dir die beste Nutzererfahrung zu bieten. Gib etwas zurück, indem du den Entwicklern hilfst, NewPipe noch weiter zu verbessern, während sie sich an einer Tasse Kaffee erfreuen. Kein Stream-Player gefunden (du kannst VLC installieren, um den Stream abzuspielen). Bevorzugtes Land des Inhalts @@ -621,7 +621,7 @@ Konto geschlossen Der Schnellmodus liefert hierzu keine weiteren Informationen. Noch kein Downloadordner festgelegt, wähle jetzt den Standard-Downloadordner - Webseite öffnen + Website öffnen Ab Android 10 wird nur noch „Storage Access Framework“ unterstützt Du wirst jedes Mal gefragt werden, wohin der Download gespeichert werden soll Fehler beim Laden des Feeds @@ -697,7 +697,7 @@ Streams, die der Downloader noch nicht unterstützt, werden nicht angezeigt Der ausgewählte Stream wird von externen Playern nicht unterstützt Größe des Ladeintervalls für die Wiedergabe - Auf der Webseite ansehen + Auf der Website ansehen Häufig gestellte Fragen Wenn du Probleme bei der Verwendung der App hast, lies bitte die Antworten auf häufig gestellte Fragen! Sortieren diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml index 70ea72938..1cdf9e71d 100644 --- a/app/src/main/res/values-fa/strings.xml +++ b/app/src/main/res/values-fa/strings.xml @@ -189,9 +189,9 @@ آخرین پخش‌شده بیشترین پخش‌شده محتوای صفحه اصلی - صفحه خالی - صفحه کیوسک - صفحه کانال + صفحهٔ خالی + صفحهٔ کیوسک + صفحهٔ کانال کانالی را انتخاب کنید هنز کانال مشترک‌شده‌ای وجود ندارد یک کیوسک را انتخاب کنید @@ -813,4 +813,11 @@ گشودن صف پخش می‌خواهید همهٔ جریان‌های تکراری را در این سیاههٔ پخش بردارید؟ زبانه‌هایی که هنگام به‌روز رسانی خوراک واکشی می‌شوند. این گزینه تأثیری روی کانال‌هایی که با ساتفاده از حالت سریع به‌روز می‌شوند ندارد. + %sه + %sم + %sمیلیارد + پسندها + جزییات + راهکار + جست‌وجوی %1$s diff --git a/app/src/main/res/values-hi/strings.xml b/app/src/main/res/values-hi/strings.xml index d85058656..bf7040d82 100644 --- a/app/src/main/res/values-hi/strings.xml +++ b/app/src/main/res/values-hi/strings.xml @@ -850,4 +850,21 @@ अगस्त 2025 में, Google ने घोषणा की कि सितंबर 2026 से, सर्टिफाइड डिवाइस पर सभी Android ऐप्स जिनमें Play Store के बाहर से इंस्टॉल किए गए ऐप्स भी शामिल हैं, को इंस्टॉल करने के लिए डेवलपर वेरिफिकेशन ज़रूरी होगा। चूंकि NewPipe के डेवलपर्स इस शर्त से सहमत नहीं हैं, इसलिए उस समय के बाद NewPipe सर्टिफाइड Android डिवाइस पर काम नहीं करेगा। विवरण समाधान + + %d सब्सक्रिप्शन एक्सपोर्ट किया जा रहा है… + %d सब्सक्रिप्शन एक्सपोर्ट किए जा रहे हैं… + + + %d सब्सक्रिप्शन लोड हो रहा है… + %d सब्सक्रिप्शन लोड हो रहे हैं… + + + %d सब्सक्रिप्शन इंपोर्ट किया जा रहा है… + %d सब्सक्रिप्शन इंपोर्ट किए जा रहे हैं… + + सब्सक्रिप्शन इंपोर्ट करें + सब्सक्रिप्शन एक्सपोर्ट करें + पिछले .json एक्सपोर्ट से सब्सक्रिप्शन इंपोर्ट करें + अपनी सब्सक्रिप्शन को एक .json फ़ाइल में एक्सपोर्ट करें। + पिछले एक्सपोर्ट से इंपोर्ट करें diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index c5c450894..3babb1454 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -163,7 +163,7 @@ Conținutul pagini principale Pagină goală Pagina de chioșc - Pagină canale + Pagină canal Alegeți un canal Nu v-ați abonat la niciun canal deocamdată Alegeți un chioșc @@ -349,7 +349,7 @@ \n \nActivați \"%1$s\" în setări dacă doriți să îl vedeți. YouTube oferă un \"Mod restricționat\" care ascunde conținutul potențial matur - Activați \"Modul restricționat\" de pe YouTube + Activați „Modul restricționat” de pe YouTube Afișați conținut posibil nepotrivit pentru copii, deoarece are o limită de vârstă (cum ar fi 18+) Adresa URL nu a putut fi recunoscută. Deschideți cu o altă aplicație\? Afișează informațiile meta @@ -433,8 +433,8 @@ Datorită constrângerilor ExoPlayer, durata de căutare a fost setată la %d secunde Da, și videoclipuri vizionate parțial - Videoclipurile care au fost vizionate înainte și după ce au fost adăugate la lista de redare vor fi eliminate. \nSunteți sigur? Acest lucru nu poate fi anulat! - Eliminați videoclipurile vizionate? + Fluxurile care au fost vizionate înainte și după ce au fost adăugate la lista de redare vor fi eliminate. \nSunteți sigur? + Eliminați fluxurile vizionate? Eliminare cele urmărite Prestabilită de sistem Limba aplicației @@ -809,40 +809,76 @@ În direct Shorturi Avatarele autorului - Editează fiecare acțiune de notificare de mai jos atingând-o. Primele trei acțiuni (redare/pauză, anterioară și următoare) sunt setate de sistem și nu pot fi personalizate. + Editați fiecare acțiune de notificare de mai jos atingând-o. Primele trei acțiuni (redare/pauză, anterioară și următoare) sunt setate de sistem și nu pot fi personalizate. %s răspuns %s răspunsuri - %s răspunsuri + %s de răspunsuri Arată mai multe Arată mai puține Piste Nu este suficient spațiu liber pe dispozitiv Backup și restabilire - NewPipe poate verifica automat pentru versiuni noi din când în când și vă poate notifica când acestea sunt disponibile. -\nDoriți să activați acest lucru? - Resetează toate setările la valorile inițiale + NewPipe poate verifica automat din când în când dacă există versiuni noi și vă poate anunța când acestea sunt disponibile.\nDoriți să activați această opțiune? + Resetați toate setările la valorile implicite Da Nu - Resetează setări - Resetarea tuturor setărilor va elimina toate setările tale preferate și va reporni aplicația. -\n -\nSigur doriți să continuați? + Resetați setările + Resetarea tuturor setărilor va elimina toate setările preferate și va reporni aplicația. \n \nSigur doriți să continuați? Setările din exportul importat folosesc un format vulnerabil care a fost depreciat de la NewPipe 0.27.0. Asigurați-vă că exportul care este importat este dintr-o sursă de încredere și preferați să utilizați numai exporturi obținute din NewPipe 0.27.0 sau mai nou în viitor. Suportul pentru importul setărilor în acest format vulnerabil va fi în curând eliminat complet, iar versiunile vechi ale NewPipe nu vor mai putea importa setările exporturilor din versiunile noi. secundar - Distribuie ca listă de redare temporară YouTube + Distribuiți ca listă de redare temporară YouTube Liste de redare Pagina grupului de canale - Caută: %1$s - Caută %1$s (%2$s) - Selectează un grup de fluxuri + Căutare: %1$s + Căutare %1$s (%2$s) + Selectați un grup de fluxuri Încă nu a fost creat niciun grup de fluxuri Aprecieri Pagina SoundCloud Top 50 a fost eliminată SoundCloud a eliminat Top 50. Fila corespunzătoare a fost eliminată din pagina principală. „Permite afișarea deasupra altor aplicații” - %s mii + %sK %s mil. %s mld. + În august 2025, Google a anunțat că, începând din septembrie 2026, instalarea aplicațiilor va necesita verificarea dezvoltatorului pentru toate aplicațiile Android de pe dispozitivele certificate, inclusiv pentru cele instalate din afara Play Store. Deoarece dezvoltatorii NewPipe nu sunt de acord cu această cerință, NewPipe nu va mai funcționa pe dispozitivele Android certificate după acea dată. + Soluție + Detalii + Acest conținut nu este disponibil pentru țara de conținut selectată în prezent.\n\nModificați selecția din „Setări > Conținut > Țara implicită pentru conținut”. + %1$s a refuzat să furnizeze datele, solicitând autentificarea pentru a confirma că solicitantul nu este un bot.\n\nEste posibil ca adresa dvs. IP să fi fost blocată temporar de %1$s; puteți aștepta puțin sau puteți trece la o altă adresă IP (de exemplu, activând/dezactivând un VPN sau trecând de la Wi-Fi la date mobile).\n\nVă rugăm să consultați această intrare din secțiunea de întrebări frecvente pentru mai multe informații. + S-a primit eroarea HTTP 403 de la server în timpul redării, probabil din cauza unei restricții de IP sau a unor probleme legate de dezobfuscarea adresei URL de flux + S-a primit eroarea HTTP %1$s de la server în timpul redării + S-a primit eroarea HTTP 403 de la server în timpul redării, probabil din cauza expirării adresei URL de flux sau a blocării adresei IP + Intrare ștearsă + Muzică în tendințe + Filme și seriale în tendințe + Podcast-uri în tendințe + Jocuri în tendințe + YouTube a desființat pagina combinată de tendințe începând cu 21 iulie 2025. NewPipe a înlocuit pagina implicită de tendințe cu secțiunea de transmisiuni live în tendințe.\n\nDe asemenea, puteți selecta diferite pagini de tendințe din „Setări > Conținut > Conținutul paginii principale”. + Youtube a desființat pagina combinată de tendințe + Pentru a utiliza playerul pop-up, vă rugăm să selectați %1$s la următorul meniu de setări Android și să activați %2$s. + Ștergeți fișierul + Ștergeți intrarea + + Se exportă %d abonament… + Se exportă %d abonamente… + Se exportă %d de abonamente… + + + Se încarcă %d abonament… + Se încarcă %d abonamente… + Se încarcă %d de abonamente… + + + Se importă %d abonament… + Se importă %d abonamente… + Se importă %d de abonamente… + + Importați abonamente + Exportați abonamente + Importați abonamente dintr-un export .json anterior + Exportați abonamentele într-un fișier .json + Importați dintr-un export anterior + Cont închis.\n\n%1$s oferă acest motiv: %2$s diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index c49c5fe48..56ecc320f 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -864,9 +864,32 @@ Во время воспроизведения получена ошибка HTTP 403 от сервера, вероятно, вызванная истечением срока действия URL-адреса потоковой передачи или блокировкой IP-адреса Ошибка HTTP %1$s получена от сервера во время воспроизведения Во время воспроизведения получена ошибка HTTP 403 от сервера, вероятно, вызванная блокировкой IP-адреса или проблемами деобфускации URL-адреса потоковой передачи - %1$s отказался предоставить данные, запросив логин для подтверждения, что запросчик не бот.\n\nВозможно, ваш IP-адрес временно заблокирован %1$s. Вы можете подождать некоторое время или переключиться на другой IP-адрес (например, включив/выключив VPN или переключившись с Wi-Fi на мобильный интернет). + %1$s отказался предоставить данные, запросив вход в аккаунт для подтверждения, что запрашивающий не является ботом.\n\nВозможно, ваш IP-адрес временно заблокирован %1$s, вы можете подождать некоторое время или переключиться на другой IP-адрес (например, включив/выключив VPN или переключившись с Wi-Fi на мобильный интернет).\n\nПожалуйста посмотрите этот пункт FAQ для получения дополнительной информации. Этот контент недоступен для выбранной страны контента.\n\nИзмените свой выбор в разделе «Настройки > Контент > Страна контента по умолчанию». В августе 2025 года, Google анонсировала, что с сентября 2026 года, установка приложений потребует верификации разработчика для всех Android приложений на сертифицированных устройствах, включая те, которые были установлены не через Play Store. Поскольку разработчики NewPipe не согласны с этим требованием, NewPipe перестанет работать на сертифицированных Android устройствах после этой даты. Подробнее Решение + + Экспортирование %d подписки… + Экспортирование %d подписок… + Экспортирование %d подписок… + Экспортирование %d подписок… + + + Загрузка %d подписки… + Загрузка %d подписок… + Загрузка %d подписок… + Загрузка %d подписок… + + + Импортирование %d подписки… + Импортирование %d подписок… + Импортирование %d подписок… + Импортирование %d подписок… + + Импорт подписок + Экспорт подписок + Импорт подписок из предыдущего экспорта .json + Экспорт ваших подписок в .json файл + Импорт из предыдущего экспорта diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index e27c7380d..195594a2b 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -171,7 +171,7 @@ Välj en kanal Inga kanal prenumerationer ännu Välj en kiosk - Trendande + Populärt Topp 50 Nytt och populärt Ta bort @@ -834,8 +834,8 @@ YouTube har upphört med den kombinerade trendsidan från och med den 21 juli 2025. NewPipe ersatte standardtrendsidan med trendiga livestreams.\n\nDu kan också välja olika trendsidor i \"Inställningar > Innehåll > Innehåll på huvudsidan\". Speltrender Trendiga poddar - Trendiga filmer och serier - Trendig musik + Populära filmer och serier + Populär musik För att använda Popup Player, välj %1$s i följande Android-inställningsmeny och aktivera %2$s. \"Tillåt visning över andra appar\" Ta bort fil @@ -863,4 +863,8 @@ Importera prenumerationer från en tidigare .json-export Exportera dina prenumerationer till en .json-fil Importera från tidigare export + + Läser in %d prenumeration… + Läser in %d prenumerationer… + diff --git a/fastlane/metadata/android/bn-IN/full_description.txt b/fastlane/metadata/android/bn-IN/full_description.txt new file mode 100644 index 000000000..d62f4f77a --- /dev/null +++ b/fastlane/metadata/android/bn-IN/full_description.txt @@ -0,0 +1 @@ +NewPipe কোনো গুগল ফ্রেমওয়ার্ক লাইব্রেরি বা ইউটিউব এপিআই ব্যবহার করে না। এটি শুধুমাত্র প্রয়োজনীয় তথ্য সংগ্রহের জন্য ওয়েবসাইটটি পার্স করে। সুতরাং এই অ্যাপটি গুগল সার্ভিস ইনস্টল করা নেই এমন ডিভাইসেও ব্যবহার করা যাবে। এছাড়াও, NewPipe ব্যবহার করার জন্য আপনার কোনো ইউটিউব অ্যাকাউন্টের প্রয়োজন নেই এবং এটি FLOSS। diff --git a/fastlane/metadata/android/bn-IN/short_description.txt b/fastlane/metadata/android/bn-IN/short_description.txt new file mode 100644 index 000000000..3c8792842 --- /dev/null +++ b/fastlane/metadata/android/bn-IN/short_description.txt @@ -0,0 +1 @@ +অ্যান্ড্রয়েডের জন্য একটি বিনামূল্যের ও হালকা ইউটিউব ফ্রন্টএন্ড। diff --git a/fastlane/metadata/android/cs/changelogs/1010.txt b/fastlane/metadata/android/cs/changelogs/1010.txt new file mode 100644 index 000000000..097ed0725 --- /dev/null +++ b/fastlane/metadata/android/cs/changelogs/1010.txt @@ -0,0 +1,9 @@ +Opravena chyba NullPointerException při zařazování akcí do fronty pomocí kontextu aplikace +[YouTube] Opraveno zpracování délky trvání položky + +Aktualizovány překlady a odstraněny nepřeložené jazykové verze +Drobná vylepšení při práci s obrázky + +Přeneseny změny související s odběry z refaktoringu +Přeneseny změny související s cestami z refaktoringu +Aktualizovány závislosti a Gradle na nejnovější stabilní verzi diff --git a/fastlane/metadata/android/de/changelogs/1010.txt b/fastlane/metadata/android/de/changelogs/1010.txt new file mode 100644 index 000000000..abddee052 --- /dev/null +++ b/fastlane/metadata/android/de/changelogs/1010.txt @@ -0,0 +1,9 @@ +NullPointerException beim Einreihen von Aktionen durch den Anwendungskontext behoben +[YouTube] Problem beim Analysieren der Elementdauer behoben + +Übersetzungen aktualisiert und nicht übersetzte Sprachversionen entfernt +Kleinere Verbesserungen bei der Handhabung von Bildern + +Änderungen im Zusammenhang mit Abonnements aus der Refaktorisierung übertragen +Änderungen im Zusammenhang mit Pfaden aus der Refaktorisierung übertragen +Abhängigkeiten und Gradle auf die neueste stabile Version aktualisiert diff --git a/fastlane/metadata/android/de/changelogs/850.txt b/fastlane/metadata/android/de/changelogs/850.txt index 30229edc0..42b15c020 100644 --- a/fastlane/metadata/android/de/changelogs/850.txt +++ b/fastlane/metadata/android/de/changelogs/850.txt @@ -1 +1 @@ -In dieser Veröffentlichung wurde die Version der Youtube Internetseite aktualisiert. Die alte Version der Internetseite wird im März abgeschaltet und darum ist es nötig NewPipe zu aktualisieren. +In dieser Veröffentlichung wurde die Version der Youtube-Website aktualisiert. Die alte Version der Website wird im März abgeschaltet und darum ist es nötig NewPipe zu aktualisieren. diff --git a/fastlane/metadata/android/fr/changelogs/1009.txt b/fastlane/metadata/android/fr/changelogs/1009.txt index 468ab4cec..052ca791c 100644 --- a/fastlane/metadata/android/fr/changelogs/1009.txt +++ b/fastlane/metadata/android/fr/changelogs/1009.txt @@ -9,7 +9,6 @@ Pages de commentaires non empilées Corrections Affichage de l'en-tête des réponses aux commentaires sans image d'avatar -Corrections d'interface utilisateur pour plusieurs lecteurs [SoundCloud] Correction des flux avec des identifiants longs Et bien d'autres corrections et améliorations ! diff --git a/fastlane/metadata/android/fr/changelogs/1010.txt b/fastlane/metadata/android/fr/changelogs/1010.txt new file mode 100644 index 000000000..fc832da0b --- /dev/null +++ b/fastlane/metadata/android/fr/changelogs/1010.txt @@ -0,0 +1,6 @@ +Correction d'une exception NullPointerException lors de la mise en file d'attente d'actions à l'aide du contexte d'application +[YouTube] Correction de l'analyse de la durée des éléments +Mise à jour des traductions et suppression des locales non traduites +Intégration des modifications liées aux abonnements issues de la refactorisation +Intégration des modifications liées aux chemins d'accès issues de la refactorisation +Mise à jour des dépendances et de Gradle vers la dernière version stable diff --git a/fastlane/metadata/android/hi/changelogs/1010.txt b/fastlane/metadata/android/hi/changelogs/1010.txt new file mode 100644 index 000000000..ff7991ce2 --- /dev/null +++ b/fastlane/metadata/android/hi/changelogs/1010.txt @@ -0,0 +1,9 @@ +Application Context का इस्तेमाल करके enqueue actions में NullPointerException को ठीक किया +[YouTube] आइटम की अवधि (duration) को parse करने की समस्या को ठीक किया + +अनुवादों को अपडेट किया और बिना अनुवाद वाले locales को हटा दिया +Image handling में छोटे-मोटे सुधार किए + +Refactor से subscriptions से जुड़े बदलावों को पोर्ट किया +Refactor से path से जुड़े बदलावों को पोर्ट किया +Dependencies और Gradle को सबसे नए release पर अपडेट किया diff --git a/fastlane/metadata/android/pa/changelogs/1010.txt b/fastlane/metadata/android/pa/changelogs/1010.txt new file mode 100644 index 000000000..403fcba81 --- /dev/null +++ b/fastlane/metadata/android/pa/changelogs/1010.txt @@ -0,0 +1,9 @@ +ਐਪਲੀਕੇਸ਼ਨ ਸੰਦਰਭ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਐਨਕਿਊ ਐਕਸ਼ਨਾਂ ਵਿੱਚ NullPointerException ਨੂੰ ਠੀਕ ਕੀਤਾ ਗਿਆ +[YouTube] ਪਾਰਸਿੰਗ ਆਈਟਮ ਦੀ ਮਿਆਦ ਨੂੰ ਸਥਿਰ ਕੀਤਾ ਗਿਆ + +ਅਨੁਵਾਦਾਂ ਨੂੰ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ ਅਤੇ ਅਨੁਵਾਦ ਨਾ ਕੀਤੇ ਗਏ ਸਥਾਨਾਂ ਨੂੰ ਹਟਾਇਆ ਗਿਆ +ਚਿੱਤਰ ਹੈਂਡਲਿੰਗ ਵਿੱਚ ਛੋਟੇ ਸੁਧਾਰ + +ਰੀਫੈਕਟਰ ਤੋਂ ਪੋਰਟ ਗਾਹਕੀਆਂ ਨਾਲ ਸਬੰਧਤ ਬਦਲਾਅ +ਰੀਫੈਕਟਰ ਤੋਂ ਪੋਰਟ ਮਾਰਗ ਨਾਲ ਸਬੰਧਤ ਬਦਲਾਅ +ਨਿਰਭਰਤਾਵਾਂ ਅਤੇ ਗ੍ਰੇਡਲ ਨੂੰ ਨਵੀਨਤਮ ਰੀਲੀਜ਼ ਲਈ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ diff --git a/fastlane/metadata/android/pl/changelogs/65.txt b/fastlane/metadata/android/pl/changelogs/65.txt index 8570a056a..596868305 100644 --- a/fastlane/metadata/android/pl/changelogs/65.txt +++ b/fastlane/metadata/android/pl/changelogs/65.txt @@ -1,4 +1,4 @@ -### Improvements +### Usprawnienia - Disable burgermenu icon animation #1486 - undo delete of downloads #1472 @@ -14,7 +14,7 @@ - Various UI fixes: #1383, background player notification controls now always white, easier to shutdown popup player through flinging - Use new extractor with refactored architecture for multiservice -### Fixes +### Poprawki - Fix #1440 Broken Video Info Layout #1491 - View history fix #1497 diff --git a/fastlane/metadata/android/sv/changelogs/1009.txt b/fastlane/metadata/android/sv/changelogs/1009.txt new file mode 100644 index 000000000..0c863f725 --- /dev/null +++ b/fastlane/metadata/android/sv/changelogs/1009.txt @@ -0,0 +1,14 @@ +Viktigt +Information om och uppmaning till handling för Keep Android Open-kampanjen tillagd: https://www.keepandroidopen.org/ + +Förbättrad +[Flöde] Blanda ordningen som föråldrade prenumerationer uppdateras i +Stapla inte kommentarsidor +Skicka inte klickanden till underliggande vyer när du klickar på videodetaljsidan + +Åtgärdat +Layout för kommentarssvarsrubrik utan avatarbild +Flera spelarrelaterade gränssnittsfixar +[SoundCloud] Åtgärdat strömmar med långa ID:n + +och fler rättningar och förbättringar! diff --git a/fastlane/metadata/android/sv/full_description.txt b/fastlane/metadata/android/sv/full_description.txt index d04230cb5..a0c2709bb 100644 --- a/fastlane/metadata/android/sv/full_description.txt +++ b/fastlane/metadata/android/sv/full_description.txt @@ -1 +1 @@ -NewPipe använder inte något av Googles ramverksbibliotek, eller YouTubes API. Den parsar bara webbplatsen för att få tag på den information den behöver. Därför kan denna app användas på enheter som inte har Google Services installerat. Du behöver inte heller ha ett YouTube-konto för att använda NewPipe, och det är FLOSS (free/libre/open-source software). +NewPipe använder inte något av Googles ramverksbibliotek, eller YouTubes API. Den tolkar bara webbplatsens innehåll för att hämta den information den behöver. Därför kan denna app användas på enheter som inte har Google-tjänster installerat. Du behöver inte heller ha ett YouTube-konto för att använda NewPipe, och det är fri programvara med öppen källkod (FLOSS). diff --git a/fastlane/metadata/android/sv/short_description.txt b/fastlane/metadata/android/sv/short_description.txt index d0e04f585..139903c39 100644 --- a/fastlane/metadata/android/sv/short_description.txt +++ b/fastlane/metadata/android/sv/short_description.txt @@ -1 +1 @@ -En gratis lättviktsklient för YouTube för Android. +En gratis, lättviktig YouTube-klient för Android. diff --git a/fastlane/metadata/android/tr/changelogs/1010.txt b/fastlane/metadata/android/tr/changelogs/1010.txt new file mode 100644 index 000000000..d8e8a94eb --- /dev/null +++ b/fastlane/metadata/android/tr/changelogs/1010.txt @@ -0,0 +1,9 @@ +Application Context kullanılarak kuyruğa ekleme işlemlerindeki NullPointerException hatası giderildi +[YouTube] Öge süresinin ayrıştırılması sorunu giderildi + +Çeviriler güncellendi ve çevrilmemiş diller kaldırıldı +Görüntü işleme konusunda küçük iyileştirmeler yapıldı + +Refactor sürecinden kaynaklanan aboneliklerle ilgili değişiklikler aktarıldı +Refactor sürecinden kaynaklanan path ile ilgili değişiklikler aktarıldı +Bağımlılıklar ve Gradle, en son düzgün sürüme güncellendi diff --git a/fastlane/metadata/android/uz-Latn/changelogs/1000.txt b/fastlane/metadata/android/uz-Latn/changelogs/1000.txt new file mode 100644 index 000000000..09bd8cdbe --- /dev/null +++ b/fastlane/metadata/android/uz-Latn/changelogs/1000.txt @@ -0,0 +1,23 @@ +Improved (Yaxshilangan) + +• Playlist tavsifini bosilganda kengaytirish / qisqartirish imkonini berish + +• [PeerTube] subscribeto.me instance havolalarini avtomatik qo‘llab-quvvatlash + +• History (tarix) ekranida faqat bitta elementni avtomatik ijro etish + +🛠 Fixed (Tuzatildi) + +• RSS tugmasining ko‘rinish muammosini tuzatish + +• Seekbar preview (oldindan ko‘rish) paytidagi crashlarni tuzatish + +• Thumbnail (rasm) bo‘lmagan elementni playlistga qo‘shish muammosini tuzatish + +• Yuklab olish dialogi chiqmasidan oldin undan chiqib ketish muammosini tuzatish + +• Related items ro‘yxatini queue (navbat)ga qo‘shish popup muammosini tuzatish + +• Playlistga qo‘shish dialogidagi tartibni tuzatish + +• Playlist bookmark elementining layout (ko‘rinish)ini moslashtirish diff --git a/fastlane/metadata/android/uz-Latn/changelogs/1001.txt b/fastlane/metadata/android/uz-Latn/changelogs/1001.txt new file mode 100644 index 000000000..23efa9ec1 --- /dev/null +++ b/fastlane/metadata/android/uz-Latn/changelogs/1001.txt @@ -0,0 +1,11 @@ +Yaxshilangan + +• Android 13+ da pleyer bildirishnomalari sozlamalarini har doim o'zgartirishga ruxsat berish + + + +Tuzatildi + +• Ma'lumotlar bazasini / obunalarni eksport qilish mavjud faylni qisqartirmasligini va eksportning buzilishiga olib kelishini tuzatish + +• Vaqt tamg'asini bosganingizda pleyer boshidan davom etishini tuzatish diff --git a/fastlane/metadata/android/uz-Latn/changelogs/1002.txt b/fastlane/metadata/android/uz-Latn/changelogs/1002.txt new file mode 100644 index 000000000..c5278ecc2 --- /dev/null +++ b/fastlane/metadata/android/uz-Latn/changelogs/1002.txt @@ -0,0 +1,7 @@ +YouTube'da hech qanday translyatsiya ijro etilmasligi muammosi tuzatildi. + + + +Ushbu nashr faqat YouTube video tafsilotlarini yuklashga xalaqit beradigan eng dolzarb xatoni hal qiladi. + +Biz boshqa muammolar ham borligini bilamiz va tez orada ularni hal qilish uchun alohida nashr chiqaramiz. diff --git a/fastlane/metadata/android/zh-Hant/changelogs/750.txt b/fastlane/metadata/android/zh-Hant/changelogs/750.txt index 310460124..556752488 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/750.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/750.txt @@ -19,4 +19,4 @@ • 修正下載停滯於 99.9% #2440 • 更新播放佇列中繼資料 #2453 • [SoundCloud] 修正載入播放清單時崩潰 TeamNewPipe/NewPipeExtractor#170 -• [YouTube] 修正持續時間無法剖析 TeamNewPipe/NewPipeExtractor#177 +• [YouTube] 修正持續時間無法解析 TeamNewPipe/NewPipeExtractor#177 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/955.txt b/fastlane/metadata/android/zh-Hant/changelogs/955.txt index 3aeeb01d5..24f13d898 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/955.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/955.txt @@ -1,3 +1,3 @@ [YouTube] 修正搜尋(部分使用者出現的問題) [YouTube] 修正隨機的解密例外狀況 -[SoundCloud] 以斜槓結尾的 URL 現已正確剖析 +[SoundCloud] 以斜槓結尾的 URL 現已正確解析 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/960.txt b/fastlane/metadata/android/zh-Hant/changelogs/960.txt index 42870ade0..2f064dab9 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/960.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/960.txt @@ -1,4 +1,4 @@ • 改善設定中匯出資料庫選項的描述。 -• 修正 YouTube 留言的剖析。 +• 修正 YouTube 留言的解析。 • 修正 media.ccc.de 服務的顯示名稱。 • 更新翻譯。 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/978.txt b/fastlane/metadata/android/zh-Hant/changelogs/978.txt new file mode 100644 index 000000000..ac41942f9 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/978.txt @@ -0,0 +1 @@ +已修正有時會過早執行版本檢查、導致 NewPipe 應用程式異常終止的問題。 diff --git a/fastlane/metadata/android/zh-Hant/full_description.txt b/fastlane/metadata/android/zh-Hant/full_description.txt index b6c4c771c..58c4495b8 100644 --- a/fastlane/metadata/android/zh-Hant/full_description.txt +++ b/fastlane/metadata/android/zh-Hant/full_description.txt @@ -1 +1 @@ -NewPipe 不使用任何 Google 框架函式庫或是 YouTube API,僅透過剖析網頁來取得需要的資訊。因此這個應用程式可以在沒有安裝 Google 服務的裝置上運作。同時,您也不需要 YouTube 帳號,就能使用 NewPipe,它是自由與開放原始碼軟體。 +NewPipe 不使用任何 Google 框架函式庫或者 YouTube API,僅透過解析網頁來取得所需資訊。因此這個應用程式可以在沒有安裝 Google 服務的裝置上使用。同時,您也不需要 YouTube 帳號就能使用 NewPipe,並且它是自由與開放原始碼軟體。 diff --git a/fastlane/metadata/android/zh-Hant/short_description.txt b/fastlane/metadata/android/zh-Hant/short_description.txt index d17816d5a..5950bd568 100644 --- a/fastlane/metadata/android/zh-Hant/short_description.txt +++ b/fastlane/metadata/android/zh-Hant/short_description.txt @@ -1 +1 @@ -自由的輕量級 Android YouTube 前端。 +一個自由的輕量級 Android YouTube 前端。 From ff597f8e95d8fcf57e26017cff29f27e8831ed46 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Sun, 26 Apr 2026 12:13:24 +0800 Subject: [PATCH 058/127] Update dependencies to latest stable releases Signed-off-by: Aayush Gupta --- .github/workflows/build-release-apk.yml | 2 +- .github/workflows/ci.yml | 6 +++--- .github/workflows/image-minimizer.yml | 2 +- gradle/libs.versions.toml | 4 ++-- gradle/wrapper/gradle-wrapper.properties | 4 ++-- gradlew | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-release-apk.yml b/.github/workflows/build-release-apk.yml index b558d90dd..52c3aeb29 100644 --- a/.github/workflows/build-release-apk.yml +++ b/.github/workflows/build-release-apk.yml @@ -32,7 +32,7 @@ jobs: mv app/build/outputs/apk/release/*.apk "app/build/outputs/apk/release/NewPipe_v$VERSION_NAME.apk" - name: "Upload APK" - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: app path: app/build/outputs/apk/release/*.apk diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0fa1ca84c..87a3ca33c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: gradle/actions/wrapper-validation@v5 + - uses: gradle/actions/wrapper-validation@v6 - name: create and checkout branch # push events already checked out the branch @@ -58,7 +58,7 @@ jobs: run: ./gradlew assembleDebug lintDebug testDebugUnitTest --stacktrace -DskipFormatKtlint - name: Upload APK - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: app path: app/build/outputs/apk/debug/*.apk @@ -104,7 +104,7 @@ jobs: script: ./gradlew connectedCheck --stacktrace - name: Upload test report when tests fail # because the printed out stacktrace (console) is too short, see also #7553 - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: android-test-report-api${{ matrix.api-level }} diff --git a/.github/workflows/image-minimizer.yml b/.github/workflows/image-minimizer.yml index 264a0ac6c..15c2aacaf 100644 --- a/.github/workflows/image-minimizer.yml +++ b/.github/workflows/image-minimizer.yml @@ -27,7 +27,7 @@ jobs: run: npm i probe-image-size@7.2.3 --ignore-scripts - name: Minimize simple images - uses: actions/github-script@v8 + uses: actions/github-script@v9 timeout-minutes: 3 with: script: | diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 9ca4443d6..efa0c62e1 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -21,10 +21,10 @@ documentfile = "1.1.0" exoplayer = "2.19.1" fragment = "1.8.9" groupie = "2.10.1" -jsoup = "1.22.1" +jsoup = "1.22.2" junit = "4.13.2" junit-ext = "1.3.0" -kotlin = "2.3.20" +kotlin = "2.3.21" kotlinx-coroutines-rx3 = "1.10.2" kotlinx-serialization-json = "1.11.0" ksp = "2.3.6" diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 92ed94347..8e61ef125 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=60ea723356d81263e8002fec0fcf9e2b0eee0c0850c7a3d7ab0a63f2ccc601f3 -distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip +distributionSha256Sum=2ab2958f2a1e51120c326cad6f385153bb11ee93b3c216c5fccebfdfbb7ec6cb +distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew index 0262dcbd5..739907dfd 100755 --- a/gradlew +++ b/gradlew @@ -57,7 +57,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/b631911858264c0b6e4d6603d677ff5218766cee/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/2d6327017519d23b96af35865dc997fcb544fb40/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. From ad7f8ba9c34a70470c949d31770c09026b95322b Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Tue, 21 Apr 2026 11:17:26 +0800 Subject: [PATCH 059/127] gradle: Build with JDK 21 Checkstyle was already requiring JDK 21 and now about libraries need it too Use the kotlin extension method as it will also configure it for java code Ref: https://kotlinlang.org/docs/gradle-configure-project.html#gradle-java-toolchains-support Signed-off-by: Aayush Gupta --- app/build.gradle.kts | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 724b131a2..915a45ea7 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -20,13 +20,8 @@ val gitWorkingBranch = providers.exec { commandLine("git", "rev-parse", "--abbrev-ref", "HEAD") }.standardOutput.asText.map { it.trim() } -java { - toolchain { - languageVersion = JavaLanguageVersion.of(17) - } -} - kotlin { + jvmToolchain(21) compilerOptions { // TODO: Drop annotation default target when it is stable freeCompilerArgs.addAll( @@ -137,13 +132,6 @@ ksp { // Custom dependency configuration for ktlint val ktlint by configurations.creating -// https://checkstyle.org/#JRE_and_JDK -tasks.withType().configureEach { - javaLauncher = javaToolchains.launcherFor { - languageVersion = JavaLanguageVersion.of(21) - } -} - checkstyle { configDirectory = rootProject.file("checkstyle") isIgnoreFailures = false From 9360d2f61c7f0555f3dddc5a20b2ef3c2f3a992c Mon Sep 17 00:00:00 2001 From: Stypox Date: Wed, 29 Apr 2026 14:43:26 +0200 Subject: [PATCH 060/127] Cleanup KeepAndroidOpen dialog code --- .../java/org/schabi/newpipe/MainActivity.java | 75 +++++++++---------- 1 file changed, 34 insertions(+), 41 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/MainActivity.java b/app/src/main/java/org/schabi/newpipe/MainActivity.java index 00f1a62af..e50be4389 100644 --- a/app/src/main/java/org/schabi/newpipe/MainActivity.java +++ b/app/src/main/java/org/schabi/newpipe/MainActivity.java @@ -984,55 +984,48 @@ private boolean bottomSheetHiddenOrCollapsed() { private void showKeepAndroidDialog() { final var prefs = PreferenceManager.getDefaultSharedPreferences(this); - + final var lastCheckKey = getString(R.string.kao_last_checked_key); + final var lastCheck = Instant.ofEpochMilli(prefs.getLong(lastCheckKey, 0)); final var now = Instant.now(); - final var kaoLastCheck = Instant.ofEpochMilli(prefs.getLong( - getString(R.string.kao_last_checked_key), - 0 - )); - final var supportedLannguages = List.of("fr", "de", "ca", "es", "id", "it", "pl", - "pt", "cs", "sk", "fa", "ar", "tr", "el", "th", "ru", "uk", "ko", "zh", "ja"); - final var locale = Localization.getAppLocale(); - final String kaoBaseUrl = "https://keepandroidopen.org/"; - final String kaoURI; - if (supportedLannguages.contains(locale.getLanguage())) { - if ("zh".equals(locale.getLanguage())) { - kaoURI = kaoBaseUrl + ("TW".equals(locale.getCountry()) ? "zh-TW" : "zh-CN"); - } else { - kaoURI = kaoBaseUrl + locale.getLanguage(); - } - } else { - kaoURI = kaoBaseUrl; - } - final var solutionURI = - "https://github.com/woheller69/FreeDroidWarn?tab=readme-ov-file#solutions"; + if (lastCheck.plus(30, ChronoUnit.DAYS).isBefore(now)) { + final String detailsUrl = getKeepAndroidOpenDetailsUrl(); + final var solutionUrl = "https://github.com/woheller69/FreeDroidWarn#solutions"; - if (kaoLastCheck.plus(30, ChronoUnit.DAYS).isBefore(now)) { final var dialog = new AlertDialog.Builder(this) .setTitle("Keep Android Open") .setCancelable(false) - .setMessage(this.getString(R.string.kao_dialog_warning)) - .setPositiveButton(this.getString(android.R.string.ok), (d, w) -> { - prefs.edit() - .putLong( - getString(R.string.kao_last_checked_key), - now.toEpochMilli() - ) - .apply(); - }) - .setNeutralButton(this.getString(R.string.kao_solution), null) - .setNegativeButton(this.getString(R.string.kao_dialog_more_info), null) + .setMessage(R.string.kao_dialog_warning) + .setPositiveButton(android.R.string.ok, (d, w) -> prefs.edit() + .putLong(lastCheckKey, now.toEpochMilli()) + .apply()) + .setNeutralButton(R.string.kao_solution, null) + .setNegativeButton(R.string.kao_dialog_more_info, null) .show(); - // If we use setNeutralButton and etc. dialog will close after pressing the buttons, - // but we want it to close only when positive button is pressed - dialog.getButton(AlertDialog.BUTTON_NEGATIVE).setOnClickListener(v -> - ShareUtils.openUrlInBrowser(this, kaoURI) - ); - dialog.getButton(AlertDialog.BUTTON_NEUTRAL).setOnClickListener(v -> - ShareUtils.openUrlInBrowser(this, solutionURI) - ); + // If we use setNeutralButton/setNegativeButton, dialog will close after pressing the + // buttons, but we want it to close only when positive button is pressed + dialog.getButton(AlertDialog.BUTTON_NEGATIVE) + .setOnClickListener(v -> ShareUtils.openUrlInBrowser(this, detailsUrl)); + dialog.getButton(AlertDialog.BUTTON_NEUTRAL) + .setOnClickListener(v -> ShareUtils.openUrlInBrowser(this, solutionUrl)); + } + } + + @NonNull + private static String getKeepAndroidOpenDetailsUrl() { + final var supportedLanguages = List.of("fr", "de", "ca", "es", "id", "it", "pl", + "pt", "cs", "sk", "fa", "ar", "tr", "el", "th", "ru", "uk", "ko", "zh", "ja"); + final String kaoBaseUrl = "https://keepandroidopen.org/"; + final var locale = Localization.getAppLocale(); + if (supportedLanguages.contains(locale.getLanguage())) { + if ("zh".equals(locale.getLanguage())) { + return kaoBaseUrl + ("TW".equals(locale.getCountry()) ? "zh-TW" : "zh-CN"); + } else { + return kaoBaseUrl + locale.getLanguage(); + } + } else { + return kaoBaseUrl; } } } From 6d5252252346a92d71bb025149987e8a5f09bac2 Mon Sep 17 00:00:00 2001 From: Stypox Date: Wed, 29 Apr 2026 16:30:31 +0200 Subject: [PATCH 061/127] Add popup for NewPipe dropping support for Android 5 --- .../java/org/schabi/newpipe/MainActivity.java | 30 +++++++++++++++++++ app/src/main/res/values/settings_keys.xml | 1 + app/src/main/res/values/strings.xml | 3 ++ 3 files changed, 34 insertions(+) diff --git a/app/src/main/java/org/schabi/newpipe/MainActivity.java b/app/src/main/java/org/schabi/newpipe/MainActivity.java index e50be4389..6aa87b4bd 100644 --- a/app/src/main/java/org/schabi/newpipe/MainActivity.java +++ b/app/src/main/java/org/schabi/newpipe/MainActivity.java @@ -27,6 +27,7 @@ import android.content.IntentFilter; import android.content.SharedPreferences; import android.content.pm.PackageManager; +import android.os.Build; import android.os.Bundle; import android.os.Handler; import android.os.Looper; @@ -203,6 +204,7 @@ protected void onCreate(final Bundle savedInstanceState) { // We want every release build (nightly, nightly-refactor) to show the popup if (!DEBUG) { showKeepAndroidDialog(); + showApi23RequirementDialog(); } MigrationManager.showUserInfoIfPresent(this); @@ -1028,4 +1030,32 @@ private static String getKeepAndroidOpenDetailsUrl() { return kaoBaseUrl; } } + + private void showApi23RequirementDialog() { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { + return; // only show dialog on the devices that will stop being supported + } + + final var prefs = PreferenceManager.getDefaultSharedPreferences(this); + final var shownKey = getString(R.string.api23_requirement_dialog_shown_key); + if (prefs.getBoolean(shownKey, false)) { + return; // dialog was already shown in the past, no need to show it again + } + + final var dialog = new AlertDialog.Builder(this) + .setTitle(R.string.api23_requirement_dialog_title) + .setCancelable(false) + .setMessage(R.string.api23_requirement_dialog_message) + .setPositiveButton(android.R.string.ok, (d, w) -> prefs.edit() + .putBoolean(shownKey, true) + .apply()) + .setNegativeButton(R.string.api23_requirement_dialog_blogpost, null) + .show(); + + // If we use setNegativeButton, dialog will close after pressing the button, + // but we want it to close only when positive button is pressed + final var blogpostUrl = "https://newpipe.net/blog/pinned/announcement/drop-android-5/"; + dialog.getButton(AlertDialog.BUTTON_NEGATIVE) + .setOnClickListener(v -> ShareUtils.openUrlInBrowser(this, blogpostUrl)); + } } diff --git a/app/src/main/res/values/settings_keys.xml b/app/src/main/res/values/settings_keys.xml index f49ed3dad..60ac20d0a 100644 --- a/app/src/main/res/values/settings_keys.xml +++ b/app/src/main/res/values/settings_keys.xml @@ -11,6 +11,7 @@ kao_last_checked + api23_requirement_dialog_shown download_path download_path_audio diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 3ec84bfff..912ad3f36 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -900,4 +900,7 @@ In August 2025, Google announced that as of September 2026, installing apps will require developer verification for all Android apps on certified devices, including those installed outside of the Play Store. Since the developers of NewPipe do not agree to this requirement, NewPipe will no longer work on certified Android devices after that time. Details Solution + NewPipe is dropping support for Android 5 + Unfortunately NewPipe depends on a few libraries that dropped support for Android 5.0 and 5.1. The next NewPipe release will therefore only work on devices with Android 6 or higher, sadly. Read more in the blogpost. + Blogpost From 9373a6c40d223f321afc57853a9d7a76f9ba6441 Mon Sep 17 00:00:00 2001 From: Stypox Date: Fri, 1 May 2026 14:33:51 +0200 Subject: [PATCH 062/127] Add changelog for v0.28.6 (1011) --- fastlane/metadata/android/en-US/changelogs/1011.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 fastlane/metadata/android/en-US/changelogs/1011.txt diff --git a/fastlane/metadata/android/en-US/changelogs/1011.txt b/fastlane/metadata/android/en-US/changelogs/1011.txt new file mode 100644 index 000000000..e3c61febb --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/1011.txt @@ -0,0 +1 @@ +Add popup to inform users that v0.28.7 will drop support for Android 5 \ No newline at end of file From d4941c44248ba210f44dd37ddc053accaab1ff8b Mon Sep 17 00:00:00 2001 From: Stypox Date: Fri, 1 May 2026 14:34:35 +0200 Subject: [PATCH 063/127] Release v0.28.6 (1011) --- app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 063eeb95c..fd2954c0a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -45,9 +45,9 @@ configure { minSdk = 21 targetSdk = 35 - versionCode = System.getProperty("versionCodeOverride")?.toInt() ?: 1010 + versionCode = System.getProperty("versionCodeOverride")?.toInt() ?: 1011 - versionName = "0.28.5" + versionName = "0.28.6" System.getProperty("versionNameSuffix")?.let { versionNameSuffix = it } testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" From 18d54b62259e6f6b50f985b32cf22df1ab1b70b1 Mon Sep 17 00:00:00 2001 From: George Laios Date: Sat, 16 May 2026 05:46:36 +0300 Subject: [PATCH 064/127] Fix repeat mode UI out-of-sync when switching videos --- .../newpipe/player/ui/VideoPlayerUi.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java b/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java index f020852cf..1fea488bd 100644 --- a/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java +++ b/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java @@ -399,6 +399,10 @@ public void initPlayback() { // #6825 - Ensure that the shuffle-button is in the correct state on the UI setShuffleButton(player.getExoPlayer().getShuffleModeEnabled()); + + // Set repeat button to the correct UI state + setRepeatButton(player.getExoPlayer().getRepeatMode()); + } public abstract void removeViewFromParent(); @@ -982,6 +986,20 @@ private void setMuteButton(final boolean isMuted) { private void setShuffleButton(final boolean shuffled) { binding.shuffleButton.setImageAlpha(shuffled ? 255 : 77); } + + private void setRepeatButton(final int repeatMode) { + if (repeatMode == REPEAT_MODE_ALL) { + binding.repeatButton.setImageResource( + com.google.android.exoplayer2.ui.R.drawable.exo_controls_repeat_all); + } else if (repeatMode == REPEAT_MODE_ONE) { + binding.repeatButton.setImageResource( + com.google.android.exoplayer2.ui.R.drawable.exo_controls_repeat_one); + } else /* repeatMode == REPEAT_MODE_OFF */ { + binding.repeatButton.setImageResource( + com.google.android.exoplayer2.ui.R.drawable.exo_controls_repeat_off); + } + } + //endregion From 6cd63dc0c5337e25c615e2604a118588707f83bd Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Mon, 4 May 2026 13:39:31 +0800 Subject: [PATCH 065/127] Upgrade AGP to 9.2.0 Building release builds is still broken on encrypted linux file systems but that's seems to be not a priority for Google to fix. Upgrade so that developers can avoid suffering from bugs such as preview rendering failure. Signed-off-by: Aayush Gupta --- app/build.gradle.kts | 3 +-- build.gradle.kts | 10 ++++++++-- gradle.properties | 1 - gradle/libs.versions.toml | 5 ++--- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index f9b6a7915..390977147 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -7,8 +7,7 @@ import com.android.build.api.dsl.ApplicationExtension plugins { alias(libs.plugins.android.application) - alias(libs.plugins.jetbrains.kotlin.android) - alias(libs.plugins.jetbrains.kotlin.kapt) + alias(libs.plugins.android.legacy.kapt) alias(libs.plugins.google.ksp) alias(libs.plugins.jetbrains.kotlin.parcelize) alias(libs.plugins.jetbrains.kotlinx.serialization) diff --git a/build.gradle.kts b/build.gradle.kts index 13e33dce5..53c8a4c42 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,10 +3,16 @@ * SPDX-License-Identifier: GPL-3.0-or-later */ +buildscript { + dependencies { + // https://developer.android.com/build/releases/agp-9-0-0-release-notes#runtime-dependency-on-kotlin-gradle-plugin-upgrade + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${libs.versions.kotlin.get()}") + } +} + plugins { alias(libs.plugins.android.application) apply false - alias(libs.plugins.jetbrains.kotlin.android) apply false - alias(libs.plugins.jetbrains.kotlin.kapt) apply false + alias(libs.plugins.android.legacy.kapt) apply false alias(libs.plugins.google.ksp) apply false alias(libs.plugins.jetbrains.kotlin.parcelize) apply false alias(libs.plugins.jetbrains.kotlinx.serialization) apply false diff --git a/gradle.properties b/gradle.properties index 1a8297ddf..dd79a45b2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,3 @@ -android.useAndroidX=true org.gradle.jvmargs=-Xmx2048M --add-opens jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED systemProp.file.encoding=utf-8 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index efa0c62e1..e59433d39 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -5,7 +5,7 @@ [versions] acra = "5.13.1" -agp = "8.13.2" +agp = "9.2.1" appcompat = "1.7.1" assertj = "3.27.7" autoservice-google = "1.1.1" @@ -136,9 +136,8 @@ zacsweers-autoservice-compiler = { module = "dev.zacsweers.autoservice:auto-serv [plugins] android-application = { id = "com.android.application", version.ref = "agp" } +android-legacy-kapt = { id = "com.android.legacy-kapt", version.ref = "agp" } # Needed for statesaver google-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } -jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } -jetbrains-kotlin-kapt = { id = "org.jetbrains.kotlin.kapt", version.ref = "kotlin" } # Needed for statesaver jetbrains-kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" } jetbrains-kotlinx-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } sonarqube = { id = "org.sonarqube", version.ref = "sonarqube" } From 6419b6bac7ccb46a51755a01c8ed95457109e430 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Sat, 16 May 2026 12:34:46 +0800 Subject: [PATCH 066/127] Update Gradle and wrapper to 9.5.1 Signed-off-by: Aayush Gupta --- gradle/wrapper/gradle-wrapper.jar | Bin 48966 -> 48462 bytes gradle/wrapper/gradle-wrapper.properties | 6 +++-- gradlew | 2 +- gradlew.bat | 31 ++++++++--------------- 4 files changed, 15 insertions(+), 24 deletions(-) diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index d997cfc60f4cff0e7451d19d49a82fa986695d07..b1b8ef56b44f16b14dc800fa8103a6d89abb526f 100644 GIT binary patch delta 39760 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 e(*aw}>J`&Ep$5$o2mVP)i30-M3~u@DBh0 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 delta 40115 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 e{Sg5G5zENPNVU~b5#<2@M#Os+0czL&{q{eZe&2 echo Please set the JAVA_HOME variable in your environment to match the 1>&2 echo location of your Java installation. 1>&2 -goto fail +"%COMSPEC%" /c exit 1 :findJavaFromJavaHome set JAVA_HOME=%JAVA_HOME:"=% @@ -65,7 +65,7 @@ echo. 1>&2 echo Please set the JAVA_HOME variable in your environment to match the 1>&2 echo location of your Java installation. 1>&2 -goto fail +"%COMSPEC%" /c exit 1 :execute @rem Setup the command line @@ -73,21 +73,10 @@ goto fail @rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* +@rem endlocal doesn't take effect until after the line is parsed and variables are expanded +@rem which allows us to clear the local environment before executing the java command +endlocal & "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* & call :exitWithErrorLevel -:end -@rem End local scope for the variables with windows NT shell -if %ERRORLEVEL% equ 0 goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -set EXIT_CODE=%ERRORLEVEL% -if %EXIT_CODE% equ 0 set EXIT_CODE=1 -if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% -exit /b %EXIT_CODE% - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega +:exitWithErrorLevel +@rem Use "%COMSPEC%" /c exit to allow operators to work properly in scripts +"%COMSPEC%" /c exit %ERRORLEVEL% From c2ead904fee53805d21c090ab4aa6c77f6bab7ae Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Sat, 16 May 2026 12:36:21 +0800 Subject: [PATCH 067/127] Update libs to latest stable releases Signed-off-by: Aayush Gupta --- gradle/libs.versions.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index e59433d39..ba23ab292 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -12,7 +12,7 @@ autoservice-google = "1.1.1" autoservice-zacsweers = "1.2.0" bridge = "v2.0.2" cardview = "1.0.0" -checkstyle = "13.4.0" +checkstyle = "13.4.2" coil = "3.4.0" constraintlayout = "2.2.1" core = "1.18.0" @@ -25,9 +25,9 @@ jsoup = "1.22.2" junit = "4.13.2" junit-ext = "1.3.0" kotlin = "2.3.21" -kotlinx-coroutines-rx3 = "1.10.2" +kotlinx-coroutines-rx3 = "1.11.0" kotlinx-serialization-json = "1.11.0" -ksp = "2.3.6" +ksp = "2.3.8" ktlint = "1.8.0" leakcanary = "2.14" lifecycle = "2.10.0" @@ -46,7 +46,7 @@ runner = "1.7.0" rxandroid = "3.0.2" rxbinding = "4.0.0" rxjava = "3.1.12" -sonarqube = "7.2.3.7755" +sonarqube = "7.3.0.8198" statesaver = "1.4.1" # TODO: Drop because it is deprecated and incompatible with KSP2 stetho = "1.6.0" swiperefreshlayout = "1.2.0" From 9dd0f1984f3461f1eb5e7cb504fa9260d36aefde Mon Sep 17 00:00:00 2001 From: TobiGr Date: Sat, 16 May 2026 08:35:29 +0200 Subject: [PATCH 068/127] Replace if-else with switch --- .../newpipe/player/ui/VideoPlayerUi.java | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java b/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java index 1fea488bd..0bb01b10d 100644 --- a/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java +++ b/app/src/main/java/org/schabi/newpipe/player/ui/VideoPlayerUi.java @@ -988,16 +988,14 @@ private void setShuffleButton(final boolean shuffled) { } private void setRepeatButton(final int repeatMode) { - if (repeatMode == REPEAT_MODE_ALL) { - binding.repeatButton.setImageResource( - com.google.android.exoplayer2.ui.R.drawable.exo_controls_repeat_all); - } else if (repeatMode == REPEAT_MODE_ONE) { - binding.repeatButton.setImageResource( - com.google.android.exoplayer2.ui.R.drawable.exo_controls_repeat_one); - } else /* repeatMode == REPEAT_MODE_OFF */ { - binding.repeatButton.setImageResource( - com.google.android.exoplayer2.ui.R.drawable.exo_controls_repeat_off); - } + final int resId = switch (repeatMode) { + case REPEAT_MODE_ALL + -> com.google.android.exoplayer2.ui.R.drawable.exo_controls_repeat_all; + case REPEAT_MODE_ONE + -> com.google.android.exoplayer2.ui.R.drawable.exo_controls_repeat_one; + default -> com.google.android.exoplayer2.ui.R.drawable.exo_controls_repeat_off; + }; + binding.repeatButton.setImageResource(resId); } //endregion From 238124c7bef413cf207e30dd09844b316319f38c Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Sat, 16 May 2026 06:05:02 +0200 Subject: [PATCH 069/127] Translated using Weblate (Russian) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Croatian) Currently translated at 99.7% (774 of 776 strings) Translated using Weblate (Spanish) Currently translated at 72.8% (67 of 92 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Portuguese (Portugal)) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Azerbaijani) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Portuguese) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Slovak) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Italian) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Turkish) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Latvian) Currently translated at 97.1% (754 of 776 strings) Translated using Weblate (Korean) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Greek) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Czech) Currently translated at 100.0% (92 of 92 strings) Translated using Weblate (Czech) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (French) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (French) Currently translated at 100.0% (92 of 92 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Persian) Currently translated at 98.8% (767 of 776 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (92 of 92 strings) Translated using Weblate (German) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Hungarian) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Polish) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (German) Currently translated at 100.0% (92 of 92 strings) Translated using Weblate (Bulgarian) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 63.7% (58 of 91 strings) Translated using Weblate (English (United Kingdom)) Currently translated at 83.5% (76 of 91 strings) Translated using Weblate (Spanish) Currently translated at 72.5% (66 of 91 strings) Translated using Weblate (English (United Kingdom)) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Polish) Currently translated at 100.0% (773 of 773 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (773 of 773 strings) Co-authored-by: 439JBYL80IGQTF25UXNR0X1BG <439jbyl80igqtf25uxnr0x1bg@users.noreply.hosted.weblate.org> Co-authored-by: Agnieszka C Co-authored-by: Danial Behzadi Co-authored-by: Edward Co-authored-by: Emin Tufan Çetin Co-authored-by: Femini Co-authored-by: Fjuro Co-authored-by: Ghost of Sparta Co-authored-by: Hosted Weblate Co-authored-by: Michalis Co-authored-by: Mickaël Binos Co-authored-by: Milan Co-authored-by: Milo Ivir Co-authored-by: Nicolás Pérez Co-authored-by: Olly Co-authored-by: Philip Goto Co-authored-by: Priit Jõerüüt Co-authored-by: Random Co-authored-by: Trunars Co-authored-by: UDP Co-authored-by: VfBFan Co-authored-by: delvani Co-authored-by: justcontributor Co-authored-by: ssantos Co-authored-by: ℂ𝕠𝕠𝕠𝕝 (𝕘𝕚𝕥𝕙𝕦𝕓.𝕔𝕠𝕞/ℂ𝕠𝕠𝕠𝕝) Co-authored-by: 大王叫我来巡山 Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/cs/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/de/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/en_GB/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/es/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/fr/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/zh_Hant/ Translation: NewPipe/Metadata --- app/src/main/res/values-az/strings.xml | 3 + app/src/main/res/values-bg/strings.xml | 3 + app/src/main/res/values-cs/strings.xml | 3 + app/src/main/res/values-de/strings.xml | 3 + app/src/main/res/values-el/strings.xml | 5 +- app/src/main/res/values-en-rGB/strings.xml | 758 +++++++++++++++++- app/src/main/res/values-es/strings.xml | 3 + app/src/main/res/values-et/strings.xml | 3 + app/src/main/res/values-fa/strings.xml | 39 +- app/src/main/res/values-fr/strings.xml | 3 + app/src/main/res/values-hr/strings.xml | 25 + app/src/main/res/values-hu/strings.xml | 3 + app/src/main/res/values-it/strings.xml | 3 + app/src/main/res/values-ko/strings.xml | 3 + app/src/main/res/values-lv/strings.xml | 4 +- app/src/main/res/values-nl/strings.xml | 3 + app/src/main/res/values-pl/strings.xml | 5 +- app/src/main/res/values-pt-rBR/strings.xml | 3 + app/src/main/res/values-pt-rPT/strings.xml | 3 + app/src/main/res/values-pt/strings.xml | 6 +- app/src/main/res/values-ro/strings.xml | 48 +- app/src/main/res/values-ru/strings.xml | 3 + app/src/main/res/values-sk/strings.xml | 3 + app/src/main/res/values-tr/strings.xml | 3 + app/src/main/res/values-zh-rCN/strings.xml | 3 + app/src/main/res/values-zh-rTW/strings.xml | 5 +- .../metadata/android/cs/changelogs/1011.txt | 1 + .../metadata/android/de/changelogs/1011.txt | 1 + .../android/en_GB/changelogs/1006.txt | 17 + .../android/en_GB/changelogs/1007.txt | 11 + .../android/en_GB/changelogs/1008.txt | 4 + .../android/en_GB/changelogs/1009.txt | 14 + .../android/en_GB/changelogs/1010.txt | 9 + .../metadata/android/en_GB/changelogs/65.txt | 26 + .../metadata/android/en_GB/changelogs/66.txt | 33 + .../metadata/android/en_GB/changelogs/68.txt | 31 + .../metadata/android/en_GB/changelogs/69.txt | 19 + .../metadata/android/en_GB/changelogs/70.txt | 25 + .../metadata/android/en_GB/changelogs/71.txt | 10 + .../metadata/android/en_GB/changelogs/730.txt | 2 + .../metadata/android/en_GB/changelogs/740.txt | 23 + .../metadata/android/en_GB/changelogs/750.txt | 22 + .../metadata/android/en_GB/changelogs/760.txt | 43 + .../metadata/android/en_GB/changelogs/770.txt | 4 + .../metadata/android/en_GB/changelogs/780.txt | 12 + .../metadata/android/en_GB/changelogs/790.txt | 15 + .../metadata/android/en_GB/changelogs/800.txt | 27 + .../metadata/android/en_GB/changelogs/810.txt | 19 + .../metadata/android/en_GB/changelogs/820.txt | 1 + .../metadata/android/en_GB/changelogs/830.txt | 1 + .../metadata/android/en_GB/changelogs/840.txt | 22 + .../metadata/android/en_GB/changelogs/850.txt | 1 + .../metadata/android/en_GB/changelogs/860.txt | 7 + .../metadata/android/en_GB/changelogs/870.txt | 2 + .../metadata/android/en_GB/changelogs/900.txt | 14 + .../metadata/android/en_GB/changelogs/910.txt | 1 + .../metadata/android/en_GB/changelogs/920.txt | 9 + .../metadata/android/en_GB/changelogs/930.txt | 19 + .../metadata/android/en_GB/changelogs/940.txt | 16 + .../metadata/android/en_GB/changelogs/950.txt | 4 + .../metadata/android/en_GB/changelogs/951.txt | 17 + .../metadata/android/en_GB/changelogs/952.txt | 7 + .../metadata/android/en_GB/changelogs/953.txt | 1 + .../metadata/android/en_GB/changelogs/954.txt | 9 + .../metadata/android/en_GB/changelogs/955.txt | 3 + .../metadata/android/en_GB/changelogs/956.txt | 1 + .../metadata/android/en_GB/changelogs/957.txt | 10 + .../metadata/android/en_GB/changelogs/958.txt | 15 + .../metadata/android/en_GB/changelogs/959.txt | 3 + .../metadata/android/en_GB/changelogs/960.txt | 4 + .../metadata/android/en_GB/changelogs/961.txt | 12 + .../metadata/android/en_GB/changelogs/962.txt | 2 + .../metadata/android/en_GB/changelogs/963.txt | 1 + .../metadata/android/en_GB/changelogs/964.txt | 8 + .../metadata/android/en_GB/changelogs/965.txt | 6 + .../metadata/android/en_GB/changelogs/966.txt | 14 + .../metadata/android/en_GB/changelogs/967.txt | 1 + .../metadata/android/en_GB/changelogs/968.txt | 7 + .../metadata/android/en_GB/changelogs/969.txt | 8 + .../metadata/android/en_GB/changelogs/970.txt | 11 + .../metadata/android/en_GB/changelogs/971.txt | 3 + .../metadata/android/en_GB/changelogs/972.txt | 14 + .../metadata/android/en_GB/changelogs/973.txt | 4 + .../metadata/android/en_GB/changelogs/974.txt | 5 + .../metadata/android/en_GB/changelogs/975.txt | 17 + .../metadata/android/en_GB/changelogs/976.txt | 10 + .../metadata/android/en_GB/changelogs/977.txt | 10 + .../metadata/android/en_GB/changelogs/978.txt | 1 + .../metadata/android/en_GB/changelogs/979.txt | 2 + .../metadata/android/en_GB/changelogs/980.txt | 13 + .../metadata/android/en_GB/changelogs/981.txt | 2 + .../metadata/android/en_GB/changelogs/982.txt | 1 + .../metadata/android/en_GB/changelogs/983.txt | 9 + .../metadata/android/en_GB/changelogs/984.txt | 7 + .../metadata/android/en_GB/changelogs/985.txt | 1 + .../metadata/android/en_GB/changelogs/986.txt | 16 + .../metadata/android/en_GB/changelogs/987.txt | 12 + .../metadata/android/en_GB/changelogs/988.txt | 2 + .../metadata/android/en_GB/changelogs/989.txt | 3 + .../metadata/android/en_GB/changelogs/990.txt | 15 + .../metadata/android/en_GB/changelogs/991.txt | 13 + .../metadata/android/en_GB/changelogs/992.txt | 17 + .../metadata/android/en_GB/changelogs/993.txt | 12 + .../metadata/android/en_GB/changelogs/994.txt | 15 + .../metadata/android/en_GB/changelogs/995.txt | 16 + .../metadata/android/en_GB/changelogs/996.txt | 2 + .../metadata/android/en_GB/changelogs/997.txt | 17 + .../metadata/android/en_GB/changelogs/998.txt | 4 + .../metadata/android/en_GB/changelogs/999.txt | 12 + .../metadata/android/es/changelogs/1005.txt | 8 +- .../metadata/android/es/changelogs/1008.txt | 4 + .../metadata/android/fr/changelogs/1011.txt | 1 + .../android/zh-Hans/changelogs/1011.txt | 1 + .../android/zh-Hant/changelogs/1000.txt | 12 +- .../android/zh-Hant/changelogs/1001.txt | 6 +- .../android/zh-Hant/changelogs/1002.txt | 5 +- .../android/zh-Hant/changelogs/1003.txt | 7 +- .../android/zh-Hant/changelogs/1004.txt | 4 +- .../android/zh-Hant/changelogs/981.txt | 2 +- 119 files changed, 1799 insertions(+), 57 deletions(-) create mode 100644 fastlane/metadata/android/cs/changelogs/1011.txt create mode 100644 fastlane/metadata/android/de/changelogs/1011.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/1006.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/1007.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/1008.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/1009.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/1010.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/65.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/66.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/68.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/69.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/70.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/71.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/730.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/740.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/750.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/760.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/770.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/780.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/790.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/800.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/810.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/820.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/830.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/840.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/850.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/860.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/870.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/900.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/910.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/920.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/930.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/940.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/950.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/951.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/952.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/953.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/954.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/955.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/956.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/957.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/958.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/959.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/960.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/961.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/962.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/963.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/964.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/965.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/966.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/967.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/968.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/969.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/970.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/971.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/972.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/973.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/974.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/975.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/976.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/977.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/978.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/979.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/980.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/981.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/982.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/983.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/984.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/985.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/986.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/987.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/988.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/989.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/990.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/991.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/992.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/993.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/994.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/995.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/996.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/997.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/998.txt create mode 100644 fastlane/metadata/android/en_GB/changelogs/999.txt create mode 100644 fastlane/metadata/android/es/changelogs/1008.txt create mode 100644 fastlane/metadata/android/fr/changelogs/1011.txt create mode 100644 fastlane/metadata/android/zh-Hans/changelogs/1011.txt diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml index c432b645d..27b7b548f 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -845,4 +845,7 @@ Əvvəlki .json ixracından abunəlikləri idxal et Abunəliklərinizi .json faylına köçürün Əvvəlki köçürmədən idxal et + NewPipe Android 5 üçün dəstəyi dayandırır + Bloq elanı + Təəssüf ki, NewPipe Android 5.0 və 5.1 üçün dəstəyi dayandıran bir neçə kitabxanadan asılıdır. Bu səbəbdən, üzücü olaraq növbəti NewPipe buraxılışı yalnız Android 6 və ya daha yüksək versiyalı cihazlarda işləyəcək. Daha çoxunu blog elanında oxu. diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml index 943ee5a8c..a7414aef6 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -852,4 +852,7 @@ Внасяне на абонаменти от предишен .json файл Изнесете абонаментите си в .json файл Внасяне от предишно изнасяне + NewPipe спира поддръжката си за Android 5 + За съжаление NewPipe зависи от няколко библиотеки, които спряха поддръжката за Android 5.0 и 5.1. Следователно, за съжаление, следващата версия на NewPipe ще работи само на устройства с Android 6 или по-нова версия. Прочетете повече в публикацията в блога. + Публикация в блога diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index 50a5b7ecd..12bab19b4 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -887,4 +887,7 @@ Importovat odběry z předchozího exportu .json Exportovat odběry do souboru .json Importovat z předchozího exportu + NewPipe ukončuje podporu systému Android 5 + NewPipe bohužel využívá několik knihoven, které již nepodporují Android 5.0 a 5.1. Příští verze NewPipe proto bude bohužel fungovat pouze na zařízeních s Androidem 6 nebo novějším. Více se dozvíte v tomto blogovém příspěvku. + Blogový příspěvek diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 2a2df280c..0e8bbd070 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -867,4 +867,7 @@ Importieren von Abonnements aus einem früheren .json-Export Exportiere deine Abonnements in eine .json-Datei Aus vorherigem Export importieren + Blogbeitrag + NewPipe stellt die Unterstützung für Android 5 ein + Leider ist NewPipe auf einige Bibliotheken angewiesen, welche die Unterstützung für Android 5.0 und 5.1 eingestellt haben. Die nächste Version von NewPipe wird daher leider nur auf Geräten mit Android 6 oder höher funktionieren. Mehr dazu im Blogbeitrag. diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 336dacf7f..458a67920 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -845,7 +845,7 @@ Σφάλμα HTTP 403 που ελήφθη από τον διακομιστή κατά την αναπαραγωγή, πιθανώς λόγω λήξης διεύθυνσης URL ροής ή αποκλεισμού IP Σφάλμα HTTP %1$s ελήφθη από τον διακομιστή κατά την αναπαραγωγή Σφάλμα HTTP 403 ελήφθη από τον διακομιστή κατά την αναπαραγωγή, πιθανώς λόγω αποκλεισμού IP ή προβλημάτων απεμπλοκής URL ροής - Ο %1$s αρνήθηκε να παράσχει δεδομένα, ζητώντας σύνδεση για να επιβεβαιώσει ότι ο αιτών δεν είναι bot.\n\nΗ IP σας ενδέχεται να έχει αποκλειστεί προσωρινά από τον %1$s. Μπορείτε να περιμένετε λίγο ή να αλλάξετε IP (για παράδειγμα, ενεργοποιώντας/απενεργοποιώντας ένα VPN ή αλλάζοντας από WiFi σε δεδομένα κινητής τηλεφωνίας).\n\nΑνατρέξτε σεαυτήν την καταχώρηση στις Συχνές Ερωτήσεις για περισσότερες πληροφορίες. + To %1$s αρνήθηκε να παράσχει δεδομένα, ζητώντας σύνδεση για να επιβεβαιώσει ότι ο αιτών δεν είναι bot.\n\nΗ IP σας ενδέχεται να έχει αποκλειστεί προσωρινά από το %1$s. Μπορείτε να περιμένετε λίγο ή να αλλάξετε IP (για παράδειγμα, ενεργοποιώντας/απενεργοποιώντας ένα VPN ή αλλάζοντας από WiFi σε δεδομένα κινητής τηλεφωνίας).\n\nΓια περισσότερες πληροφορίες, ανατρέξτε σε αυτή την καταχώριση στις Συχνές Ερωτήσεις . Αυτό το περιεχόμενο δεν είναι διαθέσιμο για την τρέχουσα επιλεγμένη χώρα περιεχομένου.\n\nΑλλάξτε την επιλογή σας από \"Ρυθμίσεις > Περιεχόμενο > Προεπιλεγμένη χώρα περιεχομένου\". Λεπτομέρειες Λύση @@ -867,4 +867,7 @@ Εισαγωγή συνδρομών από προηγούμενη εξαγωγή Εξαγωγή των συνδρομών σας σε αρχείο .json Εισαγωγή από προηγούμενη εξαγωγή + Το NewPipe καταργεί την υποστήριξη για το Android 5 + Δυστυχώς, το NewPipe βασίζεται σε ορισμένες βιβλιοθήκες που έχουν σταματήσει να υποστηρίζουν τα Android 5.0 και 5.1. Ως εκ τούτου, η επόμενη έκδοση του NewPipe θα λειτουργεί μόνο σε συσκευές με Android 6 ή νεότερη έκδοση, δυστυχώς. Διαβάστε περισσότερα στην ανάρτηση του ιστολογίου. + Δημοσίευση στο ιστολόγιο diff --git a/app/src/main/res/values-en-rGB/strings.xml b/app/src/main/res/values-en-rGB/strings.xml index 1a80eefd9..30e9a3927 100644 --- a/app/src/main/res/values-en-rGB/strings.xml +++ b/app/src/main/res/values-en-rGB/strings.xml @@ -77,7 +77,7 @@ Select your favourite PeerTube instances Continue playing after interruptions (e.g. phone calls) Published on %1$s - Report this error via e-mail + Report via e-mail Select your favorite night theme – %s No stream player found. Install VLC\? Install @@ -94,4 +94,760 @@ Download stream file Search Settings + Search %1$s + Search %1$s (%2$s) + Showing results for: %s + Share with + Use external video player + Removes audio at some resolutions + Use external audio player + Subscribe + Subscribed + Unsubscribe + Channel unsubscribed + Could not change subscription + Could not update subscription + Show info + Subscriptions + Bookmarked Playlists + Playlists + Choose Tab + Background + Popup + Add To + Video download folder + Downloaded video files are stored here + Choose download folder for video files + Audio download folder + Downloaded audio files are stored here + Choose download folder for audio files + Default resolution + Default popup resolution + Show higher resolutions + Only some devices can play 2K/4K videos + Play with Kodi + Install missing Kore app? + Crash the player + Scale thumbnail to 1:1 aspect ratio + Scale the video thumbnail shown in the notification from 16:9 to 1:1 aspect ratio (may introduce distortions) + First action button + Second action button + Third action button + Fourth action button + Fifth action button + Edit each notification action below by tapping on it. Select up to three of them to be shown in the compact notification by using the checkboxes on the right. + Edit each notification action below by tapping on it. The first three actions (play/pause, previous and next) are set by the system and cannot be customised. + You can select at most three actions to show in the compact notification! + Repeat + Shuffle + Buffering + Nothing + Audio + Default audio format + Default video format + Theme + Night Theme + Light + Dark + Black + Remember pop-up properties + Remember last size and position of pop-up + Use fast inexact seek + Fast-forward/Rewind seek duration + Playback load interval size + Change the load interval size on progressive contents (currently %s). A lower value may speed up their initial loading + Ask for confirmation before clearing a queue + Switching from one player to another may replace your queue + The active player queue will be replaced + Ignore hardware media button events + Useful, for instance, if you are using a headset with broken physical buttons + Show comments + Turn off to hide comments + Show \'Next\' and \'Similar\' videos + Show description + Turn off to hide video description and additional information + Show meta info + Turn off to hide meta info boxes with additional information about the stream creator, stream content or a search request + Prefer original audio + Select the original audio track regardless of the language + Prefer descriptive audio + Select an audio track with descriptions for visually impaired people if available + Image cache wiped + Wipe cached metadata + Remove all cached webpage data + Metadata cache wiped + Auto-enqueue next stream + Continue ending (non-repeating) playback queue by appending a related stream + Auto-enqueuing + Choose gesture for left half of player screen + Left gesture action + Choose gesture for right half of player screen + Right gesture action + Brightness + Volume + None + Search suggestions + Choose the suggestions to show when searching + Local search suggestions + Remote search suggestions + Search history + Store search queries locally + Watch history + Resume playback + Restore last playback position + Positions in lists + Show playback position indicators in lists + Clear data + Keep track of watched videos + Resume playing + Download + Start main player in full-screen + Do not start videos in the mini player, but turn to full-screen mode directly, if auto rotation is locked. You can still access the mini player by exiting full-screen + Autoplay + Unsupported URL + Could not recognise the URL. Open with another application? + Default content country + Default content language + PeerTube instances + Find the instances you like on %s + Add instance + Enter instance URL + Could not validate instance + Only HTTPS URLs are supported + Instance already exists + Player notification + Configure current playing stream notification + Backup and restore + Playing in background + Content + Show age-restricted content + This video is age-restricted.\nDue to new YouTube policies with age-restricted videos, NewPipe cannot access any of its video streams and thus is unable to play it. + Live + Downloads + Downloads + Loading metadata… + Error report + All + Channels + Playlists + Videos + Tracks + Users + Events + Songs + Albums + Artists + Disabled + Clear + Best resolution + Undo + File deleted + Play All + Always + File + Notifications + NewPipe notification + Notifications for NewPipe\'s player + Notifications for new NewPipe versions + Notifications for video hashing progress + New streams + Notifications about new streams for subscriptions + Error report notification + Notifications to report errors + [Unknown] + Import database + Export database + Clear re-CAPTCHA cookies + re-CAPTCHA cookies have been cleared + Overrides your current history, subscriptions, playlists and (optionally) settings + Export history, subscriptions, playlists and settings + Clear cookies that NewPipe stores when you solve a re-CAPTCHA + Clear watch history + Deletes the history of played streams and the playback positions + Delete entire watch history? + Watch history deleted + Delete playback positions + Deletes all playback positions + Delete all playback positions? + Playback positions deleted + Clear search history + Deletes history of search keywords + Delete entire search history? + Search history deleted + Fast mode + Move main tab selector to the bottom + Main tabs position + Error + External storage unavailable + Network error + Could not load all thumbnails + Could not parse website + Content unavailable + Could not set up download menu + App/UI crashed + Could not play this stream + Unrecoverable player error occurred + Recovering from player error + External players don\'t support these types of links + No video streams found + No audio streams found + File moved or deleted + No such folder + No such file/content source + The file does not exist, or permission to read or write to it is lacking + File name cannot be empty + An error occurred: %1$s + No streams available to download + Could not read the saved tabs, so using the default ones + Restore defaults + Do you want to restore defaults? + Give permission to display over other apps + In order to use the Popup Player, please select %1$s in the following Android settings menu and enable %2$s. + “Allow display over other apps” + NewPipe encountered an error, tap to report + An error occurred, see the notification + Sorry, that should not have happened. + Copy formatted report + Report on GitHub + Please check whether an issue discussing your crash already exists. When creating duplicate tickets, you take time from us which we could spend with fixing the actual bug. + Sorry, something went wrong. + Report + Info: + What happened: + What:\nRequest:\nContent Language:\nContent Country:\nApp Language:\nService:\nGMT Time:\nPackage:\nVersion:\nOS version: + Your comment (in English): + Details: + Play video, duration: + Uploader\'s avatar thumbnail + Likes + Dislikes + Comments + Related items + Description + No results + Nothing here but crickets + Import or export subscriptions from the 3-dot menu + Drag to reorder + Video + Audio + Retry + %sK + %sM + %sB + Toggle service, currently selected: + No subscribers + + %s subscriber + %s subscribers + + Subscriber count unavailable + No views + + %s view + %s views + + Nobody is watching + + %s watching + %s watching + + Nobody is listening + + %s listener + %s listeners + + No videos + 100+ videos + ∞ videos + + %s video + %s videos + + No comments + Comments are disabled + No streams + No live streams + + %s new stream + %s new streams + + Start + Pause + Create + Delete + Delete file + Delete entry + Checksum + Dismiss + Rename + File name + Threads + Error + NewPipe Downloading + Tap for details + Calculating hash + Please wait… + Copied to clipboard + Failed to copy to clipboard + Please define a download folder later in settings + No download folder set yet, choose the default download folder now + This permission is needed to\nopen in pop-up mode + 1 item deleted. + re-CAPTCHA challenge + re-CAPTCHA challenge requested + Solve + Done + Download + Allowed characters in file names + Invalid characters are replaced with this value + Replacement character + Letters and digits + Most special characters + About NewPipe + © %1$s by %2$s under %3$s + About & FAQ + Libre lightweight streaming on Android. + Contribute + View on GitHub + Donate + NewPipe is developed by volunteers spending their free time bringing you the best user experience. Give back to help developers make NewPipe even better, while they enjoy a cup of coffee. + Give back + Website + Visit the NewPipe website for more info and news. + NewPipe\'s privacy policy + The NewPipe project takes your privacy very seriously. Therefore, the app does not collect any data without your consent.\nNewPipe\'s privacy policy explains in detail what data is sent and stored when you send a crash report. + Read privacy policy + Frequently asked questions + If you are having trouble using the app, be sure to check out these answers to common questions! + View on website + History + History + Do you want to delete this item from search history? + Last played + Most played + Content of main page + What tabs are shown on the main page + Swipe items to remove them + Blank page + Kiosk page + Default Kiosk + Channel page + Select a channel + No channel subscriptions yet + Select a playlist + No playlist bookmarks yet + Select a kiosk + Exported + Imported + No valid ZIP file + Warning: Could not import all files. + This will override your current setup. + Do you want to also import settings? + Could not load comments + Select a feed group + No feed group created yet + Trending + Top 50 + New and hot + Local + Recently added + Most liked + Conferences + Play queue + Remove + Details + Audio settings + Audio: %s + Audio track + Hold to enqueue + Show channel details + Enqueue + Enqueued + Enqueue next + Enqueued next + Start playing in the background + Start playing in a pop-up + Loading stream details… + Open Drawer + Close Drawer + Preferred \'open\' action + Video player + Background player + Pop-up player + Always ask + Getting info… + Loading requested content + New playlist + The playlists that are grayed out already contain this item. + Rename + Name + Add to playlist + Processing… May take a moment + Mute + Unmute + Set as playlist thumbnail + Unset permanent thumbnail + Bookmark Playlist + Remove Bookmark + Delete this playlist? + Playlist created + Playlisted + Duplicate added %d time(s) + Playlist thumbnail changed. + Auto-generated (no uploader found) + No captions + Fit + Fill + Zoom + Auto-generated + Captions + Modify player caption text scale and background styles. Requires application restart to take effect + LeakCanary is not available + Memory leak monitoring may cause the app to become unresponsive when heap dumping + Show memory leaks + Report out-of-lifecycle errors + Force reporting of undeliverable Rx exceptions outside of fragment or activity lifecycle after disposal + Show \'original time ago\' on items + Original text from services will be visible in stream items + Disable media tunnelling + Disable media tunnelling if you experience a black screen or stuttering on video playback. + Media tunneling was disabled by default on your device because your device model is known to not support it. + Show \'Crash the player\' + Shows a crash option when using the player + Run check for new streams + Crash the app + Show an error snack-bar + Create an error notification + + Exporting %d subscription… + Exporting %d subscriptions… + + + Loading %d subscription… + Loading %d subscriptions… + + + Importing %d subscription… + Importing %d subscriptions… + + Import + Import from + Export to + Importing… + Exporting… + Import file + Previous export + Import subscriptions + Export subscriptions + Import subscriptions from a previous .json export + Export your subscriptions to a .json file + Import from previous export + Could not import subscriptions + Could not export subscriptions + yourID, soundcloud.com/yourid + Keep in mind this operation can be network expensive.\n\nDo you want to continue? + Playback speed controls + Tempo + Pitch + Unhook (may cause distortion) + Fast-forward during silence + Step + Reset + Percent + Semitone + In order to comply with the European General Data Protection Regulation (GDPR), we hereby draw your attention to NewPipe\'s privacy policy. Please read it carefully.\nYou must accept it to send us the bug report. + Accept + Decline + No limit + Limit resolution when using mobile data + New streams notifications + Notify about new streams from subscriptions + Checking frequency + Required network connection + Any network + Updates + Show a notification to prompt an application update when a new version is available + Check for updates + NewPipe can automatically check for new versions from time to time and notify you once they are available.\nDo you want to enable this? + Manually check for new versions + Minimise on app switch + None + Minimise to background player + Minimise to pop-up player + Only on Wi-Fi + Never + List view mode + List + Grid + Card + Auto + Seek-bar thumbnail preview + High quality (larger) + Low quality (smaller) + Do not show + You are running the latest version of NewPipe + NewPipe update is available! + Tap to download %s + Finished + Pending + paused + queued + post-processing + recovering + Enqueue + Action denied by the system + Checking for updates… + Download failed + + Download finished + %s downloads finished + + Reset settings + Reset all settings to their default values + Resetting all settings will discard all of your preferred settings and restarts the application.\n\nAre you sure you want to proceed? + Generate unique name + Overwrite + A file with this name already exists + A downloaded file with this name already exists + cannot overwrite the file + There is a download in progress with this name + There is a pending download with this name + Show error + The file cannot be created + The destination folder cannot be created + Could not establish a secure connection + Could not find the server + Cannot connect to the server + The server does not send data + The server does not accept multi-threaded downloads, retry with @string/msg_threads = 1 + Not found + Post-processing failed + NewPipe was closed while working on the file + No space left on device + No space left on device + Progress lost, because the file was deleted + Connection time-out + Cannot recover this download + Clear download history + Do you want to clear your download history, or delete all downloaded files? + Delete downloaded files + Erase all downloaded files from disk? + + Deleted %1$s download + Deleted %1$s downloads + + Stop + Maximum retries + Interrupt on metered networks + Useful when switching to mobile data, although some downloads cannot be suspended + Close + Limit download queue + One download will run at the same time + Start downloads + Pause downloads + Ask where to download + You will be asked where to save each download.\nEnable the System Folder Picker (SAF) if you want to download to an external SD card + You will be asked where to save each download + Use System Folder Picker (SAF) + The \'Storage Access Framework\' allows downloads to an external SD card + Starting from Android 10 only \'Storage Access Framework\' is supported + Choose an instance + Application language + System default + Remove watched + Remove watched streams? + Remove duplicates + Remove duplicates? + Do you want to remove all duplicate streams in this playlist? + Streams that have been watched before and after being added to the playlist will be removed.\nAre you sure? + Remove partially watched streams + Due to ExoPlayer constraints the seek duration was set to %d seconds + + %d second + %d seconds + + + %d minute + %d minutes + + + %d hour + %d hours + + + %d day + %d days + + What\'s New + Channel group page + Channel groups + Feed last updated: %s + Not loaded: %d + Loading feed… + Processing feed… + New feed items + Select subscriptions + No subscription selected + + %d selected + %d selected + + Empty group name + Do you want to delete this group? + New + Show only ungrouped subscriptions + Feed + Feed update threshold + Always update + Error loading feed + Could not load feed for \'%s\'. + The author\'s account has been terminated.\nNewPipe will not be able to load this feed in the future.\nDo you want to unsubscribe from this channel? + The fast feed mode does not provide more info on this. + Fetch from dedicated feed when available + Enable fast mode + Disable fast mode + Show the following streams + Show/Hide streams + Fetch channel tabs + Tabs to fetch when updating the feed. This option has no effect if a channel is updated using fast mode. + Created by %s + By %s + Playlist page + Show thumbnail + Use thumbnail for both lock screen background and notifications + Recent + Chapters + No app on your device can open this + No appropriate file manager was found for this action. \nPlease install a file manager or try to disable \'%s\' in the download settings + No appropriate file manager was found for this action. \nPlease install a Storage Access Framework compatible file manager + This content is not available in your country. + This is a SoundCloud Go+ track, at least in your country, so it cannot be streamed or downloaded by NewPipe. + This content is private, so it cannot be streamed or downloaded by NewPipe. + This video is available only to YouTube Music Premium members, so it cannot be streamed or downloaded by NewPipe. + Account terminated + Account terminated\n\n%1$s provides this reason: %2$s + This content is only available to users who have paid, so it cannot be streamed or downloaded by NewPipe. + Featured + Radio + Automatic (device theme) + You can select your favourite night theme below + This option is only available if %s is selected for Theme + Download has started + You can now select text inside the description. Note that the page may flicker and links may not be clickable while in selection mode. + Enable selecting text in the description + Disable selecting text in the description + Category + Tags + Licence + Privacy + Age limit + Language + Support + Host + Thumbnails + Uploader avatars + Sub-channel avatars + Avatars + Banners + Public + Unlisted + Private + Internal + Subscribers + Pinned comment + Hearted by creator + Open website + Tablet mode + On + Off + ExoPlayer default + Notifications are disabled + Get notified + You now subscribed to this channel + , + Toggle all + Streams which are not yet supported by the downloader are not shown + An audio track should be already present in this stream + The selected stream is not supported by external players + No audio streams are available for external players + No video streams are available for external players + Select quality for external players + Select audio track for external players + Unknown format + Unknown quality + Unknown + Fully watched + Partially watched + Upcoming + Sort + ExoPlayer settings + Manage some ExoPlayer settings. These changes require a player restart to take effect + Use ExoPlayer\'s decoder fallback feature + Enable this option if you have decoder initialisation issues, which falls back to lower-priority decoders if primary decoders initialisation fail. This may result in poor playback performance than when using primary decoders + Always use ExoPlayer\'s video output surface setting workaround + This workaround releases and re-instantiates video codecs when a surface change occurs, instead of setting the surface to the codec directly. Already used by ExoPlayer on some devices with this issue, this setting has only an effect on Android 6 and higher\n\nEnabling this option may prevent playback errors when switching the current video player or switching to fullscreen + %1$s %2$s + original + dubbed + descriptive + secondary + Videos + Tracks + Shorts + Live + Channels + Playlists + Albums + Likes + About + Channel tabs + What tabs are shown on the channel pages + Open play queue + Toggle fullscreen + Toggle screen orientation + Previous stream + Next stream + Play + Replay + More options + Duration + Rewind + Forward + Image quality + Choose the quality of images and whether to load images at all, to reduce data and memory usage. Changes clear both in-memory and on-disk image cache — %s + Do not load images + Low quality + Medium quality + High quality + \? + Share playlist + Share with titles + Share URL list + Share as YouTube temporary playlist + - %1$s: %2$s + %1$s\n%2$s + + %s reply + %s replies + + Show more + Show less + The settings in the export being imported use a vulnerable format that was deprecated since NewPipe 0.27.0. Make sure the export being imported is from a trusted source, and prefer using only exports obtained from NewPipe 0.27.0 or newer in the future. Support for importing settings in this vulnerable format will soon be removed completely, and then old versions of NewPipe will not be able to import settings of exports from new versions anymore. + SoundCloud Top 50 page removed + SoundCloud has discontinued the original Top 50 charts. The corresponding tab has been removed from your main page. + YouTube combined trending removed + YouTube has discontinued the combined trending page as of 21st July 2025. NewPipe replaced the default trending page with the trending livestreams.\n\nYou can also select different trending pages in \'Settings > Content > Content of main page\'. + Gaming trends + Trending podcasts + Trending movies and shows + Trending music + Entry deleted + HTTP error 403 received from server while playing, likely caused by streaming URL expiration or an IP ban + HTTP error %1$s received from server while playing + HTTP error 403 received from server while playing, likely caused by an IP ban or streaming URL de-obfuscation issues + %1$s refused to provide data, asking for a login to confirm the requester is not a bot.\n\nYour IP might have been temporarily banned by %1$s, you can wait some time or switch to a different IP (for example by turning on/off a VPN, or by switching from WiFi to mobile data).\n\nPlease see this FAQ entry for more information. + This content is not available for the currently selected content country.\n\nChange your selection from \'Settings > Content > Default content country\'. + In August 2025, Google announced that, as of September 2026, installing apps will require developer verification for all Android apps on certified devices, including those installed outside of the Play Store. Since the developers of NewPipe do not agree to this requirement, NewPipe will no longer work on certified Android devices after that time. + Details + Solution diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 273d86856..20ca4673d 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -874,4 +874,7 @@ Importar suscripciones desde una exportación .json anterior Exportar suscripciones a un archivo .json Importar desde exportación anterior + NewPipe dejará de soportar Android 5 + Desafortunadamente, NewPipe depende de algunas bibliotecas que dejaron de soportar Android 5.0 y 5.1. La próxima versión de NewPipe sólo funcionará en dispositivos con Android 6 o superior, tristemente. Lea más en el artículo de nuestro blog. + Artículo diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml index 24c32fefa..408f17428 100644 --- a/app/src/main/res/values-et/strings.xml +++ b/app/src/main/res/values-et/strings.xml @@ -852,4 +852,7 @@ Impordi tellimusi varasemeksporditud json-failist Ekspirdi oma tellimused json-faili Impordi tellimusi varasemeksporditud failist + NewPipe loobub Android 5 toest + Kahjuks sõltub NewPipe mõnest teegist, mis on lõpetanud Androidi versioonide 5.0 ja 5.1 toetamise. Seetõttu töötab järgmine NewPipe’i versioon kahjuks ainult nutiseadmetes, millel on Android 6 või uuem versioon. Lisateavet leiad ajaveebi postitusest. + Postitus meie ajaveebis diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml index 1cdf9e71d..c54c9fa9d 100644 --- a/app/src/main/res/values-fa/strings.xml +++ b/app/src/main/res/values-fa/strings.xml @@ -450,7 +450,7 @@ %d ثانیه بله، و ویدیوهای ناقص دیده شده - برداشتن ویدیوهای دیده شده؟ + برداشتن جریان‌های دیده شده؟ پاک کردن دیده شده‌ها پیش‌فرض دستگاه زبان برنامه @@ -500,7 +500,7 @@ نمایش اشتراک های دسته بندی نشده آواتار بندانگشتی کانال صفحه فهرست پخش - ویدیوهایی که پیش و‌ پس از افزوده شدن به سیاههٔ پخش دیده شده‌اند حذف خواهند شد. \nمطمئنید؟ این کار قابل بازگشت نیست! + ویدیوهایی که پیش و‌ پس از افزوده شدن به سیاههٔ پخش دیده شده‌اند حذف خواهند شد. \nمطمئنید؟ گزارش اجباری خطاهای Rx غیرقابل تحویل خارج از چرخه حیات فعالیت یا بخش پس از اتمام فکر می‌کنید دریافت خوراک بیش از حد آهسته است؟ اگر چنین است، بارگیری سریع را فعالی کنید (می‌توانید آن را در تنظیمات یا با فشردن دکمه زیر تغییر دهید) \n @@ -820,4 +820,39 @@ جزییات راهکار جست‌وجوی %1$s + فرستهٔ وبلاگ + داغ‌های بازی + داغ‌های پادپخش + آهنگ‌های داغ + حذف پرونده + حذف ورودی + ورودی حذف شد + درون‌ریزی اشتراک‌ها + برون‌ریزی اشتراک‌ها + صفحهٔ گروه کانال + جست‌وجوی %1$s ‏(%2$s) + گزینش گروه خوراک + داغ‌های ترکیبی یوتوب برداشته شد + فیلم و سریال‌های داغ + درون‌ریزی از برون‌ریزی پیشین + هنوز گروه خوراکی ایجاد نشده + ۵۰ صفحهٔ برتر سوندکلود برداشته شد + «اجازهٔ نمایش روی دیگر کاره‌ها» + + برون ریختن %d اشتراک… + برون ریختن %d اشتراک… + + + بار کردن %d اشتراک… + بار کردن %d اشتراک… + + + درون ریختن %d اشتراک… + درون ریختن %d اشتراک… + + حساب از بین رفت\n\n‫%1$s این دلیل را گفته: %2$s + درون‌ریزی اشتراک‌ها از برون‌ریزی پیشین ‪.json‬ + برون‌ریزی اشتراک‌هایتان به پروندهٔ ‪.json‬ + نیوپایپ دارد پشتیبانی از اندروید ۵ را رها می‌کند + هنگام پخش کردن کارساز خطای HTTP ‏%1$s داد diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 3b3a4af5d..1c676a17c 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -886,4 +886,7 @@ Importer des abonnements à partir d\'une exportation .json précédente Exportez vos abonnements dans un fichier .json Importer à partir d\'une exportation précédente + NewPipe ne prendra plus en charge Android 5 + Malheureusement, NewPipe dépend de certaines bibliothèques qui ne prennent plus en charge Android 5.0 et 5.1. La prochaine version de NewPipe ne fonctionnera donc, à notre grand regret, que sur les appareils équipés d\'Android 6 ou d\'une version ultérieure. Pour en savoir plus, consultez l\'article de blog. + Article de blog diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml index 28412795e..83d3a13e1 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -859,4 +859,29 @@ HTTP greška 403 primljena od poslužitelja tijekom reprodukcije, vjerojatno uzrokovana zabranom IP adrese ili problemima s deobfuskacijom URL-a za streaming %1$s je odbio dati podatke, tražeći prijavu kako bi potvrdio da podnositelj zahtjeva nije bot.\n\nVašu IP adresu je možda privremeno zabranio %1$s, možete pričekati neko vrijeme ili se prebaciti na drugu IP adresu (na primjer uključivanjem/isključivanjem VPN-a ili prebacivanjem s WiFi-ja na mobilne podatke). Ovaj sadržaj nije dostupan za trenutno odabranu zemlju sadržaja.\n\nPromijenite odabir u \"Postavke > Sadržaj > Zadana zemlja sadržaja\". + + Izvozi se %d pretplata … + Izvoze se %d pretplate … + Izvozi se %d pretplata … + + + Učitava se %d pretplata … + Učitavaju se %d pretplate … + Učitavaju se %d pretplate … + + + Uvozi se %d pretplata … + Uvoze se %d pretplate … + Uvozi se %d pretplata … + + Uvezi pretplate + Izvezi pretplate + Uvezi pretplate iz jednog prijašnjeg .json izvoza + Izvezi svoje pretplate u .json datoteku + Uvezi iz prethodnog izvoza + Detalji + Rješenje + NewPipe ukida podršku za Android 5 + Nažalost NewPipe ovisi o nekoliko biblioteka koje su ukinule podršku za Android 5.0 i 5.1. Sljedeće NewPipe izdanje će stoga nažalost raditi samo na uređajima s Androidom 6 ili novije. Pročitaj više u objavi na blogu. + Objava na blogu diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 2f6f4c09b..47205ba14 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -838,4 +838,7 @@ Feliratkozások importálása korábbi .json-fájlból Feliratkozások exportálása .json-fájlba Importálás korábbi exportból + A NewPipe megszünteti az Android 5 támogatását + Sajnos a NewPipe néhány olyan programkönyvtárra támaszkodik, amelyek megszüntették az Android 5.0 és 5.1 verziójának támogatását. A NewPipe következő verziója ezért sajnos csak Android 6 vagy újabb rendszerrel rendelkező eszközökön fog működni. További információt a blogbejegyzésben olvashat. + Blogbejegyzés diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 3dbd1b8a5..fe9d86163 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -884,4 +884,7 @@ Importa iscrizioni da un\'esportazione .json precedente Esporta le tue iscrizioni su un file .json Importa da un\'esportazione precedente + NewPipe sta abbandonando il supporto per Android 5 + Purtroppo NewPipe dipende da alcune librerie che hanno abbandonato il supporto per Android 5.0 e 5.1. La prossima versione di NewPipe funzionerà solo su dispositivi con Android 6 o superiore, purtroppo. Maggiori info nel post del blog. + Post del blog diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index c76a24563..1d57439a2 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -850,4 +850,7 @@ 이전에 내보낸 .json에서 구독을 가져옵니다 구독 현황을 .json 파일로 내보냅니다 이전 내보내기에서 가져오기 + NewPipe가 Android 5 지원을 중단합니다 + NewPipe는 Android 5.0 및 5.1 지원을 중단한 몇 라이브러리에 의존합니다. 따라서 유감스럽게도 다음NewPipe 버전은 Android 6 이상 기기에서만 작동할 예정입니다. 자세한 내용은 블로그 게시글을 참조하세요. + 블로그 게시글 diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml index f7fa2a3f0..ebd894b90 100644 --- a/app/src/main/res/values-lv/strings.xml +++ b/app/src/main/res/values-lv/strings.xml @@ -52,7 +52,7 @@ Vēsture Vēsture Lasīt licenci - Newpipe ir bezmaksas programmatūra: jūs varat izmantot, izpētīt, dalīties un uzlabot to jebkurā brīdī. Tieši jūs varat kopīgot un/ vai modificēt to saskaņā ar GNU Vispārējās Publiskās Licences noteikumiem, ko publicējusi Brīvās Programmatūras Fonds, vai nu 3. licences versija, vai (pēc jūsu izvēles) jebkura vēlāka versija. + NewPipe — bez autortiesību ierobežojumiem brīva, pieejama bezmaksas, programmatūra: jūs variet izmantot, pētīt, dalīties un uzlabot to jebkurā brīdī pēc saviem ieskatiem. Tieši jūs varat kopīgot un/ vai modificēt to saskaņā ar GNU Vispārējās Publiskās Licences noteikumiem, ko publicējusi Brīvās Programmatūras Fonds, vai nu 3. licences versija, vai (pēc jūsu izvēles) jebkura vēlāka versija. NewPipe Licence Izslasīt privātuma politiku Datu aizsardzība ir ļoti svarīga NewPipe projektam. Tāpēc lietotne neapkopo datus bez jūsu piekrišanas.\nNewPipe konfidencialitātes politika sīki izskaidro, kādi dati tiek nosūtīti un uzglabāti, kad nosūtiet nobrukšanas ziņojumu. @@ -65,7 +65,7 @@ Apskatīt GitHub Vienalga, kādas idejas Jums ir; Tulkojuma, dizaina izmaiņu, koda tīrīšanas vai reāli smagas kodu izmaiņas - palīdzība vienmēr ir laipni gaidīta. Jo vairāk tiek darīts, jo labāks tas kļūst! Atbalstiet - Libre, viegla atskaņošana uz Android. + Viegls brīvs, pieejams bezmaksas, straumēšanas atskaņotājs Android ierīcēm. Licences Par un BUJ Trešo pušu licences diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 1c7118aa0..d9cb328b8 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -867,4 +867,7 @@ Importeer abonnementen vanuit een eerder geëxporteerd .json-bestand Exporteer uw abonnementen naar een .json-bestand In augustus 2025 kondigde Google aan dat vanaf september 2026 voor het installeren van apps op gecertificeerde Android-apparaten, inclusief apps die buiten de Play Store zijn geïnstalleerd, een ontwikkelaars­verificatie vereist is. Omdat de ontwikkelaars van NewPipe het niet eens zijn met deze vereiste, zal NewPipe na die datum niet meer werken op gecertificeerde Android-apparaten. + NewPipe stopt met ondersteuning voor Android 5 + NewPipe is afhankelijk van een aantal bibliotheken die geen ondersteuning meer bieden voor Android 5.0 en 5.1. De volgende versie van NewPipe zal daarom alleen werken op apparaten met Android 6 of hoger. Lees meer in het blogbericht. + Blogbericht diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 3cf0405f9..f3efb7db0 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -76,7 +76,7 @@ Naciśnij, aby zobaczyć szczegóły Proszę czekać… Skopiowano do schowka - Zdefiniuj katalog zapisywania później w ustawieniach + Zdefiniuj folder zapisywania później w ustawieniach Awaria aplikacji/interfejsu Rozpocznij Zadanie reCAPTCHA @@ -896,4 +896,7 @@ Zaimportuj subskrypcje z poprzedniego eksportu do .json Wyeksportuj swoje subskrypcje do pliku .json Importuj z poprzedniego eksportu + NewPipe przestaje obsługiwać Androida 5 + Niestety, NewPipe zależy od kilku bibliotek, które przestały obsługiwać Androida 5.0 i 5.1. W związku z tym kolejna wersja NewPipe będzie działać wyłącznie na urządzeniach z Androidem 6 lub nowszym. Czytaj więcej we wpisie na blogu. + Wpis na blogu diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index b454706ed..ac6a55e15 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -884,4 +884,7 @@ Importar inscrições do arquivo .json exportado anterior Exportar inscrições para arquivo .json Importar da exportação anterior + O NewPipe deixará de oferecer suporte ao Android 5 + Infelizmente, o NewPipe depende de algumas bibliotecas que deixaram de oferecer suporte para o Android 5.0 e 5.1. Por isso, a próxima versão do NewPipe só funcionará em dispositivos com Android 6 ou superior, infelizmente. Saiba mais na publicação do blog. + Postagem no blog diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index 10e7f1a3c..b494e990e 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -884,4 +884,7 @@ Importar subscrições do ficheiro .json anteriormente exportado Exportar subscrições para um ficheiro .json Importar da exportação anterior + O NewPipe deixará de apoiar o Android 5 + Infelizmente, o NewPipe depende de algumas bibliotecas que terminaram apoio para o Android 5.0 e 5.1. Por isso, a próxima versão do NewPipe só funcionará em dispositivos com Android 6 ou superior, infelizmente. Saiba mais na publicação do blog. + Postagem no blog diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index 722e74947..1b2f94adc 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -671,8 +671,7 @@ Criar uma notificação de erro Não foi encontrado um gestor de ficheiros apropriado para esta ação. \nPor favor, instale um gestor de ficheiros ou tente desativar \'%s\' nas definições das descargas - Nenhum gestor de ficheiros apropriado foi encontrado para esta ação. -\nPor favor, instale um gestor de ficheiros compatível com SAF (Storage Access Framework) + Nenhum gestor de ficheiros apropriado foi encontrado para esta ação. \nPor favor, instale um gestor de ficheiros compatível com o Storage Access Framework Comentário afixado LeakCanary não disponível Predefinição ExoPlayer @@ -884,4 +883,7 @@ Importar subscrições do ficheiro .json anteriormente exportado Exportar subscrições para um ficheiro .json Importar da exportação anterior + O NewPipe deixará de apoiar o Android 5 + Infelizmente, o NewPipe depende de algumas bibliotecas que terminaram apoio para o Android 5.0 e 5.1. Por isso, a próxima versão do NewPipe só funcionará em dispositivos com Android 6 ou superior, infelizmente. Saiba mais na publicação do blog. + Postagem no blog diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 3babb1454..46526e418 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -9,7 +9,7 @@ Descărcare Căutare Setări - V-ați referit la: %1$s \? + V-ați referit la: „%1$s” ? Distribuiți cu Folosiți un player video extern Folosește un player audio extern @@ -22,7 +22,7 @@ Rezoluție implicită Redați folosind Kodi Aplicația Kore nu a fost găsită. Doriți să o instalați? - Arată opțiunea \"Redați folosind Kodi\" + Arată opțiunea „Redați folosind Kodi” Arată opțiunea de redare a videoclipurilor via player-ului media Kodi Audio Format audio implicit @@ -183,8 +183,8 @@ Cache pentru metadata șters Adaugă următorul stream în coadă automat Continuă coadă de redare (care nu se repetă) prin adăugarea unui flux asemănător - Afișați sfatul \"Țineți apăsat pentru a adăuga\" - Afișați un sfat la apăsarea fundalului sau a butonului popup în videoclipul \"Detalii:\" + Afișați sfatul „Țineți apăsat pentru a adăuga” + Afișați un sfat la apăsarea fundalului sau a butonului popup în videoclipul „Detalii:” Țara implicită pentru conținut Depanare Redă toate @@ -335,7 +335,7 @@ Instanțe PeerTube Durată derulare rapidă înainte/înapoi Gata - Apăsați \"Gata\" după ce ați rezolvat problema + Apăsați „Gata” după ce ați rezolvat problema Raportați pe GitHub Ștergeți cookie-urile pe care NewPipe le stochează atunci când rezolvați un reCAPTCHA Cookie-urile reCAPTCHA au fost șterse @@ -345,10 +345,8 @@ Artiști Albume Melodii - Acest videoclip este restricționat în funcție de vârstă. -\n -\nActivați \"%1$s\" în setări dacă doriți să îl vedeți. - YouTube oferă un \"Mod restricționat\" care ascunde conținutul potențial matur + Acest videoclip este restricționat în funcție de vârstă. \n \nActivați „%1$s” în setări dacă doriți să îl vedeți. + YouTube oferă un „Mod restricționat” care ascunde conținutul potențial matur Activați „Modul restricționat” de pe YouTube Afișați conținut posibil nepotrivit pentru copii, deoarece are o limită de vârstă (cum ar fi 18+) Adresa URL nu a putut fi recunoscută. Deschideți cu o altă aplicație\? @@ -439,7 +437,7 @@ Prestabilită de sistem Limba aplicației Alegeți o instanță - \"Storage Access Framework\" permite descărcări pe un card SD extern + „Storage Access Framework” permite descărcări pe un card SD extern Utilizați selectorul de dosare de sistem (SAF) Veți fi întrebat unde să salvați fiecare descărcare. \nActivați selectorul de foldere de sistem (SAF) dacă doriți să descărcați pe un card SD extern @@ -526,21 +524,8 @@ \n \nContinuați\? ID-ul dvs., soundcloud.com/yourid - Importați un profil SoundCloud introducând fie URL-ul, fie ID-ul dvs: -\n -\n1. Activați \"modul desktop\" într-un browser web (site-ul nu este disponibil pentru dispozitive mobile) -\n2. Mergeți la acest URL: %1$s -\n3. Conectați-vă atunci când vi se cere -\n4. Copiați URL-ul profilului la care ați fost redirecționat. - Importați abonamentele YouTube din Google takeout: -\n -\n1. Mergeți la această adresă URL: %1$s -\n2. Autentificați-vă atunci când vi se cere -\n3. Faceți clic pe \"Toate datele incluse\", apoi pe \"Deselectați totul\", apoi selectați doar \"Abonamente\" și faceți clic pe \"OK\" -\n4. Faceți clic pe \"Pasul următor\" și apoi pe \"Creați exportul\" -\n5. Faceți clic pe butonul \"Descărcare\" după ce acesta apare -\n6. Faceți clic pe IMPORT FIȘIER de mai jos și selectați fișierul .zip descărcat -\n7. [În cazul în care importul .zip eșuează] Extrageți fișierul .csv (de obicei sub \"YouTube and YouTube Music/subscriptions/subscriptions.csv\"), faceți clic pe IMPORT FIȘIER de mai jos și selectați fișierul csv extras + Importați un profil SoundCloud introducând fie URL-ul, fie ID-ul dvs: \n \n1. Activați „modul desktop” într-un browser web (site-ul nu este disponibil pentru dispozitive mobile) \n2. Mergeți la acest URL: %1$s \n3. Conectați-vă atunci când vi se cere \n4. Copiați URL-ul profilului la care ați fost redirecționat. + Importați abonamentele YouTube din Google takeout: \n \n1. Mergeți la această adresă URL: %1$s \n2. Autentificați-vă atunci când vi se cere \n3. Faceți clic pe „Toate datele incluse”, apoi pe „Deselectați totul”, apoi selectați doar „Abonamente” și faceți clic pe „OK” \n4. Faceți clic pe „Pasul următor” și apoi pe „Creați exportul” \n5. Faceți clic pe butonul „Descărcare” după ce acesta apare \n6. Faceți clic pe IMPORT FIȘIER de mai jos și selectați fișierul .zip descărcat \n7. [În cazul în care importul .zip eșuează] Extrageți fișierul .csv (de obicei sub „YouTube and YouTube Music/subscriptions/subscriptions.csv”), faceți clic pe IMPORT FIȘIER de mai jos și selectați fișierul csv extras Textele originale din servicii vor fi vizibile în elementele de flux Raportați erori în afara ciclului de viață Afișați scurgeri de memorie @@ -628,9 +613,9 @@ Contul autorului a fost închis. \nNewPipe nu va mai putea încărca acest flux în viitor. \nDoriți să vă dezabonați de la acest canal\? - Nu s-a putut încărca fluxul pentru \"%s\". + Nu s-a putut încărca fluxul pentru „%s”. Eroare la încărcarea fluxului - Începând cu Android 10, este acceptat doar \"Storage Access Framework\" + Începând cu Android 10, este acceptat doar „Storage Access Framework” Veți fi întrebat unde să salvați fiecare descărcare S-a șters %1$s descărcare @@ -658,7 +643,7 @@ Procesarea.. Poate dura un moment Verifică dacă există actualizări Verifică manual dacă există versiuni noi - Comentariu lipit + Comentariu fixat Notificare cu raport de eroare Afișează opțiunea de a întrerupe atunci când utilizați playerul A apărut o eroare, consultați notificarea @@ -666,7 +651,7 @@ Se verifică actualizări… Notificări pentru a raporta erori Creați o notificare de eroare - Afișează \"Dați crash playerului\" + Afișează „Dați crash playerului” Afișați o eroare de tip snackbar Elemente noi în flux Notificarea player-ului @@ -846,7 +831,7 @@ Soluție Detalii Acest conținut nu este disponibil pentru țara de conținut selectată în prezent.\n\nModificați selecția din „Setări > Conținut > Țara implicită pentru conținut”. - %1$s a refuzat să furnizeze datele, solicitând autentificarea pentru a confirma că solicitantul nu este un bot.\n\nEste posibil ca adresa dvs. IP să fi fost blocată temporar de %1$s; puteți aștepta puțin sau puteți trece la o altă adresă IP (de exemplu, activând/dezactivând un VPN sau trecând de la Wi-Fi la date mobile).\n\nVă rugăm să consultați această intrare din secțiunea de întrebări frecvente pentru mai multe informații. + %1$s a refuzat să furnizeze datele, cerând autentificarea pentru a confirma că solicitantul nu este un bot.\n\nEste posibil ca adresa dvs. IP să fi fost blocată temporar de %1$s; puteți aștepta puțin sau puteți trece la o altă adresă IP (de exemplu, activând/dezactivând un VPN sau trecând de la Wi-Fi la date mobile).\n\nVă rugăm să consultați această intrare din secțiunea de întrebări frecvente pentru mai multe informații. S-a primit eroarea HTTP 403 de la server în timpul redării, probabil din cauza unei restricții de IP sau a unor probleme legate de dezobfuscarea adresei URL de flux S-a primit eroarea HTTP %1$s de la server în timpul redării S-a primit eroarea HTTP 403 de la server în timpul redării, probabil din cauza expirării adresei URL de flux sau a blocării adresei IP @@ -881,4 +866,7 @@ Exportați abonamentele într-un fișier .json Importați dintr-un export anterior Cont închis.\n\n%1$s oferă acest motiv: %2$s + NewPipe nu va mai fi compatibil cu Android 5 + Postare blog + Din păcate, NewPipe depinde de câteva biblioteci care nu mai sunt compatibile cu Android 5.0 și 5.1. Prin urmare, următoarea versiune a NewPipe va funcționa doar pe dispozitive cu Android 6 sau o versiune ulterioară. Aflați mai multe în articolul de pe blog. diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 56ecc320f..07ffb26d5 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -892,4 +892,7 @@ Импорт подписок из предыдущего экспорта .json Экспорт ваших подписок в .json файл Импорт из предыдущего экспорта + NewPipe прекращает поддержку Android 5 + К сожалению, NewPipe зависит от нескольких библиотек, которые прекратили поддерживать Android 5.0 и 5.1. Таким образом, к сожалению следующий выпуск NewPipe будет работать только на устройствах с Android 6 или выше. Подробности в посте в блоге. + Пост в блоге diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml index 0e3854ea4..ec561ac08 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -888,4 +888,7 @@ Import odberov z predchádzajúceho exportu .json Export vašich odberov do súboru .json Importovať z predchádzajúceho exportu + NewPipe ukončuje podporu pre Android 5 + NewPipe je bohužiaľ závislý od niekoľkých knižníc, ktoré ukončili podporu pre Android 5.0 a 5.1. Ďalšia verzia NewPipe bude preto, žiaľ, fungovať len na zariadeniach s Androidom 6 alebo novším. Viac informácií nájdete v blogovom príspevku. + Blogový príspevok diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 6eb49e6a1..5df2df549 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -867,4 +867,7 @@ Abonelikleri önceki dışarı aktarmadaki .json dosyası ile içeri aktar Aboneliklerini bir .json dosyasında dışarı aktar Önceki dışarı aktarmadan içe aktar + NewPipe, Android 5 desteğini bırakıyor + NewPipe ne yazık ki Android 5.0 ve 5.1 desteğini bırakan birkaç kitaplığa bağlıdır. Üzücü ki sıradaki NewPipe sürümü yalnızca Android 6 ve üstü aygıtlarda çalışacaktır. Daha çoğunu blog gönderisinde okuyun. + Blog gönderisi diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 881829c90..79912cf00 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -850,4 +850,7 @@ 从之前的 .json 导出文件导入订阅 导出订阅到 .json 文件 从之前的导出文件导入 + NewPipe 正放弃对 Android 5 的支持 + NewPipe 依赖几个已经不支持 Android 5 和 5.1 的库文件。下个 NewPipe 版本因此会只在 Android 6 或更高版本上工作。阅读博客文章了解更多信息。 + 博客文章 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 420cfc574..7e00234ca 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -544,7 +544,7 @@ 關閉以隱藏影片說明及其他附帶資訊 顯示說明 以……開啟 - 您裝置上沒有應用程式可以打開這個 + 您的裝置上沒有應用程式可以開啟這個 應用程式當機 此內容僅對已付費的內容可用,因此無法由 NewPipe 串流或下載。 此影片僅供 YouTube Music Premium 會員使用,因此無法由 NewPipe 串流或下載。 @@ -830,4 +830,7 @@ 匯出您的訂閱至 .json 檔案 從先前匯出的 .json 匯入訂閱 從先前的匯出檔案匯入 + NewPipe 即將停止支援 Android 5 + 部落格文章 + 不幸的是,NewPipe 依賴的一些函式庫已停止支援 Android 5.0 和 5.1。因此,下一個版本的 NewPipe 將只能在 Android 6 或更高版本的裝置上運作,非常遺憾。更多資訊請參閱部落格文章。 diff --git a/fastlane/metadata/android/cs/changelogs/1011.txt b/fastlane/metadata/android/cs/changelogs/1011.txt new file mode 100644 index 000000000..b5a3eda6e --- /dev/null +++ b/fastlane/metadata/android/cs/changelogs/1011.txt @@ -0,0 +1 @@ +Přidáno okno informující uživatele, že od verze v0.28.7 nebude podporován Android 5 diff --git a/fastlane/metadata/android/de/changelogs/1011.txt b/fastlane/metadata/android/de/changelogs/1011.txt new file mode 100644 index 000000000..16235b7a6 --- /dev/null +++ b/fastlane/metadata/android/de/changelogs/1011.txt @@ -0,0 +1 @@ +Pop-up hinzugefügt, um die Benutzer darüber zu informieren, dass ab Version 0.28.7 die Unterstützung für Android 5 eingestellt wird diff --git a/fastlane/metadata/android/en_GB/changelogs/1006.txt b/fastlane/metadata/android/en_GB/changelogs/1006.txt new file mode 100644 index 000000000..6cacfb437 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/1006.txt @@ -0,0 +1,17 @@ +# Improved +Keep current player when clicking on timestamps +Try to recover pending download missions when possible +Add option to delete a download without also deleting file +Overlay Permission: display explanatory dialog for Android > R +Support on.soundcloud link opening +A lot of small improvements and optimizations + +# Fixed +Fix short count formatting for Android versions below 7 +Fix ghost notifications +Fixes for SRT subtitle files +Fixed tons of crashes + + +# Development +Internal code modernisation diff --git a/fastlane/metadata/android/en_GB/changelogs/1007.txt b/fastlane/metadata/android/en_GB/changelogs/1007.txt new file mode 100644 index 000000000..cddb61ae5 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/1007.txt @@ -0,0 +1,11 @@ +This hotfix release fixes the "Content not available" error: YouTube videos can now be played again! + +It also fixes a few bugs introduced in 0.28.1: +• Playlist items dragging to only neighbour positions +• Title/comments flickering between current and previous video +• "Start main player in fullscreen" option not working + +Other improvements: +• [YouTube] Allow rewinding livestreams up to 4 hours again +• Don't load livestream video when playing in background +• New UI for "Remove watched" diff --git a/fastlane/metadata/android/en_GB/changelogs/1008.txt b/fastlane/metadata/android/en_GB/changelogs/1008.txt new file mode 100644 index 000000000..9d9441d5f --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/1008.txt @@ -0,0 +1,4 @@ +∙ Fixed resuming streams at the last playback position +∙ [YouTube] Added support for more channel URL formats +∙ [YouTube] Added support for more video metainfo formats +∙ Updated translations diff --git a/fastlane/metadata/android/en_GB/changelogs/1009.txt b/fastlane/metadata/android/en_GB/changelogs/1009.txt new file mode 100644 index 000000000..51cc9896d --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/1009.txt @@ -0,0 +1,14 @@ +Important +Information on and call for action for the Keep Android Open campaign added: https://www.keepandroidopen.org/ + +Improved +[Feed] Shuffle the order outdated subscriptions are updated in +Do not stack comment pages +Do not pass click events to underlying views when clicking on video detail page + +Fixed +Comment replies header layout without avatar image +Multiple player-related UI fixes +[SoundCloud] Fix streams with long IDs + +and more fixes and improvements! diff --git a/fastlane/metadata/android/en_GB/changelogs/1010.txt b/fastlane/metadata/android/en_GB/changelogs/1010.txt new file mode 100644 index 000000000..12e9a6932 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/1010.txt @@ -0,0 +1,9 @@ +Fixed NullPointerException in enqueue actions by using Application Context +[YouTube] Fixed parsing item duration + +Updated translations and removed untranslated locales +Small improvements to Image handling + +Port subscriptions related changes from refactor +Port path related changes from refactor +Update dependencies and Gradle to latest stable release diff --git a/fastlane/metadata/android/en_GB/changelogs/65.txt b/fastlane/metadata/android/en_GB/changelogs/65.txt new file mode 100644 index 000000000..0b9c7320f --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/65.txt @@ -0,0 +1,26 @@ +### Improvements + +- Disable burgermenu icon animation #1486 +- Undo deletion of downloads #1472 +- Download option in share menu #1498 +- Added sharing option to long tap menu #1454 +- Reduce main player to output #1354 +- Updated library version and fixed database backup #1510 +- ExoPlayer 2.8.2 update #1392 + - The playback speed control dialogue has been reworked to support different step sizes for faster speed change. + - Added an option to fast forward during pauses in the playback speed control. This should be useful for audiobooks and certain music genres, and can provide a truly seamless experience (and can break up a song with lots of silences). + - Overhaul of media source resolution to allow metadata to be passed with the media internally in the player, rather than doing it manually. We now have a single source of metadata, which is directly available at the start of playback. + - Fixed remote playlist metadata not being updated when new metadata is available when the playlist fragment is opened. + - Various UI fixes: #1383, background player notification controls are now always white, it is easier to close the popup player by discarding it. +- Use of a new extractor with a redesigned architecture for multiservice. + +### Corrections + +- Fix #1440 Broken video information layout #1491 +- Fixed view history #1497 + - #1495, updating the metadata (thumbnail, title and number of videos) as soon as the user accesses the playlist. + - #1475, by saving a view in the database when the user starts a video on an external player in a detailed fragment. +- Fixed window timeout in popup mode. #1463 (Fixed #640) +- Fixed main video player #1509 + - Fixed repeat mode causing player NPE when a new intent is received while player activity is in background. + - Fixed that reducing the player to a popup does not destroy the player when popup permission is not granted. diff --git a/fastlane/metadata/android/en_GB/changelogs/66.txt b/fastlane/metadata/android/en_GB/changelogs/66.txt new file mode 100644 index 000000000..780388fad --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/66.txt @@ -0,0 +1,33 @@ +# Changelog from v0.13.7 + +#### Fixed +- Fixed sorting filter problems in v0.13.6 + +# Changelog from v0.13.6 + +### Improvements + +- Disable burgermenu icon animation #1486 +- Undo deletion of downloads #1472 +- Download option in share menu #1498 +- Added sharing option to long tap menu #1454 +- Reduce main player to output #1354 +- Updated library version and fixed database backup #1510 +- ExoPlayer 2.8.2 update #1392 + - The playback speed control dialog has been reworked to support different step sizes for faster speed change. + - Added an option to fast forward during pauses in the playback speed control. This should be useful for audiobooks and certain music genres, and can provide a truly seamless experience (and can break up a song with lots of silences). + - Overhaul of media source resolution to allow metadata to be passed with the media internally in the player, rather than doing it manually. We now have a single source of metadata, which is directly available at the start of playback. + - Fixed remote playlist metadata not being updated when new metadata is available when the playlist fragment is opened. + - Various UI fixes: #1383, background player notification controls are now always white, it is easier to close the popup player by discarding it. +- Use of a new extractor with a redesigned architecture for multiservice. + +### Corrections + +- Fix #1440 Broken video information layout #1491 +- Fixed view history #1497 + - #1495, updating the metadata (thumbnail, title and number of videos) as soon as the user accesses the playlist. + - #1475, by saving a view in the database when the user starts a video on an external player in a detailed fragment. +- Fixed window timeout in popup mode. #1463 (Fixed #640) +- Fixed main video player #1509 + - Fixed repeat mode causing player NPE when a new intent is received while player activity is in background. + - Fixed that reducing the player to a popup does not destroy the player when popup permission is not granted. diff --git a/fastlane/metadata/android/en_GB/changelogs/68.txt b/fastlane/metadata/android/en_GB/changelogs/68.txt new file mode 100644 index 000000000..5e45323b4 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/68.txt @@ -0,0 +1,31 @@ +# Changes from v0.14.1 + +### Fixed +- Fixed video url decryption failure #1659 +- Fixed description link not extracting properly #1657 + +# Changes to v0.14.0 + +#### New +- New drawer design #1461 +- New customisable home page #1461 + +### Improvements +- Reworked gesture controls #1604 +- New way to close the popup player #1597 + +### Fix +- Fixed an error when the number of subscriptions is not available. Closes #1649. + - Display of "Subscriber count not available" in these cases. +- Fixed NPE error when a YouTube playlist is empty. +- Quick fix for kiosks in SoundCloud +- Redesign and bugfix #1623 + - Fixed cyclic search result #1562 + - Fixed search bar not being statically laid out + - Fixed YT Premium videos not being blocked correctly + - Fixed videos not always loading (due to DASH analysis) + - Fixed links in the video description + - Display a warning when someone tries to download to an external SD card + - Fixed the "Nothing displayed" exception that triggers a report + - Thumbnail not displayed in background player for android 8.1 [see here] (https://github.com/TeamNewPipe/NewPipe/issues/943) +- Fixed broadcast receiver registration. Closes #1641. diff --git a/fastlane/metadata/android/en_GB/changelogs/69.txt b/fastlane/metadata/android/en_GB/changelogs/69.txt new file mode 100644 index 000000000..84d0553f2 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/69.txt @@ -0,0 +1,19 @@ +### New +- Long-tap delete and share in subscriptions #1516 +- Tablet UI and grid list layout #1617 + +### Improvements +- store and reload the last used aspect ratio #1748 +- Enable linear layout in Downloads activity with full video names #1771 +- Delete and share subscriptions directly from within the subscriptions tab #1516 +- Enqueuing now triggers video playing if the play queue has already ended #1783 +- Separate settings for volume and brightness gestures #1644 +- Add support for Localisation #1792 + +### Fixes +- Fix time parsing for . format, so NewPipe can be used in Finland +- Fix subscription count +- Add foreground service permission for API 28+ devices #1830 + +### Known Bugs +- Playback state can not be saved on Android P diff --git a/fastlane/metadata/android/en_GB/changelogs/70.txt b/fastlane/metadata/android/en_GB/changelogs/70.txt new file mode 100644 index 000000000..103aac827 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/70.txt @@ -0,0 +1,25 @@ +WARNING: This version is probably a bugfest, just like the last one. However, due to the complete shutdown of the application since the 17th, a faulty version is better than no version at all. Isn't it? ¯\_(ツ)_/¯ + +### Improvements +* downloaded files can now be opened with a single click #1879 +* support for Android 4.1 - 4.3 removed #1884 +* remove old player #1884 +* remove streams from current play queue by dragging to the right #1915 +* remove automatically queued stream when a new stream is manually queued #1878 +* Post-processing for downloads and implementation of missing features #1759 by @kapodamy + * Post-processing infrastructure + * Error handling infrastructure (for the uploader) + * Queuing instead of multiple downloads + * Move serialised pending downloads (`.giga` files) to application data + * Implement maximum repetition of downloads + * Pause multi-threaded downloads + * Stop downloads when switching to the mobile network (never works, see 2nd point) + * Save the number of threads for future downloads + * Many inconsistencies corrected + +#### Fixed +* Fixed crash when default resolution is best and mobile data resolution is limited #1835 +* Fixed pop-up player crash #1874 +* Fixed NPE when opening a player in background #1901 +* Fixed insertion of new streams when auto-queuing is enabled #1878 +* Fixed shuttown decoding problem diff --git a/fastlane/metadata/android/en_GB/changelogs/71.txt b/fastlane/metadata/android/en_GB/changelogs/71.txt new file mode 100644 index 000000000..95fbd1ee5 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/71.txt @@ -0,0 +1,10 @@ +### Improvements +* Added an application update notification for the GitHub version (#1608 by @krtkush) +* Various improvements to the downloader (#1944 by @kapodamy): + * added the missing white icons and used a hard-coded method to change the colour of the icons + * check iterator initialisation (fix #2031) + * allows you to retry downloads with the "post-processing failed" error in the new muxer + * new MPEG-4 muxer correcting unsynchronised video and audio streams (#2039) + +### Fix +* YouTube live streams stop playing after a short time (#1996 by @yausername) diff --git a/fastlane/metadata/android/en_GB/changelogs/730.txt b/fastlane/metadata/android/en_GB/changelogs/730.txt new file mode 100644 index 000000000..1921e35e7 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/730.txt @@ -0,0 +1,2 @@ +# Fixed +- Hotfix of the decryption function error. diff --git a/fastlane/metadata/android/en_GB/changelogs/740.txt b/fastlane/metadata/android/en_GB/changelogs/740.txt new file mode 100644 index 000000000..1fb91606a --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/740.txt @@ -0,0 +1,23 @@ +

Improvements

+
    +
  • Make links in comments clickable, increase text size
  • +
  • Click to search for the timestamp of links in comments
  • +
  • Show preferred tab based on recently selected status
  • +
  • Add the playlist to the queue when long-clicking 'Background' in the playlist window
  • +
  • Search for shared text when not a URL
  • +
  • Add the "share now" button to the main video player
  • +
  • Add a close button to the main player when the video queue is complete
  • +
  • Add the "Play directly in background" button to the context menu for video queue items
  • +
  • Improved English translations for Play/Enqueue commands
  • +
  • Small performance improvements
  • +
  • Deleting unused files
  • +
  • Update ExoPlayer to version 2.9.6
  • +
  • Add support for Invidious links
  • +
+

Changed

+
    +
  • fix scrolling with comments and related feeds disabled
  • +
  • correction of CheckForNewAppVersionTask task executed when it shouldn't be
  • +
  • correction of youtube subscriptions import: ignore those with invalid url and keep those with empty title
  • +
  • invalid YouTube url fix: the name of the signature tag is not always "signature", which prevents streams from loading
  • +
diff --git a/fastlane/metadata/android/en_GB/changelogs/750.txt b/fastlane/metadata/android/en_GB/changelogs/750.txt new file mode 100644 index 000000000..39b77f7c3 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/750.txt @@ -0,0 +1,22 @@ +New +Playback resume #2288 +• Resume streams where you stopped last time +Downloader Enhancements #2149 +• Use Storage Access Framework to store downloads on external SD-cards +• New mp4 muxer +• Optionally change the download directory before starting a download +• Respect metered networks + + +Improved +• Removed gema strings #2295 +• Handle (auto)rotation changes during activity lifecycle #2444 +• Make long-press menus consistent #2368 + +Fixed +• Fixed selected subtitle track name not being shown #2394 +• Do not crash when check for app update fails (GitHub version) #2423 +• Fixed downloads stuck at 99.9% #2440 +• Update play queue metadata #2453 +• [SoundCloud] Fixed crash when loading playlists TeamNewPipe/NewPipeExtractor#170 +• [YouTube] Fixed duration can not be paresd TeamNewPipe/NewPipeExtractor#177 diff --git a/fastlane/metadata/android/en_GB/changelogs/760.txt b/fastlane/metadata/android/en_GB/changelogs/760.txt new file mode 100644 index 000000000..bad9ead4c --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/760.txt @@ -0,0 +1,43 @@ +Changes in 0.17.1 + +New +• Thai localisation + + +Improved +• Add start playing here action in long-press menus for playlists again #2518 +• Add switch for SAF / legacy file picker #2521 + +Fixed +• Fix disappearing buttons in downloads view when switching apps #2487 +• Fix playback position is stored although watch history is disabled +• Fix reduced performance caused by playback position in list views #2517 +• [Extractor] Fix ReCaptchaActivity #2527, TeamNewPipe/NewPipeExtractor#186 +• [Extractor] [YouTube] Fix casual search error when playlists are in results TeamNewPipe/NewPipeExtractor#185 + + + +Changes in 0.17.0 + +New +Playback resume #2288 +• Resume streams where you stopped last time +Downloader Enhancements #2149 +• Use Storage Access Framework to store downloads on external SD-cards +• New mp4 muxer +• Optionally change the download directory before starting a download +• Respect metered networks + + +Improved +• Removed gema strings #2295 +• Handle (auto)rotation changes during activity lifecycle #2444 +• Make long-press menus consistent #2368 + +Fixed +• Fixed selected subtitle track name not being shown #2394 +• Do not crash when check for app update fails (GitHub version) #2423 +• Fixed downloads stuck at 99.9% #2440 +• Update play queue metadata #2453 +• [SoundCloud] Fixed crash when loading playlists TeamNewPipe/NewPipeExtractor#170 +• [YouTube] Fixed duration can not be paresd TeamNewPipe/NewPipeExtractor#177 diff --git a/fastlane/metadata/android/en_GB/changelogs/770.txt b/fastlane/metadata/android/en_GB/changelogs/770.txt new file mode 100644 index 000000000..439c6532b --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/770.txt @@ -0,0 +1,4 @@ +Changes in 0.17.2 + +Fix +• Fix no video was available diff --git a/fastlane/metadata/android/en_GB/changelogs/780.txt b/fastlane/metadata/android/en_GB/changelogs/780.txt new file mode 100644 index 000000000..9100d7335 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/780.txt @@ -0,0 +1,12 @@ +Changes in 0.17.3 + +Improved +• Added option to clear playback states #2550 +• Show hidden directories in the file picker #2591 +• Support URLs from `invidio.us` instances to be opened with NewPipe #2488 +• Add support for `music.youtube.com` URLs TeamNewPipe/NewPipeExtractor#194 + +Fixed +• [YouTube] Fixed 'java.lang.IllegalArgumentException #192 +• [YouTube] Fixed live streams not working TeamNewPipe/NewPipeExtractor#195 +• Fixed performance problem in android pie when downloading a stream #2592 diff --git a/fastlane/metadata/android/en_GB/changelogs/790.txt b/fastlane/metadata/android/en_GB/changelogs/790.txt new file mode 100644 index 000000000..e533699be --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/790.txt @@ -0,0 +1,15 @@ +Improved + +• Add more titles to improve accessibility for blind people #2655 +• Make language of download folder setting more consistent and less ambiguous #2637 + +Fixed +• Check if last byte in the block is downloaded #2646 +• Fixed scrolling in video detail fragment #2672 +• Remove double search clear box animations to one #2695 +• [SoundCloud] Fix client_id extraction #2745 + +Development +• Add missing dependencies inherited from NewPipeExtractor into NewPipe #2535 +• Migrate to AndroidX #2685 +• Update to ExoPlayer 2.10.6 #2697, #2736 diff --git a/fastlane/metadata/android/en_GB/changelogs/800.txt b/fastlane/metadata/android/en_GB/changelogs/800.txt new file mode 100644 index 000000000..332b5c994 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/800.txt @@ -0,0 +1,27 @@ +New +• PeerTube support without P2P (#2201) [Beta]: + ◦ Watch and download videos from PeerTube instances + ◦ Add instances in the settings to access the complete PeerTube world + ◦ There might be problems with SSL handshakes on Android 4.4 and 7.1 when accessing certain instances resulting in a network error. + +• Downloader (#2679): + ◦ Calculate download ETA + ◦ Download opus (webm files) as ogg + ◦ Recover expired download links to resume downloads after a long pause + +Improved +• Make the KioskFragment aware of changes in the preferred content country and improve performance of all main tabs #2742 +• Use new Localization and Downloader implementations from extractor #2713 +• Make "Default kiosk" string translatable +• Black navigation bar for black theme #2569 + +Fixed +• Fixed a bug that could not move the popup player if another finger was placed while moving the popup player #2772 +• Allow playlists missing an uploader and fix crashes related to this problem #2724, TeamNewPipe/NewPipeExtractor#219 +• Enabling TLS1.1/1.2 on Android 4.4 devices (API 19/KitKat) to fix TLS handshake with MediaCCC and some PeerTube instances #2792 +• [SoundCloud] Fixed client_id extraction TeamNewPipe/NewPipeExtractor#217 +• [SoundCloud] Fix audio stream extraction + +Development +• Update ExoPlayer to 2.10.8 #2791, #2816 +• Update Gradle to 3.5.1 and add Kotlin support #2714 diff --git a/fastlane/metadata/android/en_GB/changelogs/810.txt b/fastlane/metadata/android/en_GB/changelogs/810.txt new file mode 100644 index 000000000..c75855fd1 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/810.txt @@ -0,0 +1,19 @@ +New +• Show video thumbnail on the lock screen when playing in the background + +Improved +• Add local playlist to queue when long pressing on background / popup button +• Make main page tabs scrollable and hide when there is only a single tab +• Limit amount of notification thumbnail updates in background player +• Add dummy thumbnail for empty local playlists +• Use *.opus file extension instead of *.webm and show "opus" in format label instead of "WebM Opus" in the download dropdown +• Add button to delete downloaded files or download history in "Downloads" +• [YouTube] Add support to /c/shortened_url channel links + +Fixed +• Fixed multiple issues when sharing a video to NewPipe and downloading its streams directly +• Fixed player access out of its creation thread +• Fixed search result paging +• [YouTube] Fixed switching on null causing NPE +• [YouTube] Fixed viewing comments when opening an invidio.us url +• [SoundCloud] Updated client_id diff --git a/fastlane/metadata/android/en_GB/changelogs/820.txt b/fastlane/metadata/android/en_GB/changelogs/820.txt new file mode 100644 index 000000000..b2bcac49f --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/820.txt @@ -0,0 +1 @@ +Correction of the decryption function called regex, which rendered YouTube unusable. diff --git a/fastlane/metadata/android/en_GB/changelogs/830.txt b/fastlane/metadata/android/en_GB/changelogs/830.txt new file mode 100644 index 000000000..c9876f338 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/830.txt @@ -0,0 +1 @@ +Updated SoundCloud client_id to fix SoundCloud issues. diff --git a/fastlane/metadata/android/en_GB/changelogs/840.txt b/fastlane/metadata/android/en_GB/changelogs/840.txt new file mode 100644 index 000000000..72dd519de --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/840.txt @@ -0,0 +1,22 @@ +New +• Added language selector to change the app language +• Added send to Kodi button to player collapsible menu +• Added ability to copy comments on long press + +Improved +• Fix ReCaptcha activity and correctly save obtained cookies +• Removed dot-menu in favour of drawer and hide history button when watch history is not enabled in settings +• Ask for display over other apps permission in settings correctly on Android 6 and later +• Rename local playlist by long-clicking in BookmarkFragment +• Various PeerTube improvements +• Improved several English source strings + +Fixed +• Fixed player starting again although it is paused when option "minimise on app switch" enabled and NewPipe is minimised +• Fix initial brightness value for gesture +• Fixed .srt subtitle downloads containing not all line breaks +• Fixed download to SD card failing because some Android 5 devices are not CTF compliant +• Fixed downloading on Android KitKat +• Fixed corrupt video .mp4 file being recognised as audio file +• Fixed multiple localisation problems, including wrong Chinese language codes +• [YouTube] Timestamps in description are clickable again diff --git a/fastlane/metadata/android/en_GB/changelogs/850.txt b/fastlane/metadata/android/en_GB/changelogs/850.txt new file mode 100644 index 000000000..631c8c119 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/850.txt @@ -0,0 +1 @@ +In this release, the YouTube website version was updated. The old website version is going to be discontinued in March, so you are required to upgrade NewPipe. diff --git a/fastlane/metadata/android/en_GB/changelogs/860.txt b/fastlane/metadata/android/en_GB/changelogs/860.txt new file mode 100644 index 000000000..17e8c5df9 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/860.txt @@ -0,0 +1,7 @@ +Improved +• Save and restore whether pitch and tempo are unhooked or not +• Support display cutout in player +• Round view and subscriber count +• Optimised YouTube to use less data + +More than 15 YouTube-related bugs were fixed in this release. diff --git a/fastlane/metadata/android/en_GB/changelogs/870.txt b/fastlane/metadata/android/en_GB/changelogs/870.txt new file mode 100644 index 000000000..4d9da9190 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/870.txt @@ -0,0 +1,2 @@ +This is a hotfix release updating NewPipe to allow using SoundCloud without major hassles again. +SoundCloud's v2 API is used in the extractor now and the detection of invalid client IDs has been improved. diff --git a/fastlane/metadata/android/en_GB/changelogs/900.txt b/fastlane/metadata/android/en_GB/changelogs/900.txt new file mode 100644 index 000000000..d6f2bfd2f --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/900.txt @@ -0,0 +1,14 @@ +New +• Subscription groups and sorted feeds +• Mute button in players + +Improved +• Allow opening music.youtube.com and media.ccc.de links in NewPipe +• Relocate two settings from Appearance to Content +• Hide 5, 15, 25 second seek options if inexact seek is enabled + +Fixed +• some WebM videos are not seekable +• database backup on Android P +• crash when sharing a downloaded file +• tons of YouTube extraction issue and more… diff --git a/fastlane/metadata/android/en_GB/changelogs/910.txt b/fastlane/metadata/android/en_GB/changelogs/910.txt new file mode 100644 index 000000000..ac2755ece --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/910.txt @@ -0,0 +1 @@ +Fixed database migration which prevented NewPipe from starting in some rare cases. diff --git a/fastlane/metadata/android/en_GB/changelogs/920.txt b/fastlane/metadata/android/en_GB/changelogs/920.txt new file mode 100644 index 000000000..1484a6bd0 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/920.txt @@ -0,0 +1,9 @@ +Improved + +• Added upload date and view count on stream grid items +• Improvements for the drawer header layout + +Fixed + +• Fixed mute button causing crashes on API 19 +• Fixed downloading of long 1080p 60fps videos diff --git a/fastlane/metadata/android/en_GB/changelogs/930.txt b/fastlane/metadata/android/en_GB/changelogs/930.txt new file mode 100644 index 000000000..af1f25b32 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/930.txt @@ -0,0 +1,19 @@ +New +• Search on YouTube Music +• Basic Android TV support + +Improved +• Added the ability to remove all watched videos from a local playlist +• Show message when content isn't supported yet instead of crashing +• Improved popup player resize with pinch gestures +• Enqueue streams on long press on background and popup buttons in channel +• Improved size handling of the drawer header title + +Fixed +• Fixed age-restricted content setting not working +• Fixed certain kinds of reCAPTCHAs +• Fixed crash when opening bookmarks while playlist is `null` +• Fixed detection of network related exceptions +• Fixed visibility of group sort button in the subscriptions fragment + +and more diff --git a/fastlane/metadata/android/en_GB/changelogs/940.txt b/fastlane/metadata/android/en_GB/changelogs/940.txt new file mode 100644 index 000000000..83ff896ba --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/940.txt @@ -0,0 +1,16 @@ +New +• Add support for SoundCloud comments +• Add YouTube restricted mode setting +• Show PeerTube parent channel details + +Improved +• Show Kore button only for supported services +• Block player gestures that begin at the NavigationBar or StatusBar +• Change retry & subscribe buttons background color based on service color + +Fixed +• Fix download dialogue freeze +• Open in browser button now really opens in browser +• Fix crash on opening videos and "Could not play this stream" + +and more diff --git a/fastlane/metadata/android/en_GB/changelogs/950.txt b/fastlane/metadata/android/en_GB/changelogs/950.txt new file mode 100644 index 000000000..9127de3ef --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/950.txt @@ -0,0 +1,4 @@ +This release brings three small fixes: +• Fixed storage access on Android 10+ +• Fixed opening kiosks +• Fixed duration parsing of long videos diff --git a/fastlane/metadata/android/en_GB/changelogs/951.txt b/fastlane/metadata/android/en_GB/changelogs/951.txt new file mode 100644 index 000000000..8698b7dcd --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/951.txt @@ -0,0 +1,17 @@ +New +• Add search for subscription picker in the feed group dialog +• Add filter to the feed group dialogue to show only ungrouped subscriptions +• Add playlist tab to main page +• Fast forward/rewind in background/pop-up player queue +• Display search suggestion: did you mean & showing result for + +Improved +• Drop writing application metadata in muxed files +• Do not remove failed streams from the queue +• Update status bar color to match toolbar color + +Fixed +• Fixed audio/video desync caused by floating point cumulative errors +• [PeerTube] Handle deleted comments + +and more diff --git a/fastlane/metadata/android/en_GB/changelogs/952.txt b/fastlane/metadata/android/en_GB/changelogs/952.txt new file mode 100644 index 000000000..7cfd07fdc --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/952.txt @@ -0,0 +1,7 @@ +Improved +• Auto-play is available for all services (instead of only for YouTube) + +Fixed +• Fixed related streams by supporting YouTube's new continuations +• Fixed age-restricted YouTube videos +• [Android TV] Fixed lingering focus highlight overlay diff --git a/fastlane/metadata/android/en_GB/changelogs/953.txt b/fastlane/metadata/android/en_GB/changelogs/953.txt new file mode 100644 index 000000000..95428b448 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/953.txt @@ -0,0 +1 @@ +Fix extraction of YouTube's decryption function. diff --git a/fastlane/metadata/android/en_GB/changelogs/954.txt b/fastlane/metadata/android/en_GB/changelogs/954.txt new file mode 100644 index 000000000..fd88eca6b --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/954.txt @@ -0,0 +1,9 @@ +• new application workflow: play videos on detail page, swipe down to minimise player +• MediaStyle notifications: customisable actions in notifications, performance improvements +• basic resizing when using NewPipe as desktop app + +• show dialogue with open options in case of an unsupported URL toast +• improve search suggestion experience when remote ones can't be fetched +• increased default video quality to 720p60 (in-app player) and 480p (pop-up player) + +• tons of bug fixes and more diff --git a/fastlane/metadata/android/en_GB/changelogs/955.txt b/fastlane/metadata/android/en_GB/changelogs/955.txt new file mode 100644 index 000000000..bfbdc7161 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/955.txt @@ -0,0 +1,3 @@ +[YouTube] Fix search for some users +[YouTube] Fix random decryption exceptions +[SoundCloud] URLs that end with a slash are now parsed correctly diff --git a/fastlane/metadata/android/en_GB/changelogs/956.txt b/fastlane/metadata/android/en_GB/changelogs/956.txt new file mode 100644 index 000000000..d7f50ead5 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/956.txt @@ -0,0 +1 @@ +[YouTube] Fixed crash when loading any video diff --git a/fastlane/metadata/android/en_GB/changelogs/957.txt b/fastlane/metadata/android/en_GB/changelogs/957.txt new file mode 100644 index 000000000..70eec14ea --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/957.txt @@ -0,0 +1,10 @@ +• Unify specific enqueue actions into one +• Two finger gesture to close player +• Allow clearing reCAPTCHA cookies +• Option to not colour notification +• Improve how video details are opened to fix infinite buffering, buggy behaviour when sharing to NewPipe and other inconsistencies +• Speed up YouTube videos and fix age-restricted ones +• Fix crash on fast forward/rewind +• Don't rearrange lists by dragging thumbnails +• Always remember popup properties +• Add Santali language diff --git a/fastlane/metadata/android/en_GB/changelogs/958.txt b/fastlane/metadata/android/en_GB/changelogs/958.txt new file mode 100644 index 000000000..e72f8cf6c --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/958.txt @@ -0,0 +1,15 @@ +New and improved: +• Re-added option to hide thumbnail on lock screen +• Pull to refresh feed +• Improved performance when fetching local lists + +Fixed: +• Fixed crash when starting NewPipe after it was removed from RAM +• Fixed crash on startup when there is no internet connection +• Fixed respecting brightness- and volume-gesture settings +• [YouTube] Fixed long playlists + +Other: +• Code cleanup and several internal improvements +• Dependency updates +• Translation updates diff --git a/fastlane/metadata/android/en_GB/changelogs/959.txt b/fastlane/metadata/android/en_GB/changelogs/959.txt new file mode 100644 index 000000000..58a5d4306 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/959.txt @@ -0,0 +1,3 @@ +Fixed endless loop of crashes after opening the error reporter. +Updated list of PeerTube instances which can be opened automatically by NewPipe. +Updated translations. diff --git a/fastlane/metadata/android/en_GB/changelogs/960.txt b/fastlane/metadata/android/en_GB/changelogs/960.txt new file mode 100644 index 000000000..de4309d49 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/960.txt @@ -0,0 +1,4 @@ +• Improved description of export database option in settings. +• Fixed YouTube comments parsing. +• Fixed display name of media.ccc.de service. +• Updated translations. diff --git a/fastlane/metadata/android/en_GB/changelogs/961.txt b/fastlane/metadata/android/en_GB/changelogs/961.txt new file mode 100644 index 000000000..13001246f --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/961.txt @@ -0,0 +1,12 @@ +• [YouTube] Mix support +• [YouTube] Display info about public broadcasters and Covid-19 +• [media.ccc.de] Added recent videos +• Added Somali translation + +• Many internal improvements + +• Fixed sharing videos from within the player +• Fixed blank ReCaptcha webview +• Fixed crash which occurred when removing a stream from a list +• [PeerTube] Fixed related streams +• [YouTube] Fixed YouTube Music search diff --git a/fastlane/metadata/android/en_GB/changelogs/962.txt b/fastlane/metadata/android/en_GB/changelogs/962.txt new file mode 100644 index 000000000..a2f47964b --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/962.txt @@ -0,0 +1,2 @@ +Added "recent" videos to media.ccc.de service. +Added live streams to media.ccc.de service and also live stream support. diff --git a/fastlane/metadata/android/en_GB/changelogs/963.txt b/fastlane/metadata/android/en_GB/changelogs/963.txt new file mode 100644 index 000000000..72be99a97 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/963.txt @@ -0,0 +1 @@ +• [YouTube] Fixed channel continuation diff --git a/fastlane/metadata/android/en_GB/changelogs/964.txt b/fastlane/metadata/android/en_GB/changelogs/964.txt new file mode 100644 index 000000000..d2fa3e5c7 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/964.txt @@ -0,0 +1,8 @@ +• Added support for chapters in player controls +• [PeerTube] Added Sepia search +• Re-added share button in video detail view and moved stream description into the tab layout +• Disable restoring brightness if brightness gesture is disabled +• Added list item to play video on kodi +• Fixed crash when no default browser is set on some devices and improve share dialogues +• Toggle play/pause with hardware space button in fullscreen player +• [media.ccc.de] Various fixes and improvements diff --git a/fastlane/metadata/android/en_GB/changelogs/965.txt b/fastlane/metadata/android/en_GB/changelogs/965.txt new file mode 100644 index 000000000..eaed8c847 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/965.txt @@ -0,0 +1,6 @@ +Fixed crash which occurred when reordering channel groups. +Fixed getting more YouTube videos from channels and playlists. +Fixed getting YouTube comments. +Added support for /watch/, /v/ and /w/ subpaths in YouTube URLs. +Fixed extraction of SoundCloud client id and geo-restricted content. +Added Northern Kurdish localization. diff --git a/fastlane/metadata/android/en_GB/changelogs/966.txt b/fastlane/metadata/android/en_GB/changelogs/966.txt new file mode 100644 index 000000000..b7fdc182f --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/966.txt @@ -0,0 +1,14 @@ +New: +• Add a new service: Bandcamp + +Improved: +• Add an option to have the app follow the device theme +• Prevent some crashes by showing an improved error panel +• Show more information on why content in unavailable +• Hardware space button triggers play/pause +• Show "Download started" toast + +Fixed: +• Fix very small thumbnail in video details while playing in the background +• Fix empty title in minimized player +• Fix last resize mode not being restored correctly diff --git a/fastlane/metadata/android/en_GB/changelogs/967.txt b/fastlane/metadata/android/en_GB/changelogs/967.txt new file mode 100644 index 000000000..e5a8868ca --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/967.txt @@ -0,0 +1 @@ +Fixed YouTube not working properly in the EU. This was caused by a new cookie and privacy consent system which requires NewPipe to set a CONSENT cookie. diff --git a/fastlane/metadata/android/en_GB/changelogs/968.txt b/fastlane/metadata/android/en_GB/changelogs/968.txt new file mode 100644 index 000000000..3972a96c1 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/968.txt @@ -0,0 +1,7 @@ +Added channel details option to long-press menu. +Added functionality to rename Playlist Name from playlist interface. +Allow the user to pause while a video is buffering. +Polished the white theme. +Fixed overlapping fonts when using a larger font size. +Fixed no video on Formuler and Zephier devices. +Fixed various crashes. diff --git a/fastlane/metadata/android/en_GB/changelogs/969.txt b/fastlane/metadata/android/en_GB/changelogs/969.txt new file mode 100644 index 000000000..59b2488e9 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/969.txt @@ -0,0 +1,8 @@ +• Allow installation on external storage +• [Bandcamp] Added support for displaying the first three comments on a stream +• Only show 'download has started' toast when download is started +• Do not set reCaptcha cookie when there is no cookie stored +• [Player] Improve cache performance +• [Player] Fixed player not automatically playing +• Dismiss previous Snackbars when deleting downloads +• Fixed trying to delete object not in list diff --git a/fastlane/metadata/android/en_GB/changelogs/970.txt b/fastlane/metadata/android/en_GB/changelogs/970.txt new file mode 100644 index 000000000..f4ff5fe34 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/970.txt @@ -0,0 +1,11 @@ +New +• Show content metadata (tags, categories, license, ...) below the description +• Added "Show channel details" option in remote (non-local) playlists +• Added "Open in browser" option to long-press menu + +Fixed +• Fixed rotation crash on video detail page +• Fixed "Play with Kodi" button in player always prompts to install Kore +• Fixed and improved setting import and export paths +• [YouTube] Fixed comment like count +And much more diff --git a/fastlane/metadata/android/en_GB/changelogs/971.txt b/fastlane/metadata/android/en_GB/changelogs/971.txt new file mode 100644 index 000000000..8e1a71457 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/971.txt @@ -0,0 +1,3 @@ +Hotfix +• Increase buffer for playback after rebuffer +• Fixed crash on tablets and TVs when clicking on the play-queue icon in the player diff --git a/fastlane/metadata/android/en_GB/changelogs/972.txt b/fastlane/metadata/android/en_GB/changelogs/972.txt new file mode 100644 index 000000000..162f59e10 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/972.txt @@ -0,0 +1,14 @@ +New +Recognise timestamps and hashtags in description +Added manual tablet mode setting +Added ability to hide played items in a feed + +Improved +Support Storage Access Framework properly +Better error handling of unavailable and terminated channels +The Android share sheet for Android 10+ users now shows the content title. +Updated Invidious instances and support Piped links. + +Fixed +[YouTube] Age restricted content +Prevent leaked window Exception when opening choice dialogue diff --git a/fastlane/metadata/android/en_GB/changelogs/973.txt b/fastlane/metadata/android/en_GB/changelogs/973.txt new file mode 100644 index 000000000..f2504b064 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/973.txt @@ -0,0 +1,4 @@ +Hotfix +• Fix thumbnails and titles being trimmed in grid layout, due to a wrong calculation of how many videos can fit in one row +• Fix download dialogue disappearing without doing anything if opened from the share menu +• Update a library related to opening external activities such as the Storage Access Framework file picker diff --git a/fastlane/metadata/android/en_GB/changelogs/974.txt b/fastlane/metadata/android/en_GB/changelogs/974.txt new file mode 100644 index 000000000..e028a5e0b --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/974.txt @@ -0,0 +1,5 @@ +Hotfix +• Fix buffering issues caused by YouTube throttling +• Fix YouTube comments extraction and crashes with disabled comments +• Fix YouTube music search +• Fix PeerTube livestreams diff --git a/fastlane/metadata/android/en_GB/changelogs/975.txt b/fastlane/metadata/android/en_GB/changelogs/975.txt new file mode 100644 index 000000000..826288392 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/975.txt @@ -0,0 +1,17 @@ +New +• Show a thumbnail preview while seeking +• Detect disabled comments +• Allow marking a feed item as watched +• Show comment hearts + +Improved +• Improve metadata and tags layout +• Apply service colour to UI components + +Fixed +• Fix thumbnail in mini player +• Fix endless buffering on duplicate queue items +• Some player fixes like rotation and faster closing +• Fix ReCAPTCHA remaining loaded in background +• Disable clicks while refreshing feed +• Fix some downloader crashes diff --git a/fastlane/metadata/android/en_GB/changelogs/976.txt b/fastlane/metadata/android/en_GB/changelogs/976.txt new file mode 100644 index 000000000..4f868872b --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/976.txt @@ -0,0 +1,10 @@ +• Added option to directly open player in fullscreen +• Allow choosing which types of search suggestions to show +• Dark theme now darker + dark splash screen added +• Improved file picker to gray out unwanted files +• Fixed importing YouTube subscriptions +• Replaying a stream requires on tap on the replay button again +• Fixed closing audio session +• [Android TV] Fixed long seekbar jumps when using a DPad + +To see further changes, view the changelog (and blog post) from the Links tab below. diff --git a/fastlane/metadata/android/en_GB/changelogs/977.txt b/fastlane/metadata/android/en_GB/changelogs/977.txt new file mode 100644 index 000000000..37d365213 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/977.txt @@ -0,0 +1,10 @@ +• Added a "play next" button to the long press menu +• Added YouTube shorts path prefix to intent filter +• Fixed Settings import +• Swap seekbar position with player buttons in Queue screen +• Various fixes related to MediasessionManager +• Fixed seekbar not completed after video end +• Disabled media tunneling on RealtekATV +• Expanded minimised player buttons clickable area + +To see further changes, view the changelog (and blog post) from the Links tab below. diff --git a/fastlane/metadata/android/en_GB/changelogs/978.txt b/fastlane/metadata/android/en_GB/changelogs/978.txt new file mode 100644 index 000000000..6fc9d23f9 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/978.txt @@ -0,0 +1 @@ +Fixed executing the check for a new NewPipe version. Sometimes, this check was executed too early and lead to an app crash. That should be fixed now. diff --git a/fastlane/metadata/android/en_GB/changelogs/979.txt b/fastlane/metadata/android/en_GB/changelogs/979.txt new file mode 100644 index 000000000..5da4f70fb --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/979.txt @@ -0,0 +1,2 @@ +- Fixed resuming playback +- Improvements to ensure that the service which determines if NewPipe should check for a new version checks is not started in background diff --git a/fastlane/metadata/android/en_GB/changelogs/980.txt b/fastlane/metadata/android/en_GB/changelogs/980.txt new file mode 100644 index 000000000..bd3086c68 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/980.txt @@ -0,0 +1,13 @@ +New +• Added "Add to playlist" option to share menu +• Added support for y2u.be and PeerTube short links + +Improved +• Made Playback-Speed-Controls more compact +• Feed highlights new items now +• "Show watched items" option in the feed is now saved + +Fixed +• Fixed YouTube likes and dislikes extraction +• Fixed automatic replay after returning from the background +And much more diff --git a/fastlane/metadata/android/en_GB/changelogs/981.txt b/fastlane/metadata/android/en_GB/changelogs/981.txt new file mode 100644 index 000000000..9a2230ade --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/981.txt @@ -0,0 +1,2 @@ +Removed MediaParser support to fix failing playback resume after buffering on Android 11+. +Disabled media tunneling on Philips QM16XE to fix playback problems. diff --git a/fastlane/metadata/android/en_GB/changelogs/982.txt b/fastlane/metadata/android/en_GB/changelogs/982.txt new file mode 100644 index 000000000..ab2c0ae0b --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/982.txt @@ -0,0 +1 @@ +Fixed YouTube not playing any stream. diff --git a/fastlane/metadata/android/en_GB/changelogs/983.txt b/fastlane/metadata/android/en_GB/changelogs/983.txt new file mode 100644 index 000000000..efbd0557c --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/983.txt @@ -0,0 +1,9 @@ +Add new double-tap-to-seek UI and behaviour +Make settings searchable +Highlight pinned comments as such +Add open-with-app support for FSFE's PeerTube instance +Add error notifications +Fix replay of first queue item on player change +Wait longer when buffering during livestreams before failing +Fix order of local search results +Fix empty item fields in play queue diff --git a/fastlane/metadata/android/en_GB/changelogs/984.txt b/fastlane/metadata/android/en_GB/changelogs/984.txt new file mode 100644 index 000000000..3b18b4665 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/984.txt @@ -0,0 +1,7 @@ +Load enough initial items in lists to fill the whole screen and to fix scrolling on tablets and TVs +Fix random crashes while scrolling through lists +Have the player fast seek overlay arc go under the system UI +Revert changes to cutouts when playing in multi window, causing the misplaced player regression on some phones +Increase compileSdk from 30 to 31 +Update error reporting library +Refactor some code in the player diff --git a/fastlane/metadata/android/en_GB/changelogs/985.txt b/fastlane/metadata/android/en_GB/changelogs/985.txt new file mode 100644 index 000000000..2f96b8dc5 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/985.txt @@ -0,0 +1 @@ +Fixed YouTube not playing any stream diff --git a/fastlane/metadata/android/en_GB/changelogs/986.txt b/fastlane/metadata/android/en_GB/changelogs/986.txt new file mode 100644 index 000000000..6b34a5b70 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/986.txt @@ -0,0 +1,16 @@ +New +• Notifications for new streams +• Seamless transition between background and video players +• Change pitch by semitones +• Append the main player queue to a playlist + +Improved +• Remember speed/pitch step size +• Mitigate initial long buffering in the video player +• Improve player UI for Android TV +• Confirm before deleting all downloaded files + +Fixed +• Fix media button not hiding player controls +• Fix playback reset on player type change +• Fix rotating the playlist dialogue diff --git a/fastlane/metadata/android/en_GB/changelogs/987.txt b/fastlane/metadata/android/en_GB/changelogs/987.txt new file mode 100644 index 000000000..ab809eb82 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/987.txt @@ -0,0 +1,12 @@ +New +• Support delivery methods other than progressive HTTP: faster playback loading time, fixes for PeerTube and SoundCloud, playback of recently-ended YouTube livestreams +• Add button to add a remote playlist to a local one +• Image preview in Android 10+ share sheet + +Improved +• Improve playback parameters dialogue +• Move subscription import/export buttons to three-dot menu + +Fixed +• Fix removing fully watched videos from playlist +• Fix share menu theme and "add to playlist" entry diff --git a/fastlane/metadata/android/en_GB/changelogs/988.txt b/fastlane/metadata/android/en_GB/changelogs/988.txt new file mode 100644 index 000000000..c8e502e60 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/988.txt @@ -0,0 +1,2 @@ +[YouTube] Fix "Could not get any stream" error when trying to play any video +[YouTube] Fix "The Following content is not available on this app." message shown instead of the video requested diff --git a/fastlane/metadata/android/en_GB/changelogs/989.txt b/fastlane/metadata/android/en_GB/changelogs/989.txt new file mode 100644 index 000000000..d1330ff8f --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/989.txt @@ -0,0 +1,3 @@ +• [YouTube] Fix infinite loading when trying to play any video +• [YouTube] Fix throttling on some videos +• Upgrade the jsoup library to 1.15.3, which includes a security fix diff --git a/fastlane/metadata/android/en_GB/changelogs/990.txt b/fastlane/metadata/android/en_GB/changelogs/990.txt new file mode 100644 index 000000000..e12c20ba5 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/990.txt @@ -0,0 +1,15 @@ +This release drops support for Android 4.4 KitKat, now the minimum version is Android 5 Lollipop! + +New +• Download from long-press menu +• Hide future videos in feed +• Share local playlists + +Improved +• Refactor the player code into small components: less RAM used, less bugs +• Improve thumbnails' scale mode +• Vector-ize image placeholders + +Fixed +• Fix various issues with the player notification: outdated/missing media info, distorted thumbnail +• Fix fullscreen using 1/4 of screen diff --git a/fastlane/metadata/android/en_GB/changelogs/991.txt b/fastlane/metadata/android/en_GB/changelogs/991.txt new file mode 100644 index 000000000..a06abdc85 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/991.txt @@ -0,0 +1,13 @@ +New +• Add "Open in browser" button in error panel +• Add option to display channel groups as list +• [YouTube] Long-click on stream segments to share timestamp URL +• Add play queue button to mini player + +Improved +• Add Icelandic localisation and updated many other translations +• Many internal improvements + +Fixed +• Fix multiple crashes +• [YouTube] Fix loading channels, non-dedicated feed and workaround playback issues in some countries diff --git a/fastlane/metadata/android/en_GB/changelogs/992.txt b/fastlane/metadata/android/en_GB/changelogs/992.txt new file mode 100644 index 000000000..f03cc3ab8 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/992.txt @@ -0,0 +1,17 @@ +New +• Subscriber count in video details +• Download from the queue +• Permanently set a playlist thumbnail +• Long-press hashtags and links +• Card view mode + +Improved +• Larger mini-player close button +• Smoother thumbnail downscaling +• Target Android 13 (API 33) +• Seeking no longer pauses the player + +Fixed +• Fix overlay on DeX/mouse +• Allow background player with no separate audio streams +• Various YouTube fixes and more… diff --git a/fastlane/metadata/android/en_GB/changelogs/993.txt b/fastlane/metadata/android/en_GB/changelogs/993.txt new file mode 100644 index 000000000..722bc50cf --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/993.txt @@ -0,0 +1,12 @@ +New +• Add warning when adding playlist duplicates and add button to remove them +• Allow ignoring hardware buttons +• Allow hiding partially watched videos in feed + +Improved +• Use more grid columns on big screens +• Make progress indicators consistent with settings + +Fixed +• Fix opening browser URLs, downloads and external players on Android 11+ +• Fix interacting with fullscreen requiring two taps on MIUI diff --git a/fastlane/metadata/android/en_GB/changelogs/994.txt b/fastlane/metadata/android/en_GB/changelogs/994.txt new file mode 100644 index 000000000..ef04dac0c --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/994.txt @@ -0,0 +1,15 @@ +New +• Support multiple audio tracks/languages +• Allow setting volume and brightness gestures on any side of the screen +• Support for displaying main-tabs at the bottom of the screen + +Improved +• [Bandcamp] Handle tracks behind pay wall + +Fixed +• [YouTube] 403 HTTP errors for streams +• Black player when switching to main player from playlist view +• Player service memory leak +• [PeerTube] Uploader and subchannel avatars were swapped + +and more diff --git a/fastlane/metadata/android/en_GB/changelogs/995.txt b/fastlane/metadata/android/en_GB/changelogs/995.txt new file mode 100644 index 000000000..45f55c2ff --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/995.txt @@ -0,0 +1,16 @@ +New +• Support channel tabs +• Select image quality +• Get URLs to all images + +Improved +• Accessibility of player interfaces +• Better audio selection for video-only downloads +• Option to include playlist and video names to shared playlist content + +Fixed +• [YouTube] Fix getting like count +• Fix player not responding popups and crashes +• Selection of wrong languages in language picker +• Player audio focus was not respecting mute +• Playlist item addition occasionally not working diff --git a/fastlane/metadata/android/en_GB/changelogs/996.txt b/fastlane/metadata/android/en_GB/changelogs/996.txt new file mode 100644 index 000000000..8e5af53a4 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/996.txt @@ -0,0 +1,2 @@ +Fixed a NullPointerException when opening a channel / conference in media.ccc.de. +The Grinch tried to break our Christmas gift to you, but we fixed it. diff --git a/fastlane/metadata/android/en_GB/changelogs/997.txt b/fastlane/metadata/android/en_GB/changelogs/997.txt new file mode 100644 index 000000000..da946bd89 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/997.txt @@ -0,0 +1,17 @@ +New +• Add comment replies +• Allow reordering playlists +• Show playlist description and duration +• Allow resetting settings + +Improved +• [Android 13+] Restore custom notification actions +• Request consent for update check +• Allow notification play/pause while buffering +• Reorder some settings + +Fixed +• [YouTube] Fix comments not loading, plus other fixes and improvements +• Solve vulnerability in settings import and switch to JSON +• Various download fixes +• Trim search text diff --git a/fastlane/metadata/android/en_GB/changelogs/998.txt b/fastlane/metadata/android/en_GB/changelogs/998.txt new file mode 100644 index 000000000..468df0204 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/998.txt @@ -0,0 +1,4 @@ +Fixed YouTube not playing any stream because of HTTP 403 errors. + +Occasional HTTP 403 errors in the middle of a YouTube video are not fixed yet. +That issue will be addressed in another hotfix release as soon as possible. diff --git a/fastlane/metadata/android/en_GB/changelogs/999.txt b/fastlane/metadata/android/en_GB/changelogs/999.txt new file mode 100644 index 000000000..c089ed197 --- /dev/null +++ b/fastlane/metadata/android/en_GB/changelogs/999.txt @@ -0,0 +1,12 @@ +This hotfix release fixes HTTP 403 errors in the middle of YouTube videos. + +New +• [SoundCloud] Add support for on.soundcloud.com URLs + +Improved +• [Bandcamp] Show additional info in radio kiosk + +Fixed +• [YouTube] Fix occasional HTTP 403 errors at the beginning or in the middle of videos +• [YouTube] Extract avatar and banner from more channel header types +• [Bandcamp] Fix various bugs and always use HTTPS diff --git a/fastlane/metadata/android/es/changelogs/1005.txt b/fastlane/metadata/android/es/changelogs/1005.txt index 64e8353d4..2c142d6e3 100644 --- a/fastlane/metadata/android/es/changelogs/1005.txt +++ b/fastlane/metadata/android/es/changelogs/1005.txt @@ -1,5 +1,5 @@ Nuevo -Añadido soporte a Android Auto +Añadido soporte a Android Auto Pemitir configurar grupos de feeds como pestaña en la pantalla principal [YouTube] Compartir como playlist temporal [SoundCloud] Pestaña de likes en el canal @@ -10,8 +10,8 @@ Mostrar la fecha de descargas en Descargas Usar el idioma por aplicacion en Android 13 Arreglos -Arreglado texto de colores rotos en el modo oscuro -[YouTube] Solucionado el problema que las playlist con mas de 100 elementos no cargaban -[YouTube] Solucionado problema de no mostrar los videos recomendados +Arreglado el texto de colores rotos en el modo oscuro +[YouTube] Solucionado el problema que las playlist con más de 100 elementos no cargaban +[YouTube] Solucionado el problema de no mostrar los videos recomendados Solucionado cierres inesperados en vista de listas en Historial Arreglado marcas de tiempo en respuestas de comentarios diff --git a/fastlane/metadata/android/es/changelogs/1008.txt b/fastlane/metadata/android/es/changelogs/1008.txt new file mode 100644 index 000000000..71a9f8938 --- /dev/null +++ b/fastlane/metadata/android/es/changelogs/1008.txt @@ -0,0 +1,4 @@ +∙ Arreglados los streams resumidos en la última posición de reproducción +∙ [YouTube] Añadido el soporte para más formatos de URL de canales +∙ [YouTube] Añadido el soporte para más formatos de metainformación de video +∙ Actualizadas las traducciones diff --git a/fastlane/metadata/android/fr/changelogs/1011.txt b/fastlane/metadata/android/fr/changelogs/1011.txt new file mode 100644 index 000000000..d28124d98 --- /dev/null +++ b/fastlane/metadata/android/fr/changelogs/1011.txt @@ -0,0 +1 @@ +Ajouter une fenêtre contextuelle pour informer les utilisateurs que la version 0.28.7 ne prendra plus en charge Android 5 diff --git a/fastlane/metadata/android/zh-Hans/changelogs/1011.txt b/fastlane/metadata/android/zh-Hans/changelogs/1011.txt new file mode 100644 index 000000000..d6c595b35 --- /dev/null +++ b/fastlane/metadata/android/zh-Hans/changelogs/1011.txt @@ -0,0 +1 @@ +添加弹窗通知用户 0.28.7 版将放弃支持 Android 5 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1000.txt b/fastlane/metadata/android/zh-Hant/changelogs/1000.txt index c08ff0971..acc88e3f0 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/1000.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/1000.txt @@ -1,11 +1,11 @@ -改善 -• 讓播放清單描述可點擊以顯示更多或更少的內容 -• [PeerTube] 自動處理 `subscribeto.me` 站台連結 -• 在歷史畫面中只開始播放單一項目 +改進 +• 使播放清單描述可點擊以顯示更多/更少的內容 +• [PeerTube] 自動處理 `subscribeto.me` 實例連結 +• 在歷史紀錄畫面中只開始播放單一項目 修正 -• 修正 RSS 按鈕的能鍵度 -• 修正進度列預覽當機的問題 +• 修正 RSS 按鈕可見性 +• 修正進度條預覽當機的問題 • 修正播放清單中沒有縮圖的項目 • 修正在下載對話框出現前退出的問題 • 修正相關項目清單排序彈出 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1001.txt b/fastlane/metadata/android/zh-Hant/changelogs/1001.txt index 033b9460e..0cf9c5d86 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/1001.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/1001.txt @@ -1,6 +1,6 @@ 改進 -• 一直允許在Android 13以上的裝置更改通知欄播放器 +• 在 Android 13 以上版本中,始終允許變更播放器通知偏好設定 修正 -• 修復匯出資料庫/訂閱不會截斷已存在的文件,可能導致匯出損壞的問題 -• 修正點擊時間戳記時播放器從頭開始撥放的問題 +• 修正匯出資料庫/訂閱時,未截斷現存檔案,可能導致匯出損毀的問題 +• 修正點擊時間戳時播放器會從開頭重新播放的問題 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1002.txt b/fastlane/metadata/android/zh-Hant/changelogs/1002.txt index 4e8bf6537..d9bcde06f 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/1002.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/1002.txt @@ -1 +1,4 @@ -修正 YouTube 無法播放任何串流 +修正 YouTube 無法播放任何串流的問題。 + +此版本僅處理導致 YouTube 影片詳細資訊無法載入的最緊急錯誤。 +我們已知仍存在其他問題,並將很快推出另一個版本來解決它們。 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1003.txt b/fastlane/metadata/android/zh-Hant/changelogs/1003.txt index 4e8bf6537..156c9aa70 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/1003.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/1003.txt @@ -1 +1,6 @@ -修正 YouTube 無法播放任何串流 +這是一個修正 YouTube 錯誤的緊急修正版本: +• [YouTube] 修正無法載入任何影片資訊的問題、修正播放影片時出現的 HTTP 403 錯誤並恢復部分年齡限制影片的播放 +• 修正字幕大小無法變更的問題 +• 修正開啟串流時重複下載資訊的問題 +• [SoundCloud] 移除無法播放的 DRM 保護串流 +• 更新了翻譯 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1004.txt b/fastlane/metadata/android/zh-Hant/changelogs/1004.txt index 4e8bf6537..c61e1cf9b 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/1004.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/1004.txt @@ -1 +1,3 @@ -修正 YouTube 無法播放任何串流 +此版本修正 YouTube 僅提供 360p 串流的問題。 + +請注意,此版本所採用的解決方案可能只是暫時性的,從長遠來看仍需實作 SABR 影片協定,但目前 TeamNewPipe 成員都相當忙碌,因此非常歡迎任何協助! https://github.com/TeamNewPipe/NewPipe/issues/12248 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/981.txt b/fastlane/metadata/android/zh-Hant/changelogs/981.txt index cf0bd8588..2fa3bbd23 100644 --- a/fastlane/metadata/android/zh-Hant/changelogs/981.txt +++ b/fastlane/metadata/android/zh-Hant/changelogs/981.txt @@ -1,2 +1,2 @@ 移除了對MediaParser的支持,以解決在Android 11+上緩衝後恢復播放失敗的問題。 -在Philips QM16XE上禁用了媒體隧道,以解決播放問題。 +在Philips QM16XE上停用了媒體隧道,以解決播放問題。 From ef85e567fbd231ac5cd5f9d132c4201d455de6d3 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Sat, 16 May 2026 09:20:30 +0200 Subject: [PATCH 070/127] Update NewPIpe Extractor to the latest version --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index ba23ab292..365d439a5 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -60,7 +60,7 @@ teamnewpipe-nanojson = "e9d656ddb49a412a5a0a5d5ef20ca7ef09549996" # the corresponding commit hash, since JitPack sometimes deletes artifacts. # If there’s already a git hash, just add more of it to the end (or remove a letter) # to cause jitpack to regenerate the artifact. -teamnewpipe-newpipe-extractor = "1512cf3222b0c5d87a249e6ac231b98090c42623" +teamnewpipe-newpipe-extractor = "b33c151ea844068bf663ed766c81356f57bbc173" viewpager2 = "1.1.0" webkit = "1.15.0" work = "2.11.2" From cc74ac8ce85d46fae4518d9e15ae0b9484145da0 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Wed, 7 Jan 2026 12:45:46 +0800 Subject: [PATCH 071/127] Initial support for compose multiplatform Signed-off-by: Aayush Gupta --- .gitignore | 15 +- build.gradle.kts | 6 + desktopApp/build.gradle.kts | 32 ++ .../src/main/kotlin/net/newpipe/app/Main.kt | 18 + gradle/libs.versions.toml | 34 ++ iosApp/Configuration/Config.xcconfig | 7 + iosApp/iosApp.xcodeproj/project.pbxproj | 373 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 36 ++ .../AppIcon.appiconset/app-icon-1024.png | Bin 0 -> 13511 bytes iosApp/iosApp/Assets.xcassets/Contents.json | 6 + iosApp/iosApp/ContentView.swift | 21 + iosApp/iosApp/Info.plist | 8 + .../Preview Assets.xcassets/Contents.json | 6 + iosApp/iosApp/iOSApp.swift | 10 + settings.gradle.kts | 5 +- shared/build.gradle.kts | 117 ++++++ shared/consumer-proguard-rules.pro | 6 + shared/src/androidMain/AndroidManifest.xml | 14 + .../kotlin/net/newpipe/app/ComposeActivity.kt | 25 ++ .../composeResources/values/strings.xml | 8 + .../commonMain/kotlin/net/newpipe/app/App.kt | 22 ++ .../kotlin/net/newpipe/app/di/KoinApp.kt | 14 + .../kotlin/net/newpipe/app/theme/Color.kt | 81 ++++ .../kotlin/net/newpipe/app/theme/Theme.kt | 101 +++++ .../net/newpipe/app/MainViewController.kt | 10 + 27 files changed, 991 insertions(+), 2 deletions(-) create mode 100644 desktopApp/build.gradle.kts create mode 100644 desktopApp/src/main/kotlin/net/newpipe/app/Main.kt create mode 100644 iosApp/Configuration/Config.xcconfig create mode 100644 iosApp/iosApp.xcodeproj/project.pbxproj create mode 100644 iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png create mode 100644 iosApp/iosApp/Assets.xcassets/Contents.json create mode 100644 iosApp/iosApp/ContentView.swift create mode 100644 iosApp/iosApp/Info.plist create mode 100644 iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json create mode 100644 iosApp/iosApp/iOSApp.swift create mode 100644 shared/build.gradle.kts create mode 100644 shared/consumer-proguard-rules.pro create mode 100644 shared/src/androidMain/AndroidManifest.xml create mode 100644 shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt create mode 100644 shared/src/commonMain/composeResources/values/strings.xml create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/App.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/di/KoinApp.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt create mode 100644 shared/src/iosMain/kotlin/net/newpipe/app/MainViewController.kt diff --git a/.gitignore b/.gitignore index 49267a9f0..3d5b6ea66 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,8 @@ .gradle/ local.properties .DS_Store -build/ +**/build/ +!src/**/build/ captures/ .idea/ *.iml @@ -19,3 +20,15 @@ app/release/ bin/ .vscode/ *.code-workspace + +# xcode files +xcuserdata +.externalNativeBuild +.cxx +node_modules/ +*.xcodeproj/* +!*.xcodeproj/project.pbxproj +!*.xcodeproj/xcshareddata/ +!*.xcodeproj/project.xcworkspace/ +!*.xcworkspace/contents.xcworkspacedata +**/xcshareddata/WorkspaceSettings.xcsettings diff --git a/build.gradle.kts b/build.gradle.kts index 53c8a4c42..e3e25c4fa 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,9 +12,15 @@ buildscript { plugins { alias(libs.plugins.android.application) apply false + alias(libs.plugins.android.library) apply false alias(libs.plugins.android.legacy.kapt) apply false alias(libs.plugins.google.ksp) apply false + alias(libs.plugins.jetbrains.kotlin.compose) apply false + alias(libs.plugins.jetbrains.kotlin.jvm) apply false + alias(libs.plugins.jetbrains.kotlin.multiplatform) apply false + alias(libs.plugins.jetbrains.compose.multiplatform) apply false alias(libs.plugins.jetbrains.kotlin.parcelize) apply false alias(libs.plugins.jetbrains.kotlinx.serialization) apply false alias(libs.plugins.sonarqube) apply false + alias(libs.plugins.koin) apply false } diff --git a/desktopApp/build.gradle.kts b/desktopApp/build.gradle.kts new file mode 100644 index 000000000..910d73647 --- /dev/null +++ b/desktopApp/build.gradle.kts @@ -0,0 +1,32 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +import org.jetbrains.compose.desktop.application.dsl.TargetFormat + +plugins { + alias(libs.plugins.jetbrains.kotlin.jvm) + alias(libs.plugins.jetbrains.kotlin.compose) + alias(libs.plugins.jetbrains.compose.multiplatform) +} + +dependencies { + implementation(projects.shared) + + implementation(compose.desktop.currentOs) + implementation(libs.jetbrains.coroutines.swing) + implementation(libs.jetbrains.compose.preview) +} + +compose.desktop { + application { + mainClass = "net.newpipe.app.MainKt" + + nativeDistributions { + targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb) + packageName = "net.newpipe.app" + packageVersion = "1.0.0" + } + } +} diff --git a/desktopApp/src/main/kotlin/net/newpipe/app/Main.kt b/desktopApp/src/main/kotlin/net/newpipe/app/Main.kt new file mode 100644 index 000000000..609ce7289 --- /dev/null +++ b/desktopApp/src/main/kotlin/net/newpipe/app/Main.kt @@ -0,0 +1,18 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app + +import androidx.compose.ui.window.Window +import androidx.compose.ui.window.application + +/** + * Entry point for compose-related UI components on Desktop + */ +fun main() = application { + Window(onCloseRequest = ::exitApplication, title = "NewPipe") { + App() + } +} diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 365d439a5..67eba5cbf 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -5,6 +5,7 @@ [versions] acra = "5.13.1" +activity = "1.13.0" agp = "9.2.1" appcompat = "1.7.1" assertj = "3.27.7" @@ -14,16 +15,21 @@ bridge = "v2.0.2" cardview = "1.0.0" checkstyle = "13.4.2" coil = "3.4.0" +compose = "1.11.1" constraintlayout = "2.2.1" core = "1.18.0" +coroutines = "1.11.0" desugar = "2.1.5" documentfile = "1.1.0" +espresso = "3.7.0" exoplayer = "2.19.1" fragment = "1.8.9" groupie = "2.10.1" jsoup = "1.22.2" junit = "4.13.2" junit-ext = "1.3.0" +koin = "4.2.1" +koin-plugin = "1.0.0-RC2" kotlin = "2.3.21" kotlinx-coroutines-rx3 = "1.11.0" kotlinx-serialization-json = "1.11.0" @@ -34,8 +40,11 @@ lifecycle = "2.10.0" localbroadcastmanager = "1.1.0" markwon = "4.6.2" material = "1.11.0" # TODO: update to newer version after bug is fixed. See https://github.com/TeamNewPipe/NewPipe/pull/13018 +material3 = "1.11.0-alpha07" media = "1.7.1" mockitoCore = "5.23.0" +multiplatform = "1.11.0" +navigation3 = "1.1.1" okhttp = "5.3.2" phoenix = "3.0.0" preference = "1.2.1" @@ -68,8 +77,11 @@ work = "2.11.2" [libraries] acra-core = { module = "ch.acra:acra-core", version.ref = "acra" } android-desugar = { module = "com.android.tools:desugar_jdk_libs_nio", version.ref = "desugar" } +androidx-activity = { module = "androidx.activity:activity-compose", version.ref = "activity" } androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" } androidx-cardview = { module = "androidx.cardview:cardview", version.ref = "cardview" } +androidx-compose-test-ui-junit = { module = "androidx.compose.ui:ui-test-junit4-android", version.ref = "compose" } +androidx-compose-test-ui-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "compose" } androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "constraintlayout" } androidx-core = { module = "androidx.core:core-ktx", version.ref = "core" } androidx-documentfile = { module = "androidx.documentfile:documentfile", version.ref = "documentfile" } @@ -87,6 +99,7 @@ androidx-room-rxjava3 = { module = "androidx.room:room-rxjava3", version.ref = " androidx-room-testing = { module = "androidx.room:room-testing", version.ref = "room" } androidx-runner = { module = "androidx.test:runner", version.ref = "runner" } androidx-swiperefreshlayout = { module = "androidx.swiperefreshlayout:swiperefreshlayout", version.ref = "swiperefreshlayout" } +androidx-test-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "espresso" } androidx-viewpager2 = { module = "androidx.viewpager2:viewpager2", version.ref = "viewpager2" } androidx-webkit = { module = "androidx.webkit:webkit", version.ref = "webkit" } androidx-work-runtime = { module = "androidx.work:work-runtime", version.ref = "work" } @@ -110,8 +123,23 @@ google-exoplayer-smoothstreaming = { module = "com.google.android.exoplayer:exop google-exoplayer-ui = { module = "com.google.android.exoplayer:exoplayer-ui", version.ref = "exoplayer" } jakewharton-phoenix = { module = "com.jakewharton:process-phoenix", version.ref = "phoenix" } jakewharton-rxbinding = { module = "com.jakewharton.rxbinding4:rxbinding", version.ref = "rxbinding" } +jetbrains-compose-foundation = { module = "org.jetbrains.compose.foundation:foundation", version.ref = "multiplatform" } +jetbrains-compose-material3 = { module = "org.jetbrains.compose.material3:material3", version.ref = "material3" } +jetbrains-compose-preview = { module = "org.jetbrains.compose.ui:ui-tooling-preview", version.ref = "multiplatform" } +jetbrains-compose-resources = { module = "org.jetbrains.compose.components:components-resources", version.ref = "multiplatform" } +jetbrains-compose-runtime = { module = "org.jetbrains.compose.runtime:runtime", version.ref = "multiplatform" } +jetbrains-compose-test-ui = { module = "org.jetbrains.compose.ui:ui-test", version.ref = "multiplatform" } +jetbrains-compose-tooling = { module = "org.jetbrains.compose.ui:ui-tooling", version.ref = "multiplatform" } +jetbrains-compose-ui = { module = "org.jetbrains.compose.ui:ui", version.ref = "multiplatform" } +jetbrains-coroutines-swing = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-swing", version.ref = "coroutines" } +jetbrains-lifecycle-navigation3 = { module = "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-navigation3", version.ref = "lifecycle" } +jetbrains-lifecycle-viewmodel = { module = "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "lifecycle" } +jetbrains-navigation3-ui = { module = "org.jetbrains.androidx.navigation3:navigation3-ui", version.ref = "navigation3" } jsoup = { module = "org.jsoup:jsoup", version.ref = "jsoup" } junit = { module = "junit:junit", version.ref = "junit" } +koin-annotations = { module = "io.insert-koin:koin-annotations", version.ref = "koin" } +koin-compose-viewmodel = { module = "io.insert-koin:koin-compose-viewmodel", version.ref = "koin" } +kotlin-test-core = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" } kotlinx-coroutines-rx3 = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-rx3", version.ref = "kotlinx-coroutines-rx3" } kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinx-serialization-json" } lisawray-groupie-core = { module = "com.github.lisawray.groupie:groupie", version.ref = "groupie" } @@ -137,7 +165,13 @@ zacsweers-autoservice-compiler = { module = "dev.zacsweers.autoservice:auto-serv [plugins] android-application = { id = "com.android.application", version.ref = "agp" } android-legacy-kapt = { id = "com.android.legacy-kapt", version.ref = "agp" } # Needed for statesaver +android-library = { id = "com.android.kotlin.multiplatform.library", version.ref = "agp" } google-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } +jetbrains-compose-multiplatform = { id = "org.jetbrains.compose", version.ref = "multiplatform" } +jetbrains-kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" } +jetbrains-kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } +jetbrains-kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } jetbrains-kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" } jetbrains-kotlinx-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } +koin = { id = "io.insert-koin.compiler.plugin", version.ref = "koin-plugin" } sonarqube = { id = "org.sonarqube", version.ref = "sonarqube" } diff --git a/iosApp/Configuration/Config.xcconfig b/iosApp/Configuration/Config.xcconfig new file mode 100644 index 000000000..46d815851 --- /dev/null +++ b/iosApp/Configuration/Config.xcconfig @@ -0,0 +1,7 @@ +TEAM_ID= + +PRODUCT_NAME=NewPipe +PRODUCT_BUNDLE_IDENTIFIER=net.newpipe.app.NewPipe$(TEAM_ID) + +CURRENT_PROJECT_VERSION=1 +MARKETING_VERSION=1.0 \ No newline at end of file diff --git a/iosApp/iosApp.xcodeproj/project.pbxproj b/iosApp/iosApp.xcodeproj/project.pbxproj new file mode 100644 index 000000000..59ffd37b9 --- /dev/null +++ b/iosApp/iosApp.xcodeproj/project.pbxproj @@ -0,0 +1,373 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 77; + objects = { + +/* Begin PBXFileReference section */ + E903CDBEAD6067C2E88D0E13 /* NewPipe.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NewPipe.app; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFileSystemSynchronizedBuildFileExceptionSet section */ + 2D8686880DF217DCF0163629 /* Exceptions for "iosApp" folder in "iosApp" target */ = { + isa = PBXFileSystemSynchronizedBuildFileExceptionSet; + membershipExceptions = ( + Info.plist, + ); + target = CB7D703B7BE102A8C9442815 /* iosApp */; + }; +/* End PBXFileSystemSynchronizedBuildFileExceptionSet section */ + +/* Begin PBXFileSystemSynchronizedRootGroup section */ + ABCCA30A0B282AA0C430F5BD /* iosApp */ = { + isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + 2D8686880DF217DCF0163629 /* Exceptions for "iosApp" folder in "iosApp" target */, + ); + path = iosApp; + sourceTree = ""; + }; + F0463985A41AA4941DD32D9F /* Configuration */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = Configuration; + sourceTree = ""; + }; +/* End PBXFileSystemSynchronizedRootGroup section */ + +/* Begin PBXFrameworksBuildPhase section */ + FDFBDD5BD804F728F46628B8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 6ED4AC48A20C6EE0784AF47A = { + isa = PBXGroup; + children = ( + F0463985A41AA4941DD32D9F /* Configuration */, + ABCCA30A0B282AA0C430F5BD /* iosApp */, + 80BC5A75E8EEBCC3CC64764B /* Products */, + ); + sourceTree = ""; + }; + 80BC5A75E8EEBCC3CC64764B /* Products */ = { + isa = PBXGroup; + children = ( + E903CDBEAD6067C2E88D0E13 /* NewPipe.app */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + CB7D703B7BE102A8C9442815 /* iosApp */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2E1AAB880620FB3FB6B50768 /* Build configuration list for PBXNativeTarget "iosApp" */; + buildPhases = ( + EEF9A261A7B4C71C731372F8 /* Compile Kotlin Framework */, + 388E86B7C80E4C58A395F32A /* Sources */, + FDFBDD5BD804F728F46628B8 /* Frameworks */, + 7B2130143F9C3DD4CB6AF311 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + fileSystemSynchronizedGroups = ( + ABCCA30A0B282AA0C430F5BD /* iosApp */, + ); + name = iosApp; + packageProductDependencies = ( + ); + productName = iosApp; + productReference = E903CDBEAD6067C2E88D0E13 /* NewPipe.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + CE9DC708D8CDDFF57F3EFEE0 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1620; + LastUpgradeCheck = 1620; + TargetAttributes = { + CB7D703B7BE102A8C9442815 = { + CreatedOnToolsVersion = 16.2; + }; + }; + }; + buildConfigurationList = 116B11CF62B79F066B5E8101 /* Build configuration list for PBXProject "iosApp" */; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 6ED4AC48A20C6EE0784AF47A; + minimizedProjectReferenceProxies = 1; + preferredProjectObjectVersion = 77; + productRefGroup = 80BC5A75E8EEBCC3CC64764B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + CB7D703B7BE102A8C9442815 /* iosApp */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 7B2130143F9C3DD4CB6AF311 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + EEF9A261A7B4C71C731372F8 /* Compile Kotlin Framework */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Compile Kotlin Framework"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "if [ \"YES\" = \"$OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED\" ]; then\n echo \"Skipping Gradle build task invocation due to OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED environment variable set to \\\"YES\\\"\"\n exit 0\nfi\ncd \"$SRCROOT/..\"\n./gradlew :composeApp:embedAndSignAppleFrameworkForXcode\n"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 388E86B7C80E4C58A395F32A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 4CF1E65647AFD6A50CE8B9F1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReferenceAnchor = F0463985A41AA4941DD32D9F /* Configuration */; + baseConfigurationReferenceRelativePath = Config.xcconfig; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.2; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 0665CA5FEC66700A6C35B2D1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReferenceAnchor = F0463985A41AA4941DD32D9F /* Configuration */; + baseConfigurationReferenceRelativePath = Config.xcconfig; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.2; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + F4EC259464D79C8283923A63 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = arm64; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\""; + DEVELOPMENT_TEAM = "${TEAM_ID}"; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = iosApp/Info.plist; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 263152656D22EC09900DE6E1 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = arm64; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\""; + DEVELOPMENT_TEAM = "${TEAM_ID}"; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = iosApp/Info.plist; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 116B11CF62B79F066B5E8101 /* Build configuration list for PBXProject "iosApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4CF1E65647AFD6A50CE8B9F1 /* Debug */, + 0665CA5FEC66700A6C35B2D1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2E1AAB880620FB3FB6B50768 /* Build configuration list for PBXNativeTarget "iosApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F4EC259464D79C8283923A63 /* Debug */, + 263152656D22EC09900DE6E1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = CE9DC708D8CDDFF57F3EFEE0 /* Project object */; +} \ No newline at end of file diff --git a/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000..919434a62 --- /dev/null +++ b/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json b/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 000000000..eb8789700 --- /dev/null +++ b/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json b/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 000000000..4e8d485bf --- /dev/null +++ b/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,36 @@ +{ + "images" : [ + { + "filename" : "app-icon-1024.png", + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "tinted" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png b/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png new file mode 100644 index 0000000000000000000000000000000000000000..e143fc22303d3dbe0f202fa848cffa0e9f9ef6f7 GIT binary patch literal 13511 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 literal 0 HcmV?d00001 diff --git a/iosApp/iosApp/Assets.xcassets/Contents.json b/iosApp/iosApp/Assets.xcassets/Contents.json new file mode 100644 index 000000000..73c00596a --- /dev/null +++ b/iosApp/iosApp/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iosApp/iosApp/ContentView.swift b/iosApp/iosApp/ContentView.swift new file mode 100644 index 000000000..5ef00da8d --- /dev/null +++ b/iosApp/iosApp/ContentView.swift @@ -0,0 +1,21 @@ +import UIKit +import SwiftUI +import ComposeApp + +struct ComposeView: UIViewControllerRepresentable { + func makeUIViewController(context: Context) -> UIViewController { + MainViewControllerKt.mainViewController() + } + + func updateUIViewController(_ uiViewController: UIViewController, context: Context) {} +} + +struct ContentView: View { + var body: some View { + ComposeView() + .ignoresSafeArea() + } +} + + + diff --git a/iosApp/iosApp/Info.plist b/iosApp/iosApp/Info.plist new file mode 100644 index 000000000..11845e1da --- /dev/null +++ b/iosApp/iosApp/Info.plist @@ -0,0 +1,8 @@ + + + + + CADisableMinimumFrameDurationOnPhone + + + diff --git a/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json b/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 000000000..73c00596a --- /dev/null +++ b/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iosApp/iosApp/iOSApp.swift b/iosApp/iosApp/iOSApp.swift new file mode 100644 index 000000000..d83dca611 --- /dev/null +++ b/iosApp/iosApp/iOSApp.swift @@ -0,0 +1,10 @@ +import SwiftUI + +@main +struct iOSApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +} \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts index 60a40c985..1b616793f 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -2,6 +2,7 @@ * SPDX-FileCopyrightText: 2025 NewPipe e.V. * SPDX-License-Identifier: GPL-3.0-or-later */ +enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") pluginManagement { repositories { @@ -19,7 +20,9 @@ dependencyResolutionManagement { maven(url = "https://repo.clojars.org") } } -include (":app") +include (":app") // androidApp +include(":desktopApp") +include("shared") // Use a local copy of NewPipe Extractor by uncommenting the lines below. // We assume, that NewPipe and NewPipe Extractor have the same parent directory. diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts new file mode 100644 index 000000000..8848e9ac5 --- /dev/null +++ b/shared/build.gradle.kts @@ -0,0 +1,117 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +plugins { + alias(libs.plugins.android.library) + alias(libs.plugins.jetbrains.kotlin.multiplatform) + alias(libs.plugins.jetbrains.kotlin.compose) + alias(libs.plugins.jetbrains.compose.multiplatform) + alias(libs.plugins.koin) +} + +kotlin { + jvmToolchain(21) + + compilerOptions { + optIn.addAll( + "androidx.compose.material3.ExperimentalMaterial3Api", + "androidx.compose.material3.ExperimentalMaterial3ExpressiveApi", + "androidx.compose.foundation.layout.ExperimentalLayoutApi" + ) + } + + android { + namespace = "net.newpipe.app" + compileSdk { + version = release(36) { + minorApiLevel = 1 + } + } + minSdk = 23 + androidResources { + enable = true + } + + optimization { + consumerKeepRules.apply { + publish = true + file("consumer-proguard-rules.pro") + } + } + + withHostTest { + isIncludeAndroidResources = true + } + withDeviceTestBuilder { + sourceSetTreeName = "test" + }.configure { + instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + } + + listOf( + iosArm64(), + iosSimulatorArm64() + ).forEach { iosTarget -> + iosTarget.binaries.framework { + baseName = "ComposeApp" + isStatic = true + } + } + + jvm() + + sourceSets { + commonMain { + dependencies { + implementation(libs.jetbrains.compose.runtime) + implementation(libs.jetbrains.compose.foundation) + implementation(libs.jetbrains.compose.material3) + implementation(libs.jetbrains.compose.ui) + implementation(libs.jetbrains.compose.resources) + implementation(libs.jetbrains.compose.preview) + + implementation(libs.jetbrains.lifecycle.viewmodel) + + implementation(libs.jetbrains.navigation3.ui) + implementation(libs.jetbrains.lifecycle.navigation3) + + implementation(libs.koin.compose.viewmodel) + implementation(libs.koin.annotations) + } + } + commonTest.dependencies { + implementation(libs.kotlin.test.core) + implementation(libs.jetbrains.compose.test.ui) + } + androidMain.dependencies { + implementation(libs.jetbrains.compose.preview) + implementation(libs.androidx.activity) + } + val androidDeviceTest by getting { + dependencies { + implementation(libs.androidx.compose.test.ui.manifest) + implementation(libs.androidx.compose.test.ui.junit) + + // Needed because androidx.compose.test.ui.junit pulls an older dependency + // which crashes on new Android versions + implementation(libs.androidx.test.espresso.core) + } + } + val jvmTest by getting { + dependencies { + implementation(compose.desktop.currentOs) + } + } + } +} + +dependencies { + androidRuntimeClasspath(libs.jetbrains.compose.tooling) +} + +koinCompiler { + userLogs = true // See what the compiler plugin detects +} diff --git a/shared/consumer-proguard-rules.pro b/shared/consumer-proguard-rules.pro new file mode 100644 index 000000000..e0c18985c --- /dev/null +++ b/shared/consumer-proguard-rules.pro @@ -0,0 +1,6 @@ +# +# SPDX-FileCopyrightText: 2026 NewPipe e.V. +# SPDX-License-Identifier: GPL-3.0-or-later +# + +# Proguard rules for Android platform: https://developer.android.com/build/shrink-code diff --git a/shared/src/androidMain/AndroidManifest.xml b/shared/src/androidMain/AndroidManifest.xml new file mode 100644 index 000000000..ce4962141 --- /dev/null +++ b/shared/src/androidMain/AndroidManifest.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt b/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt new file mode 100644 index 000000000..dc1184db1 --- /dev/null +++ b/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt @@ -0,0 +1,25 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge + +/** + * Entry point for compose-related UI components on Android + */ +class ComposeActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + enableEdgeToEdge() + super.onCreate(savedInstanceState) + + setContent { + App() + } + } +} diff --git a/shared/src/commonMain/composeResources/values/strings.xml b/shared/src/commonMain/composeResources/values/strings.xml new file mode 100644 index 000000000..db4b09e00 --- /dev/null +++ b/shared/src/commonMain/composeResources/values/strings.xml @@ -0,0 +1,8 @@ + + + + NewPipe + diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/App.kt b/shared/src/commonMain/kotlin/net/newpipe/app/App.kt new file mode 100644 index 000000000..4cc36fc34 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/App.kt @@ -0,0 +1,22 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app + +import androidx.compose.runtime.Composable +import androidx.compose.ui.tooling.preview.Preview +import net.newpipe.app.di.KoinApp +import net.newpipe.app.theme.AppTheme +import org.koin.compose.KoinApplication +import org.koin.plugin.module.dsl.koinConfiguration + +@Composable +@Preview +fun App() { + KoinApplication(configuration = koinConfiguration()) { + AppTheme { + } + } +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/di/KoinApp.kt b/shared/src/commonMain/kotlin/net/newpipe/app/di/KoinApp.kt new file mode 100644 index 000000000..15f874cdb --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/di/KoinApp.kt @@ -0,0 +1,14 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.di + +import org.koin.core.annotation.KoinApplication + +/** + * Entry point for Koin-related configuration + */ +@KoinApplication +object KoinApp diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt new file mode 100644 index 000000000..5bb59ee2e --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt @@ -0,0 +1,81 @@ +/* + * SPDX-FileCopyrightText: 2024 NewPipe contributors + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.theme + +import androidx.compose.ui.graphics.Color + +val primaryLight = Color(0xFF904A45) +val onPrimaryLight = Color(0xFFFFFFFF) +val primaryContainerLight = Color(0xFFFFDAD6) +val onPrimaryContainerLight = Color(0xFF3B0908) +val secondaryLight = Color(0xFF775653) +val onSecondaryLight = Color(0xFFFFFFFF) +val secondaryContainerLight = Color(0xFFFFDAD6) +val onSecondaryContainerLight = Color(0xFF2C1513) +val tertiaryLight = Color(0xFF725B2E) +val onTertiaryLight = Color(0xFFFFFFFF) +val tertiaryContainerLight = Color(0xFFFEDEA6) +val onTertiaryContainerLight = Color(0xFF261900) +val errorLight = Color(0xFFBA1A1A) +val onErrorLight = Color(0xFFFFFFFF) +val errorContainerLight = Color(0xFFFFDAD6) +val onErrorContainerLight = Color(0xFF410002) +val backgroundLight = Color(0xFFFFF8F7) +val onBackgroundLight = Color(0xFF231918) +val surfaceLight = Color(0xFFFFF8F7) +val onSurfaceLight = Color(0xFF231918) +val surfaceVariantLight = Color(0xFFF5DDDB) +val onSurfaceVariantLight = Color(0xFF534342) +val outlineLight = Color(0xFF857371) +val outlineVariantLight = Color(0xFFD8C2BF) +val scrimLight = Color(0xFF000000) +val inverseSurfaceLight = Color(0xFF392E2D) +val inverseOnSurfaceLight = Color(0xFFFFEDEB) +val inversePrimaryLight = Color(0xFFFFB3AC) +val surfaceDimLight = Color(0xFFE8D6D4) +val surfaceBrightLight = Color(0xFFFFF8F7) +val surfaceContainerLowestLight = Color(0xFFFFFFFF) +val surfaceContainerLowLight = Color(0xFFFFF0EF) +val surfaceContainerLight = Color(0xFFFCEAE8) +val surfaceContainerHighLight = Color(0xFFF6E4E2) +val surfaceContainerHighestLight = Color(0xFFF1DEDC) + +val primaryDark = Color(0xFFFFB3AC) +val onPrimaryDark = Color(0xFF571E1B) +val primaryContainerDark = Color(0xFF73332F) +val onPrimaryContainerDark = Color(0xFFFFDAD6) +val secondaryDark = Color(0xFFE7BDB8) +val onSecondaryDark = Color(0xFF442927) +val secondaryContainerDark = Color(0xFF5D3F3C) +val onSecondaryContainerDark = Color(0xFFFFDAD6) +val tertiaryDark = Color(0xFFE1C38C) +val onTertiaryDark = Color(0xFF402D04) +val tertiaryContainerDark = Color(0xFF584419) +val onTertiaryContainerDark = Color(0xFFFEDEA6) +val errorDark = Color(0xFFFFB4AB) +val onErrorDark = Color(0xFF690005) +val errorContainerDark = Color(0xFF93000A) +val onErrorContainerDark = Color(0xFFFFDAD6) +val backgroundDark = Color(0xFF1A1110) +val onBackgroundDark = Color(0xFFF1DEDC) +val surfaceDark = Color(0xFF1A1110) +val onSurfaceDark = Color(0xFFF1DEDC) +val surfaceVariantDark = Color(0xFF534342) +val onSurfaceVariantDark = Color(0xFFD8C2BF) +val outlineDark = Color(0xFFA08C8A) +val outlineVariantDark = Color(0xFF534342) +val scrimDark = Color(0xFF000000) +val inverseSurfaceDark = Color(0xFFF1DEDC) +val inverseOnSurfaceDark = Color(0xFF392E2D) +val inversePrimaryDark = Color(0xFF904A45) +val surfaceDimDark = Color(0xFF1A1110) +val surfaceBrightDark = Color(0xFF423735) +val surfaceContainerLowestDark = Color(0xFF140C0B) +val surfaceContainerLowDark = Color(0xFF231918) +val surfaceContainerDark = Color(0xFF271D1C) +val surfaceContainerHighDark = Color(0xFF322827) +val surfaceContainerHighestDark = Color(0xFF3D3231) diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt new file mode 100644 index 000000000..28088a6d0 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt @@ -0,0 +1,101 @@ +/* + * SPDX-FileCopyrightText: 2024 NewPipe contributors + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.theme + +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material3.MaterialExpressiveTheme +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.darkColorScheme +import androidx.compose.material3.lightColorScheme +import androidx.compose.runtime.Composable + +private val lightScheme = lightColorScheme( + primary = primaryLight, + onPrimary = onPrimaryLight, + primaryContainer = primaryContainerLight, + onPrimaryContainer = onPrimaryContainerLight, + secondary = secondaryLight, + onSecondary = onSecondaryLight, + secondaryContainer = secondaryContainerLight, + onSecondaryContainer = onSecondaryContainerLight, + tertiary = tertiaryLight, + onTertiary = onTertiaryLight, + tertiaryContainer = tertiaryContainerLight, + onTertiaryContainer = onTertiaryContainerLight, + error = errorLight, + onError = onErrorLight, + errorContainer = errorContainerLight, + onErrorContainer = onErrorContainerLight, + background = backgroundLight, + onBackground = onBackgroundLight, + surface = surfaceLight, + onSurface = onSurfaceLight, + surfaceVariant = surfaceVariantLight, + onSurfaceVariant = onSurfaceVariantLight, + outline = outlineLight, + outlineVariant = outlineVariantLight, + scrim = scrimLight, + inverseSurface = inverseSurfaceLight, + inverseOnSurface = inverseOnSurfaceLight, + inversePrimary = inversePrimaryLight, + surfaceDim = surfaceDimLight, + surfaceBright = surfaceBrightLight, + surfaceContainerLowest = surfaceContainerLowestLight, + surfaceContainerLow = surfaceContainerLowLight, + surfaceContainer = surfaceContainerLight, + surfaceContainerHigh = surfaceContainerHighLight, + surfaceContainerHighest = surfaceContainerHighestLight +) + +private val darkScheme = darkColorScheme( + primary = primaryDark, + onPrimary = onPrimaryDark, + primaryContainer = primaryContainerDark, + onPrimaryContainer = onPrimaryContainerDark, + secondary = secondaryDark, + onSecondary = onSecondaryDark, + secondaryContainer = secondaryContainerDark, + onSecondaryContainer = onSecondaryContainerDark, + tertiary = tertiaryDark, + onTertiary = onTertiaryDark, + tertiaryContainer = tertiaryContainerDark, + onTertiaryContainer = onTertiaryContainerDark, + error = errorDark, + onError = onErrorDark, + errorContainer = errorContainerDark, + onErrorContainer = onErrorContainerDark, + background = backgroundDark, + onBackground = onBackgroundDark, + surface = surfaceDark, + onSurface = onSurfaceDark, + surfaceVariant = surfaceVariantDark, + onSurfaceVariant = onSurfaceVariantDark, + outline = outlineDark, + outlineVariant = outlineVariantDark, + scrim = scrimDark, + inverseSurface = inverseSurfaceDark, + inverseOnSurface = inverseOnSurfaceDark, + inversePrimary = inversePrimaryDark, + surfaceDim = surfaceDimDark, + surfaceBright = surfaceBrightDark, + surfaceContainerLowest = surfaceContainerLowestDark, + surfaceContainerLow = surfaceContainerLowDark, + surfaceContainer = surfaceContainerDark, + surfaceContainerHigh = surfaceContainerHighDark, + surfaceContainerHighest = surfaceContainerHighestDark +) + +@Composable +fun AppTheme(useDarkTheme: Boolean = isSystemInDarkTheme(), content: @Composable () -> Unit) { + MaterialExpressiveTheme( + colorScheme = when { + !useDarkTheme -> lightScheme + else -> darkScheme + }, + content = content + ) +} diff --git a/shared/src/iosMain/kotlin/net/newpipe/app/MainViewController.kt b/shared/src/iosMain/kotlin/net/newpipe/app/MainViewController.kt new file mode 100644 index 000000000..9a1701c0f --- /dev/null +++ b/shared/src/iosMain/kotlin/net/newpipe/app/MainViewController.kt @@ -0,0 +1,10 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app + +import androidx.compose.ui.window.ComposeUIViewController + +fun mainViewController() = ComposeUIViewController { App() } From 909bd347a792306447da34dfb19d2c487cc18444 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Fri, 20 Mar 2026 19:18:51 +0800 Subject: [PATCH 072/127] Setup multiplatform settings with KMP and theme Signed-off-by: Aayush Gupta --- gradle/libs.versions.toml | 2 + shared/build.gradle.kts | 6 +++ .../newpipe/app/di/settings/SettingsModule.kt | 0 .../newpipe/app/di/settings/SettingsModule.kt | 0 .../kotlin/net/newpipe/app/theme/Theme.kt | 46 ++++++++++++++++--- .../newpipe/app/di/settings/SettingsModule.kt | 0 .../newpipe/app/di/settings/SettingsModule.kt | 0 7 files changed, 48 insertions(+), 6 deletions(-) create mode 100644 shared/src/androidMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt create mode 100644 shared/src/iosMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt create mode 100644 shared/src/jvmMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 67eba5cbf..85ee408bc 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -55,6 +55,7 @@ runner = "1.7.0" rxandroid = "3.0.2" rxbinding = "4.0.0" rxjava = "3.1.12" +settings = "1.3.0" sonarqube = "7.3.0.8198" statesaver = "1.4.1" # TODO: Drop because it is deprecated and incompatible with KSP2 stetho = "1.6.0" @@ -156,6 +157,7 @@ pinterest-ktlint = { module = "com.pinterest.ktlint:ktlint-cli", version.ref = " puppycrawl-checkstyle = { module = "com.puppycrawl.tools:checkstyle", version.ref = "checkstyle" } reactivex-rxandroid = { module = "io.reactivex.rxjava3:rxandroid", version.ref = "rxandroid" } reactivex-rxjava = { module = "io.reactivex.rxjava3:rxjava", version.ref = "rxjava" } +russhwolf-settings = { module = "com.russhwolf:multiplatform-settings", version.ref = "settings" } squareup-leakcanary-core = { module = "com.squareup.leakcanary:leakcanary-android-core", version.ref = "leakcanary" } squareup-leakcanary-plumber = { module = "com.squareup.leakcanary:plumber-android", version.ref = "leakcanary" } squareup-leakcanary-watcher = { module = "com.squareup.leakcanary:leakcanary-object-watcher-android", version.ref = "leakcanary" } diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index 8848e9ac5..2cd31027e 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -15,6 +15,9 @@ kotlin { jvmToolchain(21) compilerOptions { + freeCompilerArgs.addAll( + "-Xexpect-actual-classes" + ) optIn.addAll( "androidx.compose.material3.ExperimentalMaterial3Api", "androidx.compose.material3.ExperimentalMaterial3ExpressiveApi", @@ -80,6 +83,8 @@ kotlin { implementation(libs.koin.compose.viewmodel) implementation(libs.koin.annotations) + + implementation(libs.russhwolf.settings) } } commonTest.dependencies { @@ -89,6 +94,7 @@ kotlin { androidMain.dependencies { implementation(libs.jetbrains.compose.preview) implementation(libs.androidx.activity) + implementation(libs.androidx.preference) } val androidDeviceTest by getting { dependencies { diff --git a/shared/src/androidMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt b/shared/src/androidMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt new file mode 100644 index 000000000..e69de29bb diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt b/shared/src/commonMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt new file mode 100644 index 000000000..e69de29bb diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt index 28088a6d0..5500ffeff 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt @@ -7,11 +7,15 @@ package net.newpipe.app.theme import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material3.ColorScheme import androidx.compose.material3.MaterialExpressiveTheme -import androidx.compose.material3.MaterialTheme import androidx.compose.material3.darkColorScheme import androidx.compose.material3.lightColorScheme import androidx.compose.runtime.Composable +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.platform.LocalInspectionMode +import com.russhwolf.settings.Settings +import org.koin.compose.koinInject private val lightScheme = lightColorScheme( primary = primaryLight, @@ -89,13 +93,43 @@ private val darkScheme = darkColorScheme( surfaceContainerHighest = surfaceContainerHighestDark ) +private val blackScheme = darkScheme.copy(surface = Color.Black) + +/** + * Gets current color scheme chosen by the user + */ +@Composable +fun currentColorScheme( + useDarkTheme: Boolean = isSystemInDarkTheme(), + settings: Settings = koinInject() +): ColorScheme { + val nightScheme = when (settings.getString("night_theme", "dark_theme")) { + "black_theme" -> blackScheme + else -> darkScheme + } + + return when (settings.getString("theme", "auto_device_theme")) { + "light_theme" -> lightScheme + "dark_theme" -> darkScheme + "black_theme" -> blackScheme + else -> if (!useDarkTheme) lightScheme else nightScheme + } +} + +/** + * Default app theme for the NewPipe composables + * @param isPreview Whether the theme is being used in preview mode + * @param colorScheme Color scheme to use for theme, defaults to light in preview mode + * @param content Composable content to show to the user + */ @Composable -fun AppTheme(useDarkTheme: Boolean = isSystemInDarkTheme(), content: @Composable () -> Unit) { +fun AppTheme( + isPreview: Boolean = LocalInspectionMode.current, + colorScheme: ColorScheme = if (isPreview) lightScheme else currentColorScheme(), + content: @Composable () -> Unit +) { MaterialExpressiveTheme( - colorScheme = when { - !useDarkTheme -> lightScheme - else -> darkScheme - }, + colorScheme = colorScheme, content = content ) } diff --git a/shared/src/iosMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt b/shared/src/iosMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt new file mode 100644 index 000000000..e69de29bb diff --git a/shared/src/jvmMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt b/shared/src/jvmMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt new file mode 100644 index 000000000..e69de29bb From 89d55ede7292cb63bfc009de2687f677b8e06f32 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Mon, 4 May 2026 00:18:15 +0800 Subject: [PATCH 073/127] Initial setup for navigation display with nav3 Signed-off-by: Aayush Gupta --- shared/build.gradle.kts | 2 ++ .../kotlin/net/newpipe/Constants.kt | 11 +++++++ .../kotlin/net/newpipe/app/ComposeActivity.kt | 10 +++++- .../net/newpipe/app/extensions/Context.kt | 22 +++++++++++++ .../commonMain/kotlin/net/newpipe/app/App.kt | 9 ++++-- .../net/newpipe/app/navigation/NavDisplay.kt | 26 ++++++++++++++++ .../net/newpipe/app/navigation/Screen.kt | 31 +++++++++++++++++++ 7 files changed, 107 insertions(+), 4 deletions(-) create mode 100644 shared/src/androidMain/kotlin/net/newpipe/Constants.kt create mode 100644 shared/src/androidMain/kotlin/net/newpipe/app/extensions/Context.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index 2cd31027e..02926cfab 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -9,6 +9,7 @@ plugins { alias(libs.plugins.jetbrains.kotlin.compose) alias(libs.plugins.jetbrains.compose.multiplatform) alias(libs.plugins.koin) + alias(libs.plugins.jetbrains.kotlinx.serialization) } kotlin { @@ -80,6 +81,7 @@ kotlin { implementation(libs.jetbrains.navigation3.ui) implementation(libs.jetbrains.lifecycle.navigation3) + implementation(libs.kotlinx.serialization.json) implementation(libs.koin.compose.viewmodel) implementation(libs.koin.annotations) diff --git a/shared/src/androidMain/kotlin/net/newpipe/Constants.kt b/shared/src/androidMain/kotlin/net/newpipe/Constants.kt new file mode 100644 index 000000000..164256943 --- /dev/null +++ b/shared/src/androidMain/kotlin/net/newpipe/Constants.kt @@ -0,0 +1,11 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe + +object Constants { + + const val INTENT_SCREEN_KEY = "SCREEN" +} diff --git a/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt b/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt index dc1184db1..ccd7893a0 100644 --- a/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt +++ b/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt @@ -9,6 +9,9 @@ import android.os.Bundle import androidx.activity.ComponentActivity import androidx.activity.compose.setContent import androidx.activity.enableEdgeToEdge +import kotlinx.serialization.json.Json +import net.newpipe.Constants +import net.newpipe.app.navigation.Screen /** * Entry point for compose-related UI components on Android @@ -19,7 +22,12 @@ class ComposeActivity : ComponentActivity() { super.onCreate(savedInstanceState) setContent { - App() + App( + // TODO: Change when everything is in compose and this is the primary activity + startDestination = Json.decodeFromString( + intent.getStringExtra(Constants.INTENT_SCREEN_KEY)!! + ) + ) } } } diff --git a/shared/src/androidMain/kotlin/net/newpipe/app/extensions/Context.kt b/shared/src/androidMain/kotlin/net/newpipe/app/extensions/Context.kt new file mode 100644 index 000000000..638d10dcb --- /dev/null +++ b/shared/src/androidMain/kotlin/net/newpipe/app/extensions/Context.kt @@ -0,0 +1,22 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.extensions + +import android.content.Context +import android.content.Intent +import kotlin.jvm.java +import kotlinx.serialization.json.Json +import net.newpipe.Constants +import net.newpipe.app.ComposeActivity +import net.newpipe.app.navigation.Screen + +/** + * Navigates to a given compose destination + */ +fun Context.navigateTo(screen: Screen) = Intent(this, ComposeActivity::class.java).also { intent -> + intent.putExtra(Constants.INTENT_SCREEN_KEY, Json.encodeToString(screen)) + startActivity(intent) +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/App.kt b/shared/src/commonMain/kotlin/net/newpipe/app/App.kt index 4cc36fc34..81cdbce63 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/App.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/App.kt @@ -6,15 +6,18 @@ package net.newpipe.app import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview import net.newpipe.app.di.KoinApp +import net.newpipe.app.navigation.Screen import net.newpipe.app.theme.AppTheme import org.koin.compose.KoinApplication import org.koin.plugin.module.dsl.koinConfiguration +/** + * Entry point for the multiplatform compose application + * @param startDestination Starting destination for the app + */ @Composable -@Preview -fun App() { +fun App(startDestination: Screen? = null) { KoinApplication(configuration = koinConfiguration()) { AppTheme { } diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt b/shared/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt new file mode 100644 index 000000000..8592b20b9 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt @@ -0,0 +1,26 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.navigation + +import androidx.compose.runtime.Composable +import androidx.navigation3.runtime.entryProvider +import androidx.navigation3.runtime.rememberNavBackStack +import androidx.navigation3.ui.NavDisplay + +/** + * Navigation display for compose screens + * @param startDestination Starting destination for the app + */ +@Composable +fun NavDisplay(startDestination: Screen) { + val backstack = rememberNavBackStack(screenConfig, startDestination) + + NavDisplay( + backStack = backstack, + entryProvider = entryProvider { + } + ) +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt b/shared/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt new file mode 100644 index 000000000..6f5822a50 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt @@ -0,0 +1,31 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.navigation + +import androidx.navigation3.runtime.NavKey +import androidx.savedstate.serialization.SavedStateConfiguration +import kotlinx.serialization.ExperimentalSerializationApi +import kotlinx.serialization.Serializable +import kotlinx.serialization.modules.SerializersModule +import kotlinx.serialization.modules.polymorphic + +/** + * Destinations for navigation in compose + */ +@Serializable +sealed interface Screen : NavKey + +/** + * Saved state configuration for screens + */ +@OptIn(ExperimentalSerializationApi::class) +internal val screenConfig = SavedStateConfiguration { + serializersModule = SerializersModule { + polymorphic(NavKey::class) { + subclassesOfSealed() + } + } +} From 53f36154aa3d0b5f2251c5b387fcb47d7cea8437 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Thu, 7 May 2026 12:38:52 +0800 Subject: [PATCH 074/127] Switch to new syntax for declaring SDK versions Current ones are planned to be deprecated in AGP 10.x Signed-off-by: Aayush Gupta --- app/build.gradle.kts | 14 +++++++++++--- shared/build.gradle.kts | 4 +++- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 390977147..748a1ba83 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -30,14 +30,22 @@ kotlin { } configure { - compileSdk = 36 + compileSdk { + version = release(36) { + minorApiLevel = 1 + } + } namespace = "org.schabi.newpipe" defaultConfig { applicationId = "org.schabi.newpipe" resValue("string", "app_name", "NewPipe") - minSdk = 23 - targetSdk = 35 + minSdk { + version = release(23) + } + targetSdk { + version = release(35) + } versionCode = System.getProperty("versionCodeOverride")?.toInt() ?: 1011 diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index 02926cfab..d15436466 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -33,7 +33,9 @@ kotlin { minorApiLevel = 1 } } - minSdk = 23 + minSdk { + version = release(23) + } androidResources { enable = true } From d1bc8c23cfc5e4dbc372a68317f6727210995f5d Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Mon, 11 May 2026 16:45:56 +0800 Subject: [PATCH 075/127] Better share version information between modules Move important version properties to buildSrc directory to access between modules as needed. Also add a simple task to generate a simple BuildConfig class to access version name. This is better than adding dependency on a third-party library/plugin. Signed-off-by: Aayush Gupta --- app/build.gradle.kts | 16 +++++++------- buildSrc/src/main/kotlin/ProjectConfig.kt | 15 +++++++++++++ desktopApp/build.gradle.kts | 4 ++-- shared/build.gradle.kts | 27 +++++++++++++++++++---- 4 files changed, 48 insertions(+), 14 deletions(-) create mode 100644 buildSrc/src/main/kotlin/ProjectConfig.kt diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 748a1ba83..22ec75bed 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -31,25 +31,25 @@ kotlin { configure { compileSdk { - version = release(36) { - minorApiLevel = 1 + version = release(NEWPIPE_VERSION_SDK_COMPILE_MAJOR) { + minorApiLevel = NEWPIPE_VERSION_SDK_COMPILE_MINOR } } - namespace = "org.schabi.newpipe" + namespace = NEWPIPE_APPLICATION_ID_OLD defaultConfig { - applicationId = "org.schabi.newpipe" + applicationId = NEWPIPE_APPLICATION_ID_OLD resValue("string", "app_name", "NewPipe") minSdk { - version = release(23) + version = release(NEWPIPE_VERSION_SDK_MIN) } targetSdk { - version = release(35) + version = release(NEWPIPE_VERSION_SDK_TARGET) } - versionCode = System.getProperty("versionCodeOverride")?.toInt() ?: 1011 + versionCode = System.getProperty("versionCodeOverride")?.toInt() ?: NEWPIPE_VERSION_CODE - versionName = "0.28.6" + versionName = NEWPIPE_VERSION_NAME System.getProperty("versionNameSuffix")?.let { versionNameSuffix = it } testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" diff --git a/buildSrc/src/main/kotlin/ProjectConfig.kt b/buildSrc/src/main/kotlin/ProjectConfig.kt new file mode 100644 index 000000000..30a004c81 --- /dev/null +++ b/buildSrc/src/main/kotlin/ProjectConfig.kt @@ -0,0 +1,15 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +const val NEWPIPE_VERSION_SDK_COMPILE_MAJOR = 36 +const val NEWPIPE_VERSION_SDK_COMPILE_MINOR = 1 +const val NEWPIPE_VERSION_SDK_MIN = 23 +const val NEWPIPE_VERSION_SDK_TARGET = 35 + +const val NEWPIPE_VERSION_CODE = 1011 +const val NEWPIPE_VERSION_NAME = "0.28.6" + +const val NEWPIPE_APPLICATION_ID_OLD = "org.schabi.newpipe" +const val NEWPIPE_APPLICATION_ID_NEW = "net.newpipe.app" diff --git a/desktopApp/build.gradle.kts b/desktopApp/build.gradle.kts index 910d73647..a9d82ae0e 100644 --- a/desktopApp/build.gradle.kts +++ b/desktopApp/build.gradle.kts @@ -25,8 +25,8 @@ compose.desktop { nativeDistributions { targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb) - packageName = "net.newpipe.app" - packageVersion = "1.0.0" + packageName = NEWPIPE_APPLICATION_ID_NEW + packageVersion = NEWPIPE_VERSION_NAME } } } diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index d15436466..f52e7a208 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -12,6 +12,24 @@ plugins { alias(libs.plugins.jetbrains.kotlinx.serialization) } +// Better than adding a third-party dependency for something as simple as this +// https://stackoverflow.com/a/74771876/8446131 +val buildConfigGenerator by tasks.registering(Sync::class) { + val buildConfigPackage = NEWPIPE_APPLICATION_ID_NEW + val rawClass = """ + package $buildConfigPackage + + object BuildConfig { + const val VERSION_NAME = "$NEWPIPE_VERSION_NAME" + } + """.trimIndent() + from(resources.text.fromString(rawClass)) { + rename { "BuildConfig.kt" } + into(buildConfigPackage.replace(".", "/")) + } + into(layout.buildDirectory.dir("generated/kotlin/")) +} + kotlin { jvmToolchain(21) @@ -27,14 +45,14 @@ kotlin { } android { - namespace = "net.newpipe.app" + namespace = NEWPIPE_APPLICATION_ID_NEW compileSdk { - version = release(36) { - minorApiLevel = 1 + version = release(NEWPIPE_VERSION_SDK_COMPILE_MAJOR) { + minorApiLevel = NEWPIPE_VERSION_SDK_COMPILE_MINOR } } minSdk { - version = release(23) + version = release(NEWPIPE_VERSION_SDK_MIN) } androidResources { enable = true @@ -71,6 +89,7 @@ kotlin { sourceSets { commonMain { + kotlin.srcDir(buildConfigGenerator.map { it.destinationDir }) dependencies { implementation(libs.jetbrains.compose.runtime) implementation(libs.jetbrains.compose.foundation) From abf97404a0ecfe16567f36728ba775c017ef0d6e Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Fri, 22 May 2026 20:21:55 +0800 Subject: [PATCH 076/127] proguard-rules: Keep resource classes for prettytime Signed-off-by: Aayush Gupta --- app/proguard-rules.pro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 61c0d06d0..6d1f5d9be 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -54,3 +54,6 @@ -keepclasseswithmembers class org.schabi.newpipe.** { kotlinx.serialization.KSerializer serializer(...); } + +# See https://github.com/TeamNewPipe/NewPipe/issues/13508 +-keep class org.ocpsoft.prettytime.i18n.Resources* { *; } From 0f2bbf11ff7362cfc88f2419a8e0b2cc88650396 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Fri, 22 May 2026 18:29:13 +0800 Subject: [PATCH 077/127] shared: Add top app bar composable to reflect different active services Signed-off-by: Aayush Gupta --- gradle/libs.versions.toml | 3 +- shared/build.gradle.kts | 3 +- .../drawable/ic_arrow_back.xml | 15 ++ .../composeResources/values/strings.xml | 3 + .../kotlin/net/newpipe/app/Constants.kt | 10 ++ .../net/newpipe/app/composable/TopAppBar.kt | 71 ++++++++ .../app/preview/ThemePreviewProvider.kt | 24 +++ .../net/newpipe/app/theme/ServiceTheme.kt | 163 ++++++++++++++++++ .../newpipe/app/composable/TopAppBarTest.kt | 68 ++++++++ .../newpipe/app/extensions/ComposeUiTest.kt | 43 +++++ .../net/newpipe/app/theme/ServiceThemeTest.kt | 52 ++++++ 11 files changed, 453 insertions(+), 2 deletions(-) create mode 100644 shared/src/commonMain/composeResources/drawable/ic_arrow_back.xml create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/Constants.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/composable/TopAppBar.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/preview/ThemePreviewProvider.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/theme/ServiceTheme.kt create mode 100644 shared/src/commonTest/kotlin/net/newpipe/app/composable/TopAppBarTest.kt create mode 100644 shared/src/commonTest/kotlin/net/newpipe/app/extensions/ComposeUiTest.kt create mode 100644 shared/src/commonTest/kotlin/net/newpipe/app/theme/ServiceThemeTest.kt diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 85ee408bc..a0ca594fb 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -157,7 +157,8 @@ pinterest-ktlint = { module = "com.pinterest.ktlint:ktlint-cli", version.ref = " puppycrawl-checkstyle = { module = "com.puppycrawl.tools:checkstyle", version.ref = "checkstyle" } reactivex-rxandroid = { module = "io.reactivex.rxjava3:rxandroid", version.ref = "rxandroid" } reactivex-rxjava = { module = "io.reactivex.rxjava3:rxjava", version.ref = "rxjava" } -russhwolf-settings = { module = "com.russhwolf:multiplatform-settings", version.ref = "settings" } +russhwolf-settings-core = { module = "com.russhwolf:multiplatform-settings", version.ref = "settings" } +russhwolf-settings-test = { module = "com.russhwolf:multiplatform-settings-test", version.ref = "settings" } squareup-leakcanary-core = { module = "com.squareup.leakcanary:leakcanary-android-core", version.ref = "leakcanary" } squareup-leakcanary-plumber = { module = "com.squareup.leakcanary:plumber-android", version.ref = "leakcanary" } squareup-leakcanary-watcher = { module = "com.squareup.leakcanary:leakcanary-object-watcher-android", version.ref = "leakcanary" } diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index f52e7a208..de7c8eb07 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -107,12 +107,13 @@ kotlin { implementation(libs.koin.compose.viewmodel) implementation(libs.koin.annotations) - implementation(libs.russhwolf.settings) + implementation(libs.russhwolf.settings.core) } } commonTest.dependencies { implementation(libs.kotlin.test.core) implementation(libs.jetbrains.compose.test.ui) + implementation(libs.russhwolf.settings.test) } androidMain.dependencies { implementation(libs.jetbrains.compose.preview) diff --git a/shared/src/commonMain/composeResources/drawable/ic_arrow_back.xml b/shared/src/commonMain/composeResources/drawable/ic_arrow_back.xml new file mode 100644 index 000000000..fb58b74b1 --- /dev/null +++ b/shared/src/commonMain/composeResources/drawable/ic_arrow_back.xml @@ -0,0 +1,15 @@ + + + + + diff --git a/shared/src/commonMain/composeResources/values/strings.xml b/shared/src/commonMain/composeResources/values/strings.xml index db4b09e00..74b75e7cd 100644 --- a/shared/src/commonMain/composeResources/values/strings.xml +++ b/shared/src/commonMain/composeResources/values/strings.xml @@ -5,4 +5,7 @@ --> NewPipe + + + Back diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/Constants.kt b/shared/src/commonMain/kotlin/net/newpipe/app/Constants.kt new file mode 100644 index 000000000..757f644a1 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/Constants.kt @@ -0,0 +1,10 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app + +object Constants { + const val KEY_STREAMING_SERVICE = "service" +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/composable/TopAppBar.kt b/shared/src/commonMain/kotlin/net/newpipe/app/composable/TopAppBar.kt new file mode 100644 index 000000000..989810a55 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/composable/TopAppBar.kt @@ -0,0 +1,71 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.composable + +import androidx.compose.foundation.layout.RowScope +import androidx.compose.material3.Icon +import androidx.compose.material3.IconButton +import androidx.compose.material3.Text +import androidx.compose.material3.TopAppBar +import androidx.compose.material3.TopAppBarColors +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.painter.Painter +import androidx.compose.ui.tooling.preview.PreviewLightDark +import androidx.compose.ui.tooling.preview.PreviewWrapper +import net.newpipe.app.preview.ThemePreviewProvider +import net.newpipe.app.theme.currentServiceTopAppBarColors +import newpipe.shared.generated.resources.Res +import newpipe.shared.generated.resources.app_name +import newpipe.shared.generated.resources.ic_arrow_back +import newpipe.shared.generated.resources.navigate_back +import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource + +/** + * A top app bar composable to be used with Scaffold + * @param modifier The modifier to be applied to the composable + * @param title Title of the screen + * @param navigationIcon Icon for the navigation button + * @param onNavigateUp Action when user clicks the navigation icon + * @param actions Actions to display on the top app bar (for e.g. menu) + */ +@Composable +fun TopAppBar( + modifier: Modifier = Modifier, + title: String? = null, + navigationIcon: Painter = painterResource(Res.drawable.ic_arrow_back), + onNavigateUp: (() -> Unit)? = null, + colors: TopAppBarColors = currentServiceTopAppBarColors(), + actions: @Composable (RowScope.() -> Unit) = {} +) { + TopAppBar( + modifier = modifier, + colors = colors, + title = { if (title != null) Text(text = title) }, + navigationIcon = { + if (onNavigateUp != null) { + IconButton(onClick = onNavigateUp) { + Icon( + painter = navigationIcon, + contentDescription = stringResource(Res.string.navigate_back) + ) + } + } + }, + actions = actions + ) +} + +@PreviewWrapper(ThemePreviewProvider::class) +@PreviewLightDark +@Composable +private fun TopAppBarPreview() { + TopAppBar( + title = stringResource(Res.string.app_name), + onNavigateUp = {} + ) +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/preview/ThemePreviewProvider.kt b/shared/src/commonMain/kotlin/net/newpipe/app/preview/ThemePreviewProvider.kt new file mode 100644 index 000000000..9c29869b1 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/preview/ThemePreviewProvider.kt @@ -0,0 +1,24 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.preview + +import androidx.compose.material3.Surface +import androidx.compose.runtime.Composable +import androidx.compose.ui.tooling.preview.PreviewWrapperProvider +import net.newpipe.app.theme.AppTheme + +/** + * Default preview provider for composables + */ +class ThemePreviewProvider : PreviewWrapperProvider { + + @Composable + override fun Wrap(content: @Composable (() -> Unit)) { + AppTheme { + Surface(content = content) + } + } +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/theme/ServiceTheme.kt b/shared/src/commonMain/kotlin/net/newpipe/app/theme/ServiceTheme.kt new file mode 100644 index 000000000..bc79ab34e --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/theme/ServiceTheme.kt @@ -0,0 +1,163 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.theme + +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material3.ColorScheme +import androidx.compose.material3.TopAppBarColors +import androidx.compose.material3.TopAppBarDefaults +import androidx.compose.material3.darkColorScheme +import androidx.compose.material3.lightColorScheme +import androidx.compose.runtime.Composable +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.platform.LocalInspectionMode +import com.russhwolf.settings.Settings +import net.newpipe.app.Constants.KEY_STREAMING_SERVICE +import org.koin.compose.koinInject + +val youTubeLightScheme = lightColorScheme( + primaryContainer = Color(0xFFE53935), + onPrimaryContainer = Color(0xFFFFFFFF) +) + +val youTubeDarkScheme = darkColorScheme( + primaryContainer = Color(0xFF992722), + onPrimaryContainer = Color(0xFFFFFFFF) +) + +val soundCloudLightScheme = lightColorScheme( + primaryContainer = Color(0xFFF57C00), + onPrimaryContainer = Color(0xFFFFFFFF) +) + +val soundCloudDarkScheme = darkColorScheme( + primaryContainer = Color(0xFFA35300), + onPrimaryContainer = Color(0xFFFFFFFF) +) + +val mediaCCCLightScheme = lightColorScheme( + primaryContainer = Color(0xFF9E9E9E), + onPrimaryContainer = Color(0xFFFFFFFF) +) + +val mediaCCCDarkScheme = darkColorScheme( + primaryContainer = Color(0xFF878787), + onPrimaryContainer = Color(0xFFFFFFFF) +) + +val peerTubeLightScheme = lightColorScheme( + primaryContainer = Color(0xFFFF6F00), + onPrimaryContainer = Color(0xFFFFFFFF) +) + +val peerTubeDarkScheme = darkColorScheme( + primaryContainer = Color(0xFFA34700), + onPrimaryContainer = Color(0xFFFFFFFF) +) + +val bandCampLightScheme = lightColorScheme( + primaryContainer = Color(0xFF17A0C4), + onPrimaryContainer = Color(0xFFFFFFFF) +) + +val bandCampDarkScheme = darkColorScheme( + primaryContainer = Color(0xFF1383A1), + onPrimaryContainer = Color(0xFFFFFFFF) +) + +/** + * Supported services in the NewPipe app and minor information about them for UI decisions. + * @property serviceId ID of the service as defined in NewPipeExtractor + * @property serviceName Name of the service as defined in NewPipeExtractor + * @property lightScheme Light color scheme to reflect the brand + * @property darkScheme Dark color scheme to reflect the brand + * @property isSchemeColorDensityLight Whether this brand's color schemes are of lighter density. + */ +enum class Service( + val serviceId: Int, + val serviceName: String, + val lightScheme: ColorScheme, + val darkScheme: ColorScheme, + val isSchemeColorDensityLight: Boolean = false +) { + YOUTUBE( + serviceId = 0, + serviceName = "YouTube", + lightScheme = youTubeLightScheme, + darkScheme = youTubeDarkScheme + ), + SOUNDCLOUD( + serviceId = 1, + serviceName = "SoundCloud", + lightScheme = soundCloudLightScheme, + darkScheme = soundCloudDarkScheme + ), + MEDIA_CCC( + serviceId = 2, + serviceName = "media.ccc.de", + lightScheme = mediaCCCLightScheme, + darkScheme = mediaCCCDarkScheme + ), + PEERTUBE( + serviceId = 3, + serviceName = "PeerTube", + lightScheme = peerTubeLightScheme, + darkScheme = peerTubeDarkScheme + ), + BANDCAMP( + serviceId = 4, + serviceName = "Bandcamp", + lightScheme = bandCampLightScheme, + darkScheme = bandCampDarkScheme + ) +} + +/** + * Currently active/selected service by user + */ +@Composable +fun currentService(settings: Settings = koinInject()): Service { + return Service.entries.find { service -> + service.serviceName == settings.getString( + KEY_STREAMING_SERVICE, + Service.YOUTUBE.serviceName + ) + }!! +} + +/** + * Currently active/selected service's color that can be used to represent it. + * Fallbacks to YouTube on preview. + */ +@Composable +fun currentServiceScheme( + isPreview: Boolean = LocalInspectionMode.current, + useDarkTheme: Boolean = isSystemInDarkTheme(), + service: Service = if (isPreview) Service.YOUTUBE else currentService() +): ColorScheme { + return when { + useDarkTheme -> service.darkScheme + else -> service.lightScheme + } +} + +/** + * Top app bar colors to represent the currently active service. + * Fallbacks to YouTube on preview. + */ +@Composable +fun currentServiceTopAppBarColors( + serviceScheme: ColorScheme = currentServiceScheme() +): TopAppBarColors { + return TopAppBarDefaults.topAppBarColors( + containerColor = serviceScheme.primaryContainer, + scrolledContainerColor = serviceScheme.primaryContainer, + navigationIconContentColor = serviceScheme.onPrimaryContainer, + titleContentColor = serviceScheme.onPrimaryContainer, + subtitleContentColor = serviceScheme.onPrimaryContainer, + actionIconContentColor = serviceScheme.onPrimaryContainer + ) +} diff --git a/shared/src/commonTest/kotlin/net/newpipe/app/composable/TopAppBarTest.kt b/shared/src/commonTest/kotlin/net/newpipe/app/composable/TopAppBarTest.kt new file mode 100644 index 000000000..e8dabe314 --- /dev/null +++ b/shared/src/commonTest/kotlin/net/newpipe/app/composable/TopAppBarTest.kt @@ -0,0 +1,68 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.composable + +import androidx.compose.ui.test.ExperimentalTestApi +import androidx.compose.ui.test.assertIsDisplayed +import androidx.compose.ui.test.onNodeWithContentDescription +import androidx.compose.ui.test.onNodeWithText +import androidx.compose.ui.test.performClick +import androidx.compose.ui.test.v2.runComposeUiTest +import com.russhwolf.settings.MapSettings +import com.russhwolf.settings.Settings +import kotlin.test.Test +import kotlin.test.assertTrue +import net.newpipe.app.extensions.withKoin +import newpipe.shared.generated.resources.Res +import newpipe.shared.generated.resources.app_name +import newpipe.shared.generated.resources.navigate_back +import org.jetbrains.compose.resources.getString +import org.jetbrains.compose.resources.stringResource +import org.koin.dsl.module + +@OptIn(ExperimentalTestApi::class) +class TopAppBarTest { + + private val emptySettings = module { + single { MapSettings() } + } + + @Test + fun testTopAppBarHasNoNavigationByDefault() = runComposeUiTest { + withKoin( + modules = listOf(emptySettings), + content = { + TopAppBar() + }, + onContent = { + onNodeWithContentDescription(getString(Res.string.navigate_back)) + .assertDoesNotExist() + } + ) + } + + @Test + fun testTopAppBarCanHaveNavigation() = runComposeUiTest { + var navigationBackClicked = false + withKoin( + modules = listOf(emptySettings), + content = { + TopAppBar( + title = stringResource(Res.string.app_name), + onNavigateUp = { navigationBackClicked = true } + ) + }, + onContent = { + onNodeWithText(getString(Res.string.app_name)).assertIsDisplayed() + onNodeWithContentDescription(getString(Res.string.navigate_back)).apply { + assertExists() + performClick() + assertTrue(navigationBackClicked) + } + } + ) + } +} diff --git a/shared/src/commonTest/kotlin/net/newpipe/app/extensions/ComposeUiTest.kt b/shared/src/commonTest/kotlin/net/newpipe/app/extensions/ComposeUiTest.kt new file mode 100644 index 000000000..7ec719ee8 --- /dev/null +++ b/shared/src/commonTest/kotlin/net/newpipe/app/extensions/ComposeUiTest.kt @@ -0,0 +1,43 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.extensions + +import androidx.compose.runtime.Composable +import androidx.compose.ui.test.ComposeUiTest +import androidx.compose.ui.test.ExperimentalTestApi +import org.koin.compose.KoinApplication +import org.koin.core.context.stopKoin +import org.koin.core.logger.Level +import org.koin.core.module.Module +import org.koin.dsl.koinConfiguration + +/** + * Sets the content for the UI test wrapped inside Koin + * @param modules Modules for Koin to init for the composables + * @param content Composable content for testing + * @param onContent Non-composable code for testing, maybe dependent upon composable code + */ +@OptIn(ExperimentalTestApi::class) +inline fun ComposeUiTest.withKoin( + modules: List, + noinline content: @Composable () -> Unit = {}, + onContent: () -> Unit = {} +) { + try { + setContent { + KoinApplication( + configuration = koinConfiguration { + modules(modules) + }, + logLevel = Level.DEBUG, + content = content + ) + } + onContent() + } finally { + stopKoin() + } +} diff --git a/shared/src/commonTest/kotlin/net/newpipe/app/theme/ServiceThemeTest.kt b/shared/src/commonTest/kotlin/net/newpipe/app/theme/ServiceThemeTest.kt new file mode 100644 index 000000000..86e6494ad --- /dev/null +++ b/shared/src/commonTest/kotlin/net/newpipe/app/theme/ServiceThemeTest.kt @@ -0,0 +1,52 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.theme + +import androidx.compose.ui.test.ExperimentalTestApi +import androidx.compose.ui.test.v2.runComposeUiTest +import com.russhwolf.settings.MapSettings +import com.russhwolf.settings.Settings +import kotlin.test.Test +import kotlin.test.assertEquals +import kotlin.test.assertNotEquals +import net.newpipe.app.Constants.KEY_STREAMING_SERVICE +import net.newpipe.app.extensions.withKoin +import org.koin.dsl.module + +@OptIn(ExperimentalTestApi::class) +class ServiceThemeTest { + + @Test + fun testDefaultServiceIsYouTube() = runComposeUiTest { + val emptySettings = module { + single { MapSettings() } + } + + withKoin( + modules = listOf(emptySettings), + content = { + assertEquals(currentService(), Service.YOUTUBE) + } + ) + } + + @Test + fun testServiceSwitchingWorks() = runComposeUiTest { + val settings = module { + single { + MapSettings(KEY_STREAMING_SERVICE to "PeerTube") + } + } + + withKoin( + modules = listOf(settings), + content = { + assertNotEquals(currentService(), Service.YOUTUBE) + assertEquals(currentService(), Service.PEERTUBE) + } + ) + } +} From 01e37425213d192fe9b73632fd2ebf3ac85c453a Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Fri, 22 May 2026 23:27:06 +0800 Subject: [PATCH 078/127] shared: Add missing settings implementation This seems to have gotten missed during moving settings to different modules Signed-off-by: Aayush Gupta --- .../newpipe/app/di/settings/SettingsModule.kt | 20 +++++++++++++++++++ .../newpipe/app/di/settings/SettingsModule.kt | 19 ++++++++++++++++++ .../newpipe/app/di/settings/SettingsModule.kt | 17 ++++++++++++++++ .../newpipe/app/di/settings/SettingsModule.kt | 17 ++++++++++++++++ 4 files changed, 73 insertions(+) diff --git a/shared/src/androidMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt b/shared/src/androidMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt index e69de29bb..8c2f7b4ed 100644 --- a/shared/src/androidMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt +++ b/shared/src/androidMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt @@ -0,0 +1,20 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.di.settings + +import android.content.Context +import androidx.preference.PreferenceManager +import com.russhwolf.settings.Settings +import com.russhwolf.settings.SharedPreferencesSettings +import org.koin.core.annotation.Singleton + +/** + * Settings for Android based on SharedPreferences + */ +@Singleton +fun provideSettings(context: Context): Settings = SharedPreferencesSettings( + PreferenceManager.getDefaultSharedPreferences(context) +) diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt b/shared/src/commonMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt index e69de29bb..698b29f29 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt @@ -0,0 +1,19 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.di.settings + +import org.koin.core.annotation.ComponentScan +import org.koin.core.annotation.Configuration +import org.koin.core.annotation.Module + +/** + * Settings module to access key-value pairs across different platforms. + * See individual platform packages for the declarations included in this module. + */ +@Module +@ComponentScan +@Configuration +class SettingsModule diff --git a/shared/src/iosMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt b/shared/src/iosMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt index e69de29bb..b5f7ef3e3 100644 --- a/shared/src/iosMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt +++ b/shared/src/iosMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt @@ -0,0 +1,17 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.di.settings + +import com.russhwolf.settings.NSUserDefaultsSettings +import com.russhwolf.settings.Settings +import org.koin.core.annotation.Singleton +import platform.Foundation.NSUserDefaults + +/** + * Settings for iOS based on UserDefaultsSettings + */ +@Singleton +fun provideSettings(): Settings = NSUserDefaultsSettings(NSUserDefaults()) diff --git a/shared/src/jvmMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt b/shared/src/jvmMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt index e69de29bb..82a7d426f 100644 --- a/shared/src/jvmMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt +++ b/shared/src/jvmMain/kotlin/net/newpipe/app/di/settings/SettingsModule.kt @@ -0,0 +1,17 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.di.settings + +import com.russhwolf.settings.PreferencesSettings +import com.russhwolf.settings.Settings +import java.util.prefs.Preferences +import org.koin.core.annotation.Singleton + +/** + * Settings for JVM devices based on Java Preferences + */ +@Singleton +fun provideSettings(): Settings = PreferencesSettings(Preferences.userRoot()) From 82e3e71849c057cbd02fbd9b07eeb9583ad1ef24 Mon Sep 17 00:00:00 2001 From: tobigr Date: Sat, 23 May 2026 19:29:38 +0200 Subject: [PATCH 079/127] Update NewPipe Extractor to v0.26.2 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 15ae57bd0..7f31b4179 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -60,7 +60,7 @@ teamnewpipe-nanojson = "e9d656ddb49a412a5a0a5d5ef20ca7ef09549996" # the corresponding commit hash, since JitPack sometimes deletes artifacts. # If there’s already a git hash, just add more of it to the end (or remove a letter) # to cause jitpack to regenerate the artifact. -teamnewpipe-newpipe-extractor = "v0.26.1" +teamnewpipe-newpipe-extractor = "v0.26.2" viewpager2 = "1.1.0" webkit = "1.14.0" # Newer versions require minSdk >= 23 work = "2.10.5" # Newer versions require minSdk >= 23 From 28654471d50aaa61e383db82940e0d9b356eb7cf Mon Sep 17 00:00:00 2001 From: tobigr Date: Sat, 23 May 2026 19:30:05 +0200 Subject: [PATCH 080/127] Add changelog for NewPipe 0.28.7 (1012) --- fastlane/metadata/android/en-US/changelogs/1012.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 fastlane/metadata/android/en-US/changelogs/1012.txt diff --git a/fastlane/metadata/android/en-US/changelogs/1012.txt b/fastlane/metadata/android/en-US/changelogs/1012.txt new file mode 100644 index 000000000..090dc0772 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/1012.txt @@ -0,0 +1,9 @@ +This is a small hotfix update to make YouTube usable again. It is necessary, because there were changes by YouTube. +NewPipe is now able to extract items in channel tabs again thanks to @AudricV and @Ecomont effort. + +Further changes +- [YouTube] Fixed duration and live stream display in related videos +- [SoundCloud] Fixed comments crash by handling null page URLs +- dependency updates + +NewPipe will drop Android 5 support in the next release. From 45af64a518bfb1a29a495bfde73912b008e69601 Mon Sep 17 00:00:00 2001 From: tobigr Date: Sat, 23 May 2026 19:30:29 +0200 Subject: [PATCH 081/127] Release NewPipe 0.28.7 (1012) --- app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index fd2954c0a..4bd3c7995 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -45,9 +45,9 @@ configure { minSdk = 21 targetSdk = 35 - versionCode = System.getProperty("versionCodeOverride")?.toInt() ?: 1011 + versionCode = System.getProperty("versionCodeOverride")?.toInt() ?: 1012 - versionName = "0.28.6" + versionName = "0.28.7" System.getProperty("versionNameSuffix")?.let { versionNameSuffix = it } testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" From 94005cfe9cbaf5414a5527e2a373d26bd102d7c8 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Sat, 23 May 2026 22:15:01 +0200 Subject: [PATCH 082/127] Translated using Weblate (Dutch) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 55.4% (51 of 92 strings) Translated using Weblate (Latvian) Currently translated at 97.8% (759 of 776 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Latvian) Currently translated at 97.8% (759 of 776 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 66.3% (61 of 92 strings) Translated using Weblate (Belarusian) Currently translated at 100.0% (776 of 776 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 65.2% (60 of 92 strings) Translated using Weblate (Slovak) Currently translated at 77.1% (71 of 92 strings) Translated using Weblate (Croatian) Currently translated at 99.8% (775 of 776 strings) Translated using Weblate (Serbian) Currently translated at 99.2% (770 of 776 strings) Co-authored-by: Hosted Weblate Co-authored-by: Milan Co-authored-by: Milo Ivir Co-authored-by: Nero Co-authored-by: Peter Dave Hello Co-authored-by: Yauhen Co-authored-by: ojppe Co-authored-by: Саша Петровић Co-authored-by: ℂ𝕠𝕠𝕠𝕝 (𝕘𝕚𝕥𝕙𝕦𝕓.𝕔𝕠𝕞/ℂ𝕠𝕠𝕠𝕝) Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/nl/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pt_BR/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/sk/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/zh_Hant/ Translation: NewPipe/Metadata --- app/src/main/res/values-be/strings.xml | 35 +++++- app/src/main/res/values-hr/strings.xml | 2 +- app/src/main/res/values-lv/strings.xml | 115 +++++++++--------- app/src/main/res/values-nl/strings.xml | 2 +- app/src/main/res/values-sr/strings.xml | 26 +++- .../metadata/android/nl/changelogs/1000.txt | 4 +- .../android/pt-BR/changelogs/1009.txt | 14 +++ .../metadata/android/sk/changelogs/1010.txt | 9 ++ .../metadata/android/sk/changelogs/1011.txt | 1 + .../android/zh-Hant/changelogs/1005.txt | 17 +++ .../android/zh-Hant/changelogs/1006.txt | 16 +++ .../android/zh-Hant/changelogs/1008.txt | 4 + .../android/zh-Hant/changelogs/1009.txt | 14 +++ .../android/zh-Hant/changelogs/1010.txt | 9 ++ .../android/zh-Hant/changelogs/1011.txt | 1 + .../android/zh-Hant/changelogs/66.txt | 33 +++++ .../android/zh-Hant/changelogs/68.txt | 31 +++++ .../android/zh-Hant/changelogs/69.txt | 19 +++ .../android/zh-Hant/changelogs/70.txt | 25 ++++ .../android/zh-Hant/changelogs/740.txt | 23 ++++ .../android/zh-Hant/changelogs/963.txt | 1 + .../android/zh-Hant/changelogs/965.txt | 6 + .../android/zh-Hant/changelogs/966.txt | 14 +++ .../android/zh-Hant/changelogs/967.txt | 1 + .../android/zh-Hant/changelogs/968.txt | 7 ++ .../android/zh-Hant/changelogs/969.txt | 8 ++ .../android/zh-Hant/changelogs/970.txt | 11 ++ .../android/zh-Hant/changelogs/971.txt | 3 + .../android/zh-Hant/changelogs/972.txt | 14 +++ .../android/zh-Hant/changelogs/973.txt | 4 + .../android/zh-Hant/changelogs/974.txt | 5 + .../android/zh-Hant/changelogs/975.txt | 17 +++ .../android/zh-Hant/changelogs/976.txt | 10 ++ .../android/zh-Hant/changelogs/977.txt | 10 ++ .../android/zh-Hant/changelogs/979.txt | 2 + .../android/zh-Hant/changelogs/980.txt | 13 ++ .../android/zh-Hant/changelogs/983.txt | 9 ++ .../android/zh-Hant/changelogs/994.txt | 15 +++ .../android/zh-Hant/changelogs/995.txt | 16 +++ 39 files changed, 498 insertions(+), 68 deletions(-) create mode 100644 fastlane/metadata/android/pt-BR/changelogs/1009.txt create mode 100644 fastlane/metadata/android/sk/changelogs/1010.txt create mode 100644 fastlane/metadata/android/sk/changelogs/1011.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/1005.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/1006.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/1008.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/1009.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/1010.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/1011.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/66.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/68.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/69.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/70.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/740.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/963.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/965.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/966.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/967.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/968.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/969.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/970.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/971.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/972.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/973.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/974.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/975.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/976.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/977.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/979.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/980.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/983.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/994.txt create mode 100644 fastlane/metadata/android/zh-Hant/changelogs/995.txt diff --git a/app/src/main/res/values-be/strings.xml b/app/src/main/res/values-be/strings.xml index a5edb6ce8..d202040f2 100644 --- a/app/src/main/res/values-be/strings.xml +++ b/app/src/main/res/values-be/strings.xml @@ -614,10 +614,10 @@ Апрацоўка стужкі… Пры кожным спампоўванні вам будзе прапанавана выбраць месца захавання Загрузка канала… - Выдаліць прагледжаныя відэа? + Выдаліць прагледжаныя трансляцыі? Так, часткова прагледжаныя відэа таксама Працэнт - Відэа, якія прагледжаны перад дадаваннем і пасля дадавання ў спіс прайгравання, будуць выдалены. \nВы ўпэўнены? Гэта дзеянне немагчыма скасаваць! + Трансляцыі, якія прагледжаны перад дадаваннем і пасля дадавання ў спіс прайгравання, будуць выдалены. \nВы ўпэўнены? Паказвае варыянт збою пры выкарыстанні плэера Выдаліць прагледжаныя Паказаць панэль памылак @@ -835,4 +835,35 @@ У жніўні 2025 года Google абвясціў, што з верасня 2026 года для ўсталявання праграм для Android на сертыфікаваныя прылады будзе патрабавацца праверка распрацоўшчыка. Гэта тычыцца і тых праграм, што ўсталёўваюцца па-за Play Store. Паколькі распрацоўшчыкі NewPipe не згодныя з гэтым патрабаваннем, пасля гэтага часу NewPipe больш не будзе працаваць на сертыфікаваных прыладах Android. Падрабязнасці Рашэнне + Каб выкарыстоўваць аконны прайгравальнік, у наступным меню налад Android выберыце %1$s і ўключыце %2$s. + + Экспартаванне %d падпіскі… + Экспартаванне %d падпісак… + Экспартаванне %d падпісак… + Экспартаванне %d падпісак… + + + Загрузка %d падпіскі… + Загрузка %d падпісак… + Загрузка %d падпісак… + Загрузка %d падпісак… + + + Імпартаванне %d падпіскі… + Імпартаванне %d падпісак… + Імпартаванне %d падпісак… + Імпартаванне %d падпісак… + + Імпарт падпісак з папярэдняга экспарту ў .json + Экспарт падпісак у файл .json + Імпарт з папярэдняга экспарту + Уліковы запіс спынены\n\n%1$s паведамляе наступную прычыну: %2$s + SoundCloud больш не публікуе свой спіс 50 лепшых. Адпаведная ўкладка выдалена з галоўнай старонкі. + Падчас прайгравання ад сервера атрымана памылка HTTP 403, хутчэй за ўсё гэта выклікана заканчэннем тэрміну дзеяння URL для патокавай перадачы або блакіраваннем IP-адраса + Падчас прайгравання ад сервера атрымана памылка HTTP %1$s + Падчас прайгравання ад сервера атрымана памылка HTTP 403, хутчэй за ўсё гэта выклікана блакіроўкай IP-адраса або праблемамі з дэабфускацыяй URL-адраса для патокавай перадачы + NewPipe спыняе падтрымку Android 5 + На жаль, NewPipe залежыць ад некалькіх бібліятэк, якія спынілі падтрымку Android 5.0 і 5.1. Таму наступны выпуск NewPipe, будзе працаваць толькі на прыладах з Android 6 і вышэй. Падрабязнасці можна прачытаць ў блогу. + Запіс у блогу + %1$s адмовіўся перадаць даныя, запытаўшы ўваход у сістэму для пацвярджэння, што вы не бот.\n\nМагчыма, ваш IP-адрас быў часова заблакіраваны %1$s. Можна пачакаць некаторы час або перайсці на іншы IP-адрас (напрыклад, уключыўшы/выключыўшы VPN або пераключыўшыся з Wi-Fi на мабільныя даныя).\n\nПаглядзіце гэты раздзел FAQ, каб атрымаць дадатковую інфармацыю.
diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml index 83d3a13e1..3de0765e2 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -857,7 +857,7 @@ HTTP greška 403 primljena od poslužitelja tijekom reprodukcije, vjerojatno uzrokovana istekom URL-a za streaming ili zabranom IP adrese HTTP greška %1$s primljena od poslužitelja tijekom reprodukcije HTTP greška 403 primljena od poslužitelja tijekom reprodukcije, vjerojatno uzrokovana zabranom IP adrese ili problemima s deobfuskacijom URL-a za streaming - %1$s je odbio dati podatke, tražeći prijavu kako bi potvrdio da podnositelj zahtjeva nije bot.\n\nVašu IP adresu je možda privremeno zabranio %1$s, možete pričekati neko vrijeme ili se prebaciti na drugu IP adresu (na primjer uključivanjem/isključivanjem VPN-a ili prebacivanjem s WiFi-ja na mobilne podatke). + %1$s je odbio dati podatke, tražeći prijavu kako bi potvrdio da podnositelj zahtjeva nije bot.\n\nVašu IP adresu je možda privremeno zabranio %1$s, možete pričekati neko vrijeme ili se prebaciti na drugu IP adresu (na primjer uključivanjem/isključivanjem VPN-a ili prebacivanjem s WiFi-ja na mobilne podatke).\n\nZa više informacija pogledajte ovaj unos u često postavljanim pitanjima. Ovaj sadržaj nije dostupan za trenutno odabranu zemlju sadržaja.\n\nPromijenite odabir u \"Postavke > Sadržaj > Zadana zemlja sadržaja\". Izvozi se %d pretplata … diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml index ebd894b90..c47bf83d3 100644 --- a/app/src/main/res/values-lv/strings.xml +++ b/app/src/main/res/values-lv/strings.xml @@ -8,7 +8,7 @@ Pievienot atskaņošanas sarakstam Nosaukums Pārsaukt - Jauns Atskaņošanas Saraksts + Jauns atskaņošanas saraksts Ielādē prasīto saturu Vāc informāciju… Vienmēr prasīt @@ -36,9 +36,9 @@ Ievietošana pabeigta Eksportēts Atlasiet kiosku - Nav atskaņošanas sarakstu pagaidām + Pagaidām nav izveidots vai saglabāts neviens atskaņošanas saraksts Atlasiet atskaņošanas sarakstu - Nav kanālu abonamentu pagaidām + Pagaidām nav abonēts neviens kanāls Atlasiet kanālu Kanāls Noklusējuma Kiosks @@ -52,20 +52,20 @@ Vēsture Vēsture Lasīt licenci - NewPipe — bez autortiesību ierobežojumiem brīva, pieejama bezmaksas, programmatūra: jūs variet izmantot, pētīt, dalīties un uzlabot to jebkurā brīdī pēc saviem ieskatiem. Tieši jūs varat kopīgot un/ vai modificēt to saskaņā ar GNU Vispārējās Publiskās Licences noteikumiem, ko publicējusi Brīvās Programmatūras Fonds, vai nu 3. licences versija, vai (pēc jūsu izvēles) jebkura vēlāka versija. + NewPipe — bez autortiesību ierobežojumiem (copyleft) licencēta brīva, pieejama bezmaksas, programmatūra: jūs variet izmantot, pētīt, dalīties un uzlabot to jebkurā brīdī pēc saviem ieskatiem. Tieši jūs variet to izplatīt un/vai modificēt saskaņā ar GNU General Public License noteikumiem, ko publicējusi Free Software Foundation, vai nu zem licences 3. versijas, vai (pēc jūsu izvēles) jebkuras jaunākas versijas noteikumiem. NewPipe Licence - Izslasīt privātuma politiku + Lasīt konfidencialitātes politiku Datu aizsardzība ir ļoti svarīga NewPipe projektam. Tāpēc lietotne neapkopo datus bez jūsu piekrišanas.\nNewPipe konfidencialitātes politika sīki izskaidro, kādi dati tiek nosūtīti un uzglabāti, kad nosūtiet nobrukšanas ziņojumu. - NewPipe Privātuna Politika - Apmeklēt NewPipe mājaslapu, lai iegūtu vairāk informācijas un ziņu. - Mājaslapa - Dot atpakaļ - Newpipe izstrādā brīvprātīgie, kas pavada savu brīvo laiku, sniedzot vislabāko lietotāju pieredzi. Dodiet palīdzību izstrādātājiem, kuri padara NewPipe vēl lābāku. + NewPipe konfidencialitātes politika + Apmeklējiet NewPipe vietni, lai iegūtu vairāk informācijas un jaunumus. + Projekta vietne + Izrādīt cieņu ar ziedojumu + NewPipe izstrādā brīvprātīgie, kas pavada savu brīvo laiku, sniedzot vislabāko lietotāju pieredzi. Ziedojiet, lai palīdzētu izstrādātājiem padarīt NewPipe vēl labāku, kamēr viņi bauda tasi kafijas. Ziedot Apskatīt GitHub Vienalga, kādas idejas Jums ir; Tulkojuma, dizaina izmaiņu, koda tīrīšanas vai reāli smagas kodu izmaiņas - palīdzība vienmēr ir laipni gaidīta. Jo vairāk tiek darīts, jo labāks tas kļūst! - Atbalstiet - Viegls brīvs, pieejams bezmaksas, straumēšanas atskaņotājs Android ierīcēm. + Dot savu artavu + Viegls un brīvs, pieejams bezmaksas, straumēšanas atskaņotājs Android ierīcēm. Licences Par un BUJ Trešo pušu licences @@ -81,8 +81,7 @@ Nospiediet \"Pabeigts\", kad to atrisinat reCAPTCHA izaicinājums 1 vienums dzēsts. - Šī atļauja ir nepieciešama, lai -\natvērtu popup režīmā + Šī atļauja ir nepieciešama, lai\nvarētu atskaņot multimediju uznirstošajā logā Lūdzu nosakiet lejupielādes mapi iestatījumos vēlāk Nokopēts uz starpliktuvi Lūdzu uzgaidiet… @@ -97,7 +96,7 @@ Noraidīt Kontrolsumma Dzēst - Izveidot / Saglabāt + Izveidot Pauzēt Sākt Nav komentāru @@ -116,9 +115,9 @@ Neviens neklausās - %s skatītāju - %s skatītājs - %s skatītāji + %s skatītāji skatās + %s skatītājs skatās + %s skatītāji skatās Neviens neskatās @@ -150,11 +149,11 @@ Atskaņot video, ilgums: Detaļas: Jūsu komentārs (Angliski): - Kas:\nRequest:\nContent Valoda:\nContent Valsts:\nApp Valoda:\nService:\nGMT Laiks:\nPackage:\nVersion:\nOS versija: + Kas:\nPieprasījums:\nSatura valoda:\nSatura valsts:\nLietotnes valoda:\nPakalpojums:\nGMT laiks:\nPakotne:\nVersija:\nOS versija: Paziņojumi video apstrādes progresam Video haša paziņojums Atceras pēdējo uznirstošā loga izmēru un pozīciju - Atcerēties uznirstošā loga īpašības + Saglabāt uznirstošā loga izmēru, novietojumu Noklusējuma uznirstošā loga izšķirtspēja Skatīt uznirstošā logā Atvērt uznirstošā logā @@ -180,7 +179,7 @@ Datne pārvietota vai dzēsta Netika atrasts audio Netika atrasti video - Ārējie atskaņotāj neatbalsta šāda tipa saites + Ārējie atskaņotāji neatbalsta šāda tipa saites Atgūstas no atskaņotāja kļūdas Notika kļūda atskaņotājā Nevarēja atskaņot šo video @@ -223,20 +222,20 @@ Datne Tikai Vienreiz Vienmēr - Atskaņot Visu + Atskaņot visus Datne dzēsta Atsaukt Labākā izšķirtspēja Notīrīt Atspējots Mākslinieki - Albūmi + Albumi Dziesmas - Notikumi + Pasākumi Lietotāji Dziesmas - Videoklipi - Atskaņošanas saraksts + Video + Atskaņošanas saraksti Kanāli Visi Kļūdas ziņojums @@ -277,9 +276,7 @@ No %s Izveidoja %s Kanāla avatāra attēls - NewPipe šo saturu vēl neatbalsta. -\n -\nCerams, ka to atbalstīs nākamajā versijā. + NewPipe vēl neatbalsta šo saturu.\n\nCerams, ka tā atbalsts parādīsies turpmākajās versijās. Vai jūs domājat, ka plūsmas atjaunināšana ir pārāk lēna? Ja tā, mēģiniet iespējot ātro atjaunināšanu (to var mainīt iestatījumos vai nospiežot pogu zemāk). \n \nNewPipe piedāvā divas plūsmas atjaunināšanas stratēģijas: \n• Notiek visa abonēšanas kanāla iegūšana, kas ir lēna, bet pabeigta. \n• izmantojot īpašu servisu, kas ir ātrs, bet parasti nav pilnīgs. \n \nAtšķirība starp abiem ir tā, ka ātrajā parasti trūkst informācijas, piemēram, video ilgums vai veids (nevar atšķirt tiešraides video no parastajiem), un tas var atgriezt mazāk vienumu. \n \nYouTube ir pakalpojuma piemērs, kas piedāvā šo ātro metodi ar savu RSS plūsmu. \n \nTātad izvēle sakrīt ar vēlamo: ātrums vai precīza informācija. Izslēgt ātro režīmu Ieslēgt ātro režīmu @@ -300,8 +297,8 @@ Nav atlasīts neviens abonements Atlasīt abonementus - Notiek plūsmas apstrāde … - Notiek plūsmas ielāde… + Apstrādā kanāla jaunumus… + Ielādē kanāla jaunumus… Nav ielādēts: %d Atjaunināta: %s Abonementu grupas @@ -348,7 +345,7 @@ Pārtraukt ierobežotajos tīklos Maksimālais mēģinājumu skaits pirms lejupielādes atcelšanas Maksimālais atkārtoto mēģinājumu skaits - Stop + Pārtraukt Dzēst lejupielādētās datnes Vai tiešām vēlaties dzēst lejupielāžu vēsturi un visas lejupielādētās datnes? Notīrīt lejupielāžu vēsturi @@ -365,10 +362,10 @@ Nevarēja atrast serveri Nevarēja izveidot drošu savienojumu Nevar izveidot mērķa mapi - Failu nevar izveidot + Datni nevar izveidot Rādīt kļūdu Ir gaidāma lejupielāde ar šo nosaukumu - Notiek lejupielāde ar šo nosaukumu + Lejupielāde ar šādu nosaukumu jau pastāv nevar pārrakstīt datni Lejupielādētā datne ar šādu nosaukumu jau pastāv Datne ar šādu nosaukumu jau pastāv @@ -385,17 +382,12 @@ Solis Klusuma brīžos patīt uz priekšu Atvienot (var izraisīt traucējumus) - Paturiet prātā, ka šī darbība var pieprasīt lielu datu daudzumu\n\nVai vēlaties turpināt? + Paturiet prātā, ka šī darbība var pieprasīt lielu datu daudzumu\n\nVai tiešām vēlaties turpināt? Aizvērt Atvilkni Atvērt Atvilkni Vispopulārākais jūsuID , soundcloud.com/jūsuID - Importējiet SoundCloud profilu, ierakstot URL vai ID: -\n -\n1. Tīmekļa pārlūkprogrammā ieslēdziet \"datoru vietni\" (vietne nav pieejama mobilajām ierīcēm) -\n2. Dodieties uz šo URL:%1$s -\n3. Ierakstaties, kad tiek prasīts -\n4. Nokopējiet profila URL, uz kuru tikāt novirzīts. + Lai ievietotu SoundCloud profilu, ievadiet tā URL vai ID:\n\n1. Pārlūkā iestatiet \"Darbvirsmas režīms\" (vietne nav pieejama mobilajām ierīcēm) \n2. Dodieties uz šo URL adresi: %1$s\n3. Ja nepieciešams, autorizējieties\n4. Nokopējiet profila URL adreses joslā. Ievietot YouTube abonementus no Google Takeout:\n\n1. Dodieties uz šo vietni: %1$s\n2. Autorizējieties, ja nepieciešams\n3. Noklikšķiniet uz \"Visi dati iekļauti\", pēc tam uz \"Atcelt visu atlasi\", pēc tam atlasiet tikai \"Abonementi\" un noklikšķiniet uz \"Labi\"\n4. Noklikšķiniet uz \"Nākamais solis\" un pēc tam uz \"Izveidot eksportu\"\n5. Pēc tam, kad tā parādās, noklikšķiniet uz pogas \"Lejupielādēt\"\n6. Noklikšķiniet IEVIETOT DATNI zemāk un izvēlaties lejupielādēto .zip failu\n7. [Ja .zip failu neizdodas ievietot] Izvelciet .csv failu (parasti zem \"YouTube un YouTube Music/subscriptions/subscriptions.csv\") no arhīva, tad noklikšķiniet uz IEVIETOT DATNI zemāk un atlasiet tikko izvilkto csv failu Noklusējuma darbība, kad atver saturu — %s Pakalpojumu oriģinālteksti būs redzami video vienumos @@ -404,9 +396,9 @@ Atmiņas noplūdes uzraudzība var izraisīt lietotnes nereaģēšanu, kad tiek nottīrītas vairs nevajadzīgas lietas no atmiņas Mainīt atskaņotāja subtitru teksta mērogu un fona stilus. Nepieciešama lietotnes restartēšana, lai tā stātos spēkā Automātiski ģenerēts (neviens augšupielādētājs nav atrasts) - Ielikts atskaņošanas sarakstā + Pievienots atskaņošanas sarakstam Noņemt Grāmatzīmi - Piespraust atskaņošanas sarakstu + Saglabāt atskaņošanas sarakstu Izslēgt audio Ieslēgt audio Video atskaņotājs @@ -455,7 +447,7 @@ Piepildīt Pielāgot Noklusējuma satura valoda - Noklusējuma satura valsts + Vēlamā satura valsts Nevarēja atpazīt saites URL. Vai atvērt citā lietotnē? Neatbalstīts saites URL Rādīt padomu, kad nospiežat fona vai popup pogu pie video \"Informācija:\" @@ -514,7 +506,7 @@ Nospiediet uz meklēšanas ikonas, lai atrastu vēlamo saturu. Pielāgot paziņojumu krāsu Neko - Ielādējas + Buferē datus Samaisīt Atkārtot Jūs variet atlasīt ne vairāk kā 3 darbības, ko rādīt kompaktajā paziņojumā! @@ -571,7 +563,7 @@ Šis videoklips ir pieejams tikai YouTube Mūzikas Prēmijas dalībniekiem, tāpēc to nevar straumēt vai lejupielādēt ar Newpipe. Šis saturs ir privāts, tāpēc Newpipe to nevar straumēt vai lejupielādēt. Šis ir SoundCloud Go+ audio, vismaz jūsu valstī, tāpēc to nevar straumēt vai lejupielādēt ar Newpipe. - Šis saturs nav pieejams jūsu valstī. + Šis saturs nepieejams jūsu valstī. Izraisīt lietotnes nobrukšanu Rādīt kanāla informāciju Atrisināt @@ -607,7 +599,7 @@ Pašrocīgi veikt jaunas versijas pārbaudi Video atskaņošanas joslas sīktēla priekšskatījums Notiek atjauninājumu pārbaude… - Sākot ar Android 10, tikai“Krātuves Piekļuves Sistēma” ir atbalstīta + Sākot no Android 10, tiek atbalstīta tikai \"Krātuves Piekļuves Izstrādes platforma\" Nevarēja ielādēt straumi priekš \'%s\'. Kļūda lādējot plūsmu Autora konts tika slēgts.\nNewPipe turpmāk vairs nevarēs ielādēt šī kanāla saturu.\nVai tiešām vēlaties atteikties no šī kanāla abonēšanas? @@ -658,8 +650,8 @@ Pārbaudīt, vai nav jaunas tiešraides Rāda nobrukšanas izsaukšanas funkciju, kad izmantojiet atskaņotāju Dzēst dublikātus - Rādīt sekojošās tiešraides - Saraksti, kas atzīmēti pelēkā, jau satur šo objektu. + Rādīt šādus video/audio + Pelēki iekrāsotie atskaņošanas saraksti jau satur šo video/audio. LeakCanary nav pieejams Izveidot kļūdas paziņojumu Jebkurš tīkls @@ -706,9 +698,9 @@ Metadatu ielādēšana… Galvenās cilnes pozīcija Nepazīstams formāts - Daļēji skatīti + Daļēji skatītos/klausītos Nav tiešraides - Nav pietiekami daudz brīvās vietas uz ierīces + Ierīcē nav pietiekami daudz brīvas vietas Par Sīkattēli Kārtot @@ -720,7 +712,7 @@ Atiestata visus iestatījumus uz to sākotnējām vērtībām Atiestatīt iestatījumus Atiestatot iestatījumus, visi jūsu iestatītie iestatījumi tiks atmesti uz to noklusētajām vērtībām un lietotne palaista pa jaunu.\n\nVai tiešām vēlaties turpināt? - Šī opcija ir pieejama tikai, ja %s ir izvēlēts kā motīvs + Pieejams, kad motīvs iestatīts uz %s Piespraustais komentārs Paziņojumi ir atspējoti Jūs abonējāt šim kanālam @@ -729,7 +721,7 @@ , Pārslēgt visus Nepazīstama kvalitāte - Noskatīti + Noskatītos/noklausītos Gaidāmie dublēts aprakstošs @@ -744,14 +736,14 @@ Rādīt kļūdas paziņojumu Piegādāt kanālu cilnes Cilnes, kuras piegādāt, atjaunojot jauninājumus. Šai opcijai nav nekādas iedarbības, ja kanāls tiek atjaunots ātrajā režīmā. - Multivides tunelēšana tika atspējota pēc noklusējuma tādēļ, ka ir zināms, ka jūsu ierīces modelis to neatbalsta. + Multimediju tunelēšana tika atspējota pēc noklusējuma tādēļ, ka ir zināms, ka jūsu ierīces modelis to neatbalsta. Izvēlēties kvalitāti ārējiem atskaņotājiem ExoPlayer iestatījumi Kanālu cilnes \? %1$s \n%2$s - Tiec paziņots + Paziņot par jaunumiem Apakškanālu avatāri Augšuplādētāju avatāri Ilgums @@ -768,8 +760,8 @@ Rādīt vairāk Rādīt mazāk Avatāri - Tiešraides, kuras vēl neatbalsta lejuplādētājs, netiek rādītas - Izvēlēto tiešraidi neatbalsta ārējie atskaņotāji + Video/audio, ko lejupielādētājs vēl neatbalsta, netiek rādīti + Atlasīto video/audio neatbalsta ārējie atskaņotāji Atvērt atskaņošanas rindu Pārslēgt pilnekrāna režīmu Pārslēgt ekrāna orientāciju @@ -786,7 +778,7 @@ ExoPlayer noklusējuma vērtība Ārējiem atskaņotājiem nav pieejama neviena video straume Izmantot ExoPlayer dekodētāja atkāpšanās funkciju - Pārvaldīt dažus ExoPlayer iestatījumus. Lai šīs izmaiņas stātos spēkā, ir jārestartē atskaņotājs + Pārvalda dažus ExoPlayer iestatījumus. Lai izmaiņas stātos spēkā, ir jāaizver un jāatver pa jaunu atskaņotājs Iespējojiet šo opciju, ja ir problēmas ar dekodētāja inicializāciju, kas atgriežas pie zemākas prioritātes dekodētājiem, ja primārajiem dekodētājiem neizdodas inicializēties. Tas var izraisīt pazeminātu atskaņošanas kvalitāti, nekā, kad izmanto primāros dekoderus Ārējiem atskaņotājiem nav pieejama neviena audio straume Nezināms @@ -799,7 +791,7 @@ Īsie video Kopīgot atskaņošanas sarakstu Kopīgot nosaukumus - Importētā eksporta iestatījumi izmanto ievainojamo formātu, kas tika pārtraukts kopš NewPipe 0.27.0 versijas. Pārliecinieties, ka importētie dati ir no uzticama avota, un turpmāk ir vēlams izmantot tikai datus, kas veikti NewPipe 0.27.0 vai jaunākās versijās. Iestatījumu importēšanas atbalsts šajā neaizsargātajā formātā drīzumā tiks pilnībā aizvākts, un tad vecās NewPipe versijas vairs nevarēs importēt iestatījumus, kas veikti jaunajās versijās. + Iepriekš izgūtās datnes iestatījumi, ko ievieto, izmanto ievainojamo formātu, kas tika pārtraukts kopš NewPipe 0.27.0 versijas. Pārliecinieties, ka izgūtie dati ir no uzticama avota, un turpmāk ir vēlams izmantot datus, kas izgūti tikai no NewPipe 0.27.0 vai jaunākām versijām. Iestatījumu ievietošanas atbalsts šajā neaizsargātajā formātā drīzumā tiks pilnībā aizvākts, un tad vairs vecās NewPipe versijas nevarēs ievietot iestatījumus, kas izgūti no jaunajām versijām. Šis risinājums problēmas novēršanai atbrīvo un atkārtoti instantiē video kodekus, kad notiek virsmas maiņa, nevis tieši iestatīt virsmu kodekam. ExoPlayer jau izmanto šo risinājumu dažās ierīcēs, kurām ir šī problēma. Šis iestatījums darbosies tikai ierīcēs, kurās uzstādīta operētājsistēma Android 6 un jaunāka.\n\nIespējojot šo iestatījumu, var novērst atskaņošanas kļūdas, pārslēdzot pašreizējo video atskaņotāju vai pārejot uz pilnekrāna režīmu Atskaņošanas saraksti Kopīgot kā pagaidu YouTube atskaņošanas sarakstu @@ -853,4 +845,9 @@ Ievieto abonementus no iepriekšējās .json izgūšanas Izgūst jūsu abonementus .json datnē + NewPipe pārtrauc Android 5 atbalstu + Diemžēl NewPipe paļaujas uz dažām bibliotēkām, kuras ir pārtraukušas Android 5.0 un 5.1 atbalstu. Tāpēc nākamā NewPipe versija diemžēl darbosies tikai ierīcēs ar Android 6 vai jaunāku versiju. Sīkāka informācija ir pieejama emuāra rakstā. + Emuāra raksts + Šis saturs nepieejams pašlaik iestatītajai satura valstij.\n\nNomainīt iestatīto satura valsti variet zem \"Iestatījumi > Saturs > Vēlamā satura valsts\". + %1$s atteicās sniegt datus un pieprasa pieteikšanos, lai apstiprinātu, ka pieprasītājs nav robots.\n\nIespējams, ka %1$s ir īslaicīgi bloķējis jūsu IP adresi. Variet kādu laiku pagaidīt vai pārslēgties uz citu IP adresi (piemēram, ieslēdzot/izslēdzot VPN vai pārslēdzoties no Wi-Fi uz mobilajiem datiem).\n\nLūdzu, skatiet šo BUJ sadaļu, lai iegūtu vairāk informācijas. diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index d9cb328b8..77b2f7034 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -845,7 +845,7 @@ HTTP-fout 403 ontvangen van de server tijdens het afspelen, waarschijnlijk veroorzaakt door het verlopen van de streaming-url of een ip-blokkade HTTP-fout %1$s ontvangen van de server tijdens het afspelen HTTP-fout 403 ontvangen van de server tijdens het afspelen, waarschijnlijk veroorzaakt door een ip-blokkade of problemen met de deobfuscatie van de streaming-url - %1$s weigerde gegevens te verstrekken en vroeg om inlog­gegevens om te bevestigen dat de aanvrager geen bot is.\n\nUw IP-adres is mogelijk tijdelijk geblokkeerd door %1$s. U kunt even wachten of over­schakelen naar een ander IP-adres (bij­voorbeeld door een VPN in/uit te schakelen of door over te schakelen van wifi naar mobiele data).\n\nZie dit FAQ-item voor meer informatie. + %1$s weigerde gegevens te verstrekken en vroeg om een login om te bevestigen dat de aanvrager geen bot is.\n\nUw ip-adres is mogelijk tijdelijk geblokkeerd door %1$s. U kunt even wachten of overschakelen naar een ander ip-adres (bijvoorbeeld door een vpn in of uit te schakelen, of door over te schakelen van wifi naar mobiele data).\n\nBekijk deze FAQ voor meer informatie. Deze inhoud is niet beschikbaar voor het momenteel geselecteerde inhouds­land.\n\nWijzig uw selectie via ‘Instellingen > Inhoud > Standaard­land voor inhoud’. Details Oplossing diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index 33126a211..967e643d8 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -206,8 +206,8 @@ Искључите да бисте сакрили коментаре Због ограничења ExoPlayer-а, премотавање је постављено на %d секунди Да, и делимично одгледани видео снимци - Видео снимци који су одгледани пре и после додавања на плејлисту биће уклоњени. \nЈесте ли сигурни? Ово се не може поништити! - Уклонити одгледане видео снимке? + Токови који су одгледани пре и после додавања на списак извођења биће уклоњени. \nПоуздано уклонити? + Уклонити одгледане токове? Уклони одгледано Системски подразумевано Језик апликације @@ -859,6 +859,26 @@ HTTP грешка 403 примљена са сервера током репродукције, вероватно узрокована истеком URL-а за токовање или забраном IP адресе HTTP грешка %1$s примљена са сервера током репродукције HTTP грешка 403 примљена са сервера током репродукције, вероватно узрокована забраном IP адресе или проблемима са деобфускацијом URL-а за токовање - %1$s је одбио да пружи податке, тражећи пријаву како би се потврдило да подносилац захтева није бот.\n\nВаша IP адреса је можда привремено забрањена од стране %1$s, можете сачекати неко време или прећи на другу IP адресу (на пример, укључивањем/искључивањем VPN-а или преласком са WiFi-ја на мобилне податке). + %1$s је одбио да пружи податке, тражећи пријаву како би се потврдило да подносилац захтева није робот.\n\nВаша адреса ИП је можда привремено забрањена од стране %1$s, можете сачекати неко време или прећи на другу IP адресу (на пример, укључивањем/искључивањем VPN-а или преласком са WiFi-ја на мобилне податке). Овај садржај није доступан за тренутно изабрану земљу садржаја.\n\nПромените свој избор у „Подешавања > Садржај > Подразумевана држава садржаја“. + + Извозим %d претплату… + Извозим %d претплате… + Извозим %d претплата… + + + Учитавам %d претплату… + Учитавам %d претплате… + Учитавам %d претплата… + + + Увозим %d претплату… + Увозим %d претплате… + Увозим %d претплата… + + Увези претплату + Извету претплату + Увези претплате из претходне датотеке .json + Извези своје претплате у датотеку .json + Увези из претходног извоза diff --git a/fastlane/metadata/android/nl/changelogs/1000.txt b/fastlane/metadata/android/nl/changelogs/1000.txt index 91c136da5..bd1ac68c0 100644 --- a/fastlane/metadata/android/nl/changelogs/1000.txt +++ b/fastlane/metadata/android/nl/changelogs/1000.txt @@ -2,12 +2,12 @@ Verbeterd: • Maak de beschrijving van de afspeellijst klikbaar om meer/minder content te tonen • [PeerTube] Verwerk `subscribeto.me`-instantiekoppelingen automatisch • Begin alleen met het afspelen van één item in het geschiedenisscherm -Opgelost: +Opgelost: • Herstel de zichtbaarheid van de RSS-knop • Herstel crashes van de zoekbalkvoorvertoning • Herstel het afspelen van een item zonder miniatuur • Herstel het afsluiten van het downloaddialoogvenster voordat het verschijnt -• Herstel de pop-up van de lijst met gerelateerde items enqueue +• Herstel de pop-up van de wachtlijst met gerelateerde items • Herstel de volgorde in het dialoogvenster Toevoegen aan afspeellijst • Pas de lay-out van het bladwijzeritem van de afspeellijst aan diff --git a/fastlane/metadata/android/pt-BR/changelogs/1009.txt b/fastlane/metadata/android/pt-BR/changelogs/1009.txt new file mode 100644 index 000000000..96d496154 --- /dev/null +++ b/fastlane/metadata/android/pt-BR/changelogs/1009.txt @@ -0,0 +1,14 @@ +Importante +Informações e apoio à campanha Keep Android Open: https://www.keepandroidopen.org/ + +Melhorias +[Feed] Ordem de atualização de inscrições obsoletas aleatorizada +Não empilha mais páginas de comentários +Impede a propagação de cliques para as camadas inferiores na página de detalhes do vídeo + +Correções +Layout do cabeçalho de respostas sem avatar corrigido +Diversas correções na interface do player +[SoundCloud] Correção de transmissões com IDs longos + +E muitas outras correções e melhorias! diff --git a/fastlane/metadata/android/sk/changelogs/1010.txt b/fastlane/metadata/android/sk/changelogs/1010.txt new file mode 100644 index 000000000..ec58d0226 --- /dev/null +++ b/fastlane/metadata/android/sk/changelogs/1010.txt @@ -0,0 +1,9 @@ +Opravená chyba NullPointerException pri vkladaní akcií do fronty pomocou kontextu aplikácie +[YouTube] Opravené spracovanie trvania položky + +Aktualizované preklady a odstránené nepreložené jazykové verzie +Drobné vylepšenia pri práci s obrázkami + +Zmeny súvisiace s portovaním odberov v rámci refaktoringu +Zmeny súvisiace s portovaním cesty v rámci refaktoringu +Aktualizácia závislosti a Gradle na najnovšiu stabilnú verziu diff --git a/fastlane/metadata/android/sk/changelogs/1011.txt b/fastlane/metadata/android/sk/changelogs/1011.txt new file mode 100644 index 000000000..85e3fceb0 --- /dev/null +++ b/fastlane/metadata/android/sk/changelogs/1011.txt @@ -0,0 +1 @@ +Pridané vyskakovacie okno s informáciou pre používateľov, že verzia v0.28.7 už nebude podporovať systém Android 5 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1005.txt b/fastlane/metadata/android/zh-Hant/changelogs/1005.txt new file mode 100644 index 000000000..8a12b228f --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/1005.txt @@ -0,0 +1,17 @@ +新增 +• 加入 Android Auto 支援 +• 可將訂閱動態群組設為主畫面分頁 +• [YouTube] 以暫時播放清單分享 +• [SoundCloud] 新增「喜歡的內容」頻道分頁 + +改進 +• 改善搜尋列提示文字 +• 在「下載內容」中顯示下載日期 +• 採用 Android 13 的個別 App 語言功能 + +修正 +• 修正深色模式下文字顏色異常的問題 +• [YouTube] 修正播放清單無法載入超過 100 個項目的問題 +• [YouTube] 修正推薦影片消失的問題 +• 修正「歷史紀錄」清單畫面當機的問題 +• 修正留言回覆中的時間戳記問題 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1006.txt b/fastlane/metadata/android/zh-Hant/changelogs/1006.txt new file mode 100644 index 000000000..d07fa9796 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/1006.txt @@ -0,0 +1,16 @@ +# 改進 +點選時間戳記時,保留目前的播放器 +盡可能嘗試復原尚未完成的下載任務 +新增選項,可刪除下載紀錄而不一併刪除檔案 +「顯示在其他應用程式上層」權限:在 Android R 之後的版本顯示說明對話框 +支援開啟 on.soundcloud 連結 +大量小幅改進與效能最佳化 + +# 修正 +修正 Android 7 以下版本的短格式數字顯示問題 +修正幽靈通知問題 +修正 SRT 字幕檔相關問題 +修正大量當機問題 + +# 開發 +內部程式碼現代化 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1008.txt b/fastlane/metadata/android/zh-Hant/changelogs/1008.txt new file mode 100644 index 000000000..d86cb0609 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/1008.txt @@ -0,0 +1,4 @@ +∙ 修正串流無法從上次播放位置繼續播放的問題 +∙ [YouTube] 新增更多頻道網址格式支援 +∙ [YouTube] 新增更多影片中繼資訊格式支援 +∙ 更新翻譯內容 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1009.txt b/fastlane/metadata/android/zh-Hant/changelogs/1009.txt new file mode 100644 index 000000000..68a31c3f0 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/1009.txt @@ -0,0 +1,14 @@ +重要事項 +新增「維持 Android 開放」(Keep Android Open)倡議的相關資訊與行動號召:https://www.keepandroidopen.org/ + +改進 +[訂閱動態] 隨機調整尚未更新訂閱項目的更新順序 +不再堆疊留言頁面 +在影片詳細資料頁面點選時,不再將點選事件傳遞到底層畫面 + +修正 +修正沒有頭像圖片時,留言回覆標頭的版面配置問題 +修正多項播放器相關 UI 問題 +[SoundCloud] 修正長 ID 串流內容的問題 + +以及更多修正與改進! diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1010.txt b/fastlane/metadata/android/zh-Hant/changelogs/1010.txt new file mode 100644 index 000000000..f1d960baa --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/1010.txt @@ -0,0 +1,9 @@ +使用 Application Context 修正加入佇列操作中的 NullPointerException 問題 +[YouTube] 修正項目時長解析問題 + +更新翻譯內容,並移除尚未翻譯的語系 +小幅改善圖片處理方式 + +移植重構版本中的訂閱相關變更 +移植重構版本中的路徑相關變更 +將相依套件與 Gradle 更新至最新穩定版 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/1011.txt b/fastlane/metadata/android/zh-Hant/changelogs/1011.txt new file mode 100644 index 000000000..655736932 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/1011.txt @@ -0,0 +1 @@ +新增彈出式視窗通知使用者 v0.28.7 將停止支援 Android 5 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/66.txt b/fastlane/metadata/android/zh-Hant/changelogs/66.txt new file mode 100644 index 000000000..5239b5786 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/66.txt @@ -0,0 +1,33 @@ +# v0.13.7 更新日誌 + +### 修正 +- 修正 v0.13.6 的排序篩選器問題 + +# v0.13.6 更新日誌 + +### 改進 + +- 停用漢堡選單圖示動畫 #1486 +- 可復原已刪除的下載項目 #1472 +- 在分享選單中加入下載選項 #1498 +- 在長按選單中加入分享選項 #1454 +- 離開時最小化主播放器 #1354 +- 更新程式庫版本,並修正資料庫備份問題 #1510 +- ExoPlayer 2.8.2 更新 #1392 + - 重新設計播放速度控制對話框,以支援不同級距,讓速度調整更快速。 + - 在播放速度控制中加入切換開關,可在播放時快轉略過靜音段落。這對有聲書和特定音樂類型應該會很有幫助,並可帶來真正無縫的體驗(也可能會讓有大量靜音段落的歌曲出問題 =\\)。 + - 重構媒體來源解析方式,允許在播放器內部隨媒體一併傳遞中繼資料,而不必手動處理。現在我們有單一中繼資料來源,且播放開始時即可直接使用。 + - 修正開啟播放清單片段時,遠端播放清單中繼資料在有新的中繼資料可用時不會更新的問題。 + - 多項 UI 修正:#1383、背景播放器通知控制項現在一律為白色,也更容易透過滑甩手勢關閉彈出播放器 +- 使用採用重構架構的新擷取器,以支援多服務 + +### 修正 + +- 修正 #1440 影片資訊版面損壞問題 #1491 +- 觀看紀錄修正 #1497 + - #1495:使用者存取播放清單時,立即更新中繼資料(縮圖、標題與影片數量)。 + - #1475:當使用者在詳細資料片段中以外部播放器開始播放影片時,在資料庫中登記一次觀看紀錄。 +- 修正彈出模式下的螢幕逾時問題。#1463(修正 #640) +- 主影片播放器修正 #1509 + - [#1412] 修正播放器 Activity 位於背景時收到新的 Intent,重複播放模式會導致播放器發生 NPE 的問題。 + - 修正未授予彈出視窗權限時,將播放器最小化為彈出播放器不會銷毀播放器的問題。 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/68.txt b/fastlane/metadata/android/zh-Hant/changelogs/68.txt new file mode 100644 index 000000000..38e3bcf51 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/68.txt @@ -0,0 +1,31 @@ +# v0.14.1 變更 + +### 修正 +- 修正無法解密影片網址的問題 #1659 +- 修正說明文字中的連結擷取不完整的問題 #1657 + +# v0.14.0 變更 + +### 新增 +- 全新側邊抽屜設計 #1461 +- 全新可自訂首頁 #1461 + +### 改進 +- 重新設計手勢控制 #1604 +- 關閉彈出播放器的新方式 #1597 + +### 修正 +- 修正訂閱人數無法取得時發生錯誤的問題。解決 #1649。 + - 在這類情況下顯示「訂閱人數無法取得」 +- 修正 YouTube 播放清單為空時發生 NPE(NullPointerException)的問題 +- 快速修正 SoundCloud 中的 Kiosk 問題 +- 重構與錯誤修正 #1623 + - 修正循環搜尋結果問題 #1562 + - 修正播放進度列版面未固定配置的問題 + - 修正 YT Premium 影片未正確封鎖的問題 + - 修正影片有時無法載入的問題(由 DASH 解析造成) + - 修正影片說明中的連結 + - 當有人嘗試下載到外接 SD 卡時顯示警告 + - 修正 NothingShownException 會觸發回報的問題 + - 修正 Android 8.1 的背景播放器未顯示縮圖的問題 [請見此處](https://github.com/TeamNewPipe/NewPipe/issues/943) +- 修正廣播接收器的登記問題。解決 #1641。 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/69.txt b/fastlane/metadata/android/zh-Hant/changelogs/69.txt new file mode 100644 index 000000000..cc0fc96ec --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/69.txt @@ -0,0 +1,19 @@ +### 新增 +- 在訂閱項目中加入長按刪除與分享功能 #1516 +- 平板 UI 與格狀清單版面 #1617 + +### 改進 +- 儲存並重新載入上次使用的長寬比 #1748 +- 在「下載」畫面中啟用線性版面,並顯示完整影片名稱 #1771 +- 可直接在訂閱分頁中刪除與分享訂閱項目 #1516 +- 若播放佇列已經結束,加入佇列現在會觸發影片播放 #1783 +- 為音量與亮度手勢提供個別設定 #1644 +- 加入在地化支援 #1792 + +### 修正 +- 修正使用 . 格式時的時間解析,讓 NewPipe 可在芬蘭使用 +- 修正訂閱人數 +- 為 API 28 以上裝置加入前景服務權限 #1830 + +### 已知錯誤 +- Android P 上無法儲存播放狀態 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/70.txt b/fastlane/metadata/android/zh-Hant/changelogs/70.txt new file mode 100644 index 000000000..b6f09bb8f --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/70.txt @@ -0,0 +1,25 @@ +注意:這個版本很可能錯誤滿天飛,就跟上一個版本一樣。不過,由於自 17 日起服務完全停擺,有一個壞掉的版本總比沒有版本好,對吧?¯\_(ツ)_/¯ + +### 改進 +* 現在只要點一下即可開啟已下載的檔案 #1879 +* 停止支援 Android 4.1 至 4.3 #1884 +* 移除舊播放器 #1884 +* 將串流向右滑動,即可從目前播放佇列中移除 #1915 +* 手動將新串流加入佇列時,會移除自動排入佇列的串流 #1878 +* 下載後處理,並實作缺少的功能 #1759,由 @kapodamy 完成 + * 後處理基礎架構 + * 適當的錯誤處理基礎架構(用於下載器) + * 改用佇列,而不是同時進行多個下載 + * 將已序列化的待處理下載項目(`.giga` 檔案)移至 App 資料 + * 實作最大下載重試次數 + * 正確的多執行緒下載暫停功能 + * 切換到行動網路時停止下載(從未正常運作,請見第 2 點) + * 儲存執行緒數量,供之後下載使用 + * 修正大量不一致之處 + +### 修正 +* 修正預設解析度設為最佳,且行動數據解析度受限時發生當機的問題 #1835 +* 修正彈出播放器當機問題 #1874 +* 修正嘗試開啟背景播放器時發生 NPE 的問題 #1901 +* 修正啟用自動排入佇列時插入新串流的問題 #1878 +* 修正解密功能停擺問題 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/740.txt b/fastlane/metadata/android/zh-Hant/changelogs/740.txt new file mode 100644 index 000000000..4bee1e42b --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/740.txt @@ -0,0 +1,23 @@ +

改進

+
    +
  • 讓留言中的連結可點選,並加大文字大小
  • +
  • 點選留言中的時間戳記連結時,可跳轉到對應播放位置
  • +
  • 根據最近選取的狀態顯示偏好的分頁
  • +
  • 在播放清單視窗中長按「背景播放」時,將播放清單加入佇列
  • +
  • 分享的文字不是網址時,改為搜尋該文字
  • +
  • 在主影片播放器中加入「從目前時間分享」按鈕
  • +
  • 影片佇列播放完畢時,在主播放器中加入關閉按鈕
  • +
  • 在影片清單項目的長按選單中加入「直接在背景播放」
  • +
  • 改善「播放/加入佇列」指令的英文翻譯
  • +
  • 小幅效能改進
  • +
  • 移除未使用的檔案
  • +
  • 將 ExoPlayer 更新至 2.9.6
  • +
  • 加入 Invidious 連結支援
  • +
+

修正

+
    +
  • 修正停用留言與相關串流時的捲動問題
  • +
  • 修正 CheckForNewAppVersionTask 在不應執行時仍會執行的問題
  • +
  • 修正 YouTube 訂閱匯入:忽略網址無效的項目,並保留標題為空的項目
  • +
  • 修正無效的 YouTube 網址問題:簽章標籤名稱不一定是「signature」,導致串流無法載入
  • +
diff --git a/fastlane/metadata/android/zh-Hant/changelogs/963.txt b/fastlane/metadata/android/zh-Hant/changelogs/963.txt new file mode 100644 index 000000000..fcde1570b --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/963.txt @@ -0,0 +1 @@ +• [YouTube] 修正頻道延續載入問題 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/965.txt b/fastlane/metadata/android/zh-Hant/changelogs/965.txt new file mode 100644 index 000000000..6a942c137 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/965.txt @@ -0,0 +1,6 @@ +修正重新排序頻道群組時發生當機的問題。 +修正無法從頻道和播放清單取得更多 YouTube 影片的問題。 +修正無法取得 YouTube 留言的問題。 +新增對 YouTube 網址中 /watch/、/v/ 和 /w/ 子路徑的支援。 +修正 SoundCloud 客戶端 ID 與地區限制內容的擷取問題。 +新增北庫德語系在地化翻譯。 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/966.txt b/fastlane/metadata/android/zh-Hant/changelogs/966.txt new file mode 100644 index 000000000..1f3dad94d --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/966.txt @@ -0,0 +1,14 @@ +新增: +• 新增服務:Bandcamp + +改進: +• 新增選項,讓 App 跟隨裝置主題 +• 顯示改進後的錯誤面板,以避免部分當機 +• 針對內容無法使用的原因顯示更多資訊 +• 硬體空白鍵可觸發播放/暫停 +• 顯示「下載已開始」浮動提示 + +修正: +• 修正在背景播放時,影片詳細資料中的縮圖過小的問題 +• 修正最小化播放器中的標題為空白的問題 +• 修正上次使用的縮放模式未正確復原的問題 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/967.txt b/fastlane/metadata/android/zh-Hant/changelogs/967.txt new file mode 100644 index 000000000..72329d381 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/967.txt @@ -0,0 +1 @@ +修正 YouTube 在歐盟無法正常運作的問題。這是由新的 Cookie 與隱私權同意機制造成,該機制要求 NewPipe 設定 CONSENT Cookie。 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/968.txt b/fastlane/metadata/android/zh-Hant/changelogs/968.txt new file mode 100644 index 000000000..4f08036c5 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/968.txt @@ -0,0 +1,7 @@ +在長按選單中新增頻道詳細資料選項。 +新增可從播放清單介面重新命名播放清單名稱的功能。 +允許使用者在影片緩衝時暫停播放。 +微調白色主題。 +修正使用較大字體大小時文字重疊的問題。 +修正 Formuler 與 Zephier 裝置沒有影像的問題。 +修正多項當機問題。 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/969.txt b/fastlane/metadata/android/zh-Hant/changelogs/969.txt new file mode 100644 index 000000000..e692f1fcd --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/969.txt @@ -0,0 +1,8 @@ +• 允許安裝至外部儲存空間 +• [Bandcamp] 新增支援在串流項目上顯示前三則留言 +• 只有在下載開始時才顯示「下載已開始」浮動提示 +• 沒有已儲存的 Cookie 時,不設定 reCaptcha Cookie +• [播放器] 改善快取效能 +• [播放器] 修正播放器不會自動播放的問題 +• 刪除下載項目時,關閉先前的 Snackbar +• 修正嘗試刪除不在清單中的物件時發生的問題 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/970.txt b/fastlane/metadata/android/zh-Hant/changelogs/970.txt new file mode 100644 index 000000000..ae7fe26ac --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/970.txt @@ -0,0 +1,11 @@ +新增 +• 在說明下方顯示內容中繼資料(標籤、類別、授權條款……) +• 在遠端(非本機)播放清單中新增「顯示頻道詳細資料」選項 +• 在長按選單中新增「在瀏覽器中開啟」選項 + +修正 +• 修正影片詳細資料頁面在旋轉螢幕時當機的問題 +• 修正播放器中的「使用 Kodi 播放」按鈕總是提示安裝 Kore 的問題 +• 修正並改善設定匯入與匯出路徑 +• [YouTube] 修正留言按讚數 +以及更多內容 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/971.txt b/fastlane/metadata/android/zh-Hant/changelogs/971.txt new file mode 100644 index 000000000..58db8ae52 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/971.txt @@ -0,0 +1,3 @@ +Hotfix +• 增加再緩衝後播放所需的緩衝區大小 +• 修正在平板與電視上點選播放器中的播放佇列圖示時發生當機的問題 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/972.txt b/fastlane/metadata/android/zh-Hant/changelogs/972.txt new file mode 100644 index 000000000..addc092b2 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/972.txt @@ -0,0 +1,14 @@ +新增 +辨識說明中的時間戳記與主題標籤 +新增手動平板模式設定 +新增可在訂閱動態中隱藏已播放項目的功能 + +改進 +正確支援 Storage Access Framework +改善無法使用與已終止頻道的錯誤處理 +Android 10 以上使用者的 Android 分享面板現在會顯示內容標題。 +更新 Invidious 執行個體,並支援 Piped 連結。 + +修正 +[YouTube] 年齡限制內容 +避免開啟選擇對話框時發生視窗洩漏例外 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/973.txt b/fastlane/metadata/android/zh-Hant/changelogs/973.txt new file mode 100644 index 000000000..460af4930 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/973.txt @@ -0,0 +1,4 @@ +Hotfix +• 修正格狀版面中縮圖與標題被裁切的問題,原因是每列可容納多少部影片的計算方式有誤 +• 修正從分享選單開啟下載對話框時,對話框會直接消失且未執行任何動作的問題 +• 更新與開啟外部 Activity 相關的程式庫,例如 Storage Access Framework 檔案選擇器 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/974.txt b/fastlane/metadata/android/zh-Hant/changelogs/974.txt new file mode 100644 index 000000000..ae9b27767 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/974.txt @@ -0,0 +1,5 @@ +Hotfix +• 修正 YouTube 限速造成的緩衝問題 +• 修正 YouTube 留言擷取問題,以及留言停用時發生的當機問題 +• 修正 YouTube 音樂搜尋問題 +• 修正 PeerTube 直播串流問題 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/975.txt b/fastlane/metadata/android/zh-Hant/changelogs/975.txt new file mode 100644 index 000000000..d0f6b1389 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/975.txt @@ -0,0 +1,17 @@ +新功能 +• 拖曳播放進度時顯示縮圖預覽 +• 偵測留言是否已停用 +• 允許將訂閱動態項目標記為已觀看 +• 顯示留言愛心標記 + +改進 +• 改善中繼資料與標籤版面配置 +• 將服務代表色套用至 UI 元件 + +修正 +• 修正迷你播放器中的縮圖問題 +• 修正播放佇列中有重複項目時無限緩衝的問題 +• 多項播放器修正,例如旋轉螢幕與更快速關閉 +• 修正 ReCAPTCHA 仍在背景載入的問題 +• 重新整理訂閱動態時停用點選操作 +• 修正部分下載器當機問題 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/976.txt b/fastlane/metadata/android/zh-Hant/changelogs/976.txt new file mode 100644 index 000000000..af44c4625 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/976.txt @@ -0,0 +1,10 @@ +• 新增可直接以全螢幕開啟播放器的選項 +• 可選擇要顯示哪些類型的搜尋建議 +• 深色主題變得更深,並新增深色啟動畫面 +• 改善檔案選擇器,將不需要的檔案以灰色顯示 +• 修正 YouTube 訂閱匯入問題 +• 重新播放串流時,需要再次點一下重播按鈕 +• 修正音訊工作階段關閉問題 +• [Android TV] 修正使用方向鍵時,播放進度列跳轉幅度過大的問題 + +若要查看其他變更,請參閱下方「連結」分頁中的更新日誌(以及部落格文章)。 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/977.txt b/fastlane/metadata/android/zh-Hant/changelogs/977.txt new file mode 100644 index 000000000..272558b44 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/977.txt @@ -0,0 +1,10 @@ +• 在長按選單中新增「接著播放」按鈕 +• 將 YouTube Shorts 路徑前綴加入 Intent 篩選器 +• 修正設定匯入問題 +• 在佇列畫面中,交換播放進度列與播放器按鈕的位置 +• 修正多項與 MediaSessionManager 相關的問題 +• 修正影片結束後播放進度列未走完的問題 +• 在 RealtekATV 上停用媒體通道功能 +• 擴大最小化播放器按鈕的可點選範圍 + +若要查看其他變更,請參閱下方「連結」分頁中的更新日誌(以及部落格文章)。 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/979.txt b/fastlane/metadata/android/zh-Hant/changelogs/979.txt new file mode 100644 index 000000000..6cfefd9be --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/979.txt @@ -0,0 +1,2 @@ +* 修正繼續播放功能 +* 改進確保用來判斷 NewPipe 是否應檢查新版本的服務不會在背景中啟動的相關處理 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/980.txt b/fastlane/metadata/android/zh-Hant/changelogs/980.txt new file mode 100644 index 000000000..dc54fcb83 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/980.txt @@ -0,0 +1,13 @@ +新功能 +• 在分享選單中新增「加入播放清單」選項 +• 新增 y2u.be 與 PeerTube 短網址支援 + +改善 +• 讓播放速度控制項更加精簡 +• 訂閱動態現在會醒目標示新項目 +• 訂閱動態中的「顯示已觀看項目」選項現在會被儲存 + +修正 +• 修正 YouTube 喜歡與不喜歡數擷取問題 +• 修正從背景返回後自動重播的問題 +以及更多內容 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/983.txt b/fastlane/metadata/android/zh-Hant/changelogs/983.txt new file mode 100644 index 000000000..2492257a9 --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/983.txt @@ -0,0 +1,9 @@ +新增全新的點兩下快轉/倒轉介面與運作方式 +讓設定可被搜尋 +將置頂留言醒目標示為置頂留言 +新增支援以 App 開啟 FSFE 的 PeerTube 執行個體 +新增錯誤通知 +修正切換播放器時,播放佇列第一個項目的重播問題 +直播串流緩衝時,延長判定失敗前的等待時間 +修正本機搜尋結果順序 +修正播放佇列中的空白項目欄位 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/994.txt b/fastlane/metadata/android/zh-Hant/changelogs/994.txt new file mode 100644 index 000000000..1e45e1b8e --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/994.txt @@ -0,0 +1,15 @@ +新增 +• 支援多音軌/多語言 +• 允許在螢幕任一側設定音量與亮度手勢 +• 支援在螢幕底部顯示主分頁 + +改進 +• [Bandcamp] 處理付費牆後方的曲目 + +修正 +• [YouTube] 修正串流的 403 HTTP 錯誤 +• 修正從播放清單畫面切換到主播放器時,播放器畫面全黑的問題 +• 修正播放器服務的記憶體洩漏問題 +• [PeerTube] 修正上傳者與子頻道頭像顛倒的問題 + +以及更多內容 diff --git a/fastlane/metadata/android/zh-Hant/changelogs/995.txt b/fastlane/metadata/android/zh-Hant/changelogs/995.txt new file mode 100644 index 000000000..9e22a687a --- /dev/null +++ b/fastlane/metadata/android/zh-Hant/changelogs/995.txt @@ -0,0 +1,16 @@ +新增 +• 支援頻道分頁 +• 可選擇圖片品質 +• 取得所有圖片的網址 + +改進 +• 改善播放器介面的無障礙使用體驗 +• 改善僅下載影片時的音訊選擇 +• 新增選項,可在分享播放清單內容時包含播放清單名稱與影片名稱 + +修正 +• [YouTube] 修正喜歡數取得問題 +• 修正播放器無回應提示與當機問題 +• 修正語言選擇器選到錯誤語言的問題 +• 修正播放器音訊焦點未遵循靜音設定的問題 +• 修正播放清單項目偶爾無法新增的問題 From 50925a1d6cfbd5a28edf88473907a429812b49cc Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Sun, 24 May 2026 13:58:45 +0800 Subject: [PATCH 083/127] libs: Bump dependencies to latest releases Signed-off-by: Aayush Gupta --- gradle/libs.versions.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 012fd865e..e9b78fe94 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -15,7 +15,7 @@ bridge = "v2.0.2" cardview = "1.0.0" checkstyle = "13.4.2" coil = "3.4.0" -compose = "1.11.1" +compose = "1.11.2" constraintlayout = "2.2.1" core = "1.18.0" coroutines = "1.11.0" @@ -29,7 +29,7 @@ jsoup = "1.22.2" junit = "4.13.2" junit-ext = "1.3.0" koin = "4.2.1" -koin-plugin = "1.0.0-RC2" +koin-plugin = "1.0.0" kotlin = "2.3.21" kotlinx-coroutines-rx3 = "1.11.0" kotlinx-serialization-json = "1.11.0" @@ -72,7 +72,7 @@ teamnewpipe-nanojson = "e9d656ddb49a412a5a0a5d5ef20ca7ef09549996" # to cause jitpack to regenerate the artifact. teamnewpipe-newpipe-extractor = "v0.26.2" viewpager2 = "1.1.0" -webkit = "1.15.0" +webkit = "1.15.0" # New versions require minSdk 24 work = "2.11.2" [libraries] From a4abadd02afb5025cad0ab146fc7d04b149be66d Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Sun, 24 May 2026 14:56:04 +0800 Subject: [PATCH 084/127] gradle: Format build scripts with ktlint Signed-off-by: Aayush Gupta --- app/build.gradle.kts | 15 +++++++-------- settings.gradle.kts | 12 ++++++------ 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 22ec75bed..6bafd10bf 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -207,19 +207,19 @@ sonar { } dependencies { - /** Desugaring **/ + // Desugaring coreLibraryDesugaring(libs.android.desugar) - /** NewPipe libraries **/ + // NewPipe libraries implementation(libs.newpipe.nanojson) implementation(libs.newpipe.extractor) implementation(libs.newpipe.filepicker) - /** Checkstyle **/ + // Checkstyle checkstyle(libs.puppycrawl.checkstyle) ktlint(libs.pinterest.ktlint) - /** AndroidX **/ + // AndroidX implementation(libs.androidx.appcompat) implementation(libs.androidx.cardview) implementation(libs.androidx.constraintlayout) @@ -248,7 +248,7 @@ dependencies { // Kotlinx Serialization implementation(libs.kotlinx.serialization.json) - /** Third-party libraries **/ + // Third-party libraries implementation(libs.livefront.bridge) implementation(libs.evernote.statesaver.core) kapt(libs.evernote.statesaver.compiler) @@ -298,8 +298,7 @@ dependencies { // Date and time formatting implementation(libs.ocpsoft.prettytime) - /** Debugging **/ - // Memory leak detection + // Debugging and memory leak detection debugImplementation(libs.squareup.leakcanary.watcher) debugImplementation(libs.squareup.leakcanary.plumber) debugImplementation(libs.squareup.leakcanary.core) @@ -307,7 +306,7 @@ dependencies { debugImplementation(libs.facebook.stetho.core) debugImplementation(libs.facebook.stetho.okhttp3) - /** Testing **/ + // Testing testImplementation(libs.junit) testImplementation(libs.mockito.core) diff --git a/settings.gradle.kts b/settings.gradle.kts index 1b616793f..9f5915073 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -20,7 +20,7 @@ dependencyResolutionManagement { maven(url = "https://repo.clojars.org") } } -include (":app") // androidApp +include(":app") // androidApp include(":desktopApp") include("shared") @@ -28,9 +28,9 @@ include("shared") // We assume, that NewPipe and NewPipe Extractor have the same parent directory. // If this is not the case, please change the path in includeBuild(). -//includeBuild("../NewPipeExtractor") { -// dependencySubstitution { -// substitute(module("com.github.TeamNewPipe:NewPipeExtractor")) -// .using(project(":extractor")) +// includeBuild("../NewPipeExtractor") { +// dependencySubstitution { +// substitute(module("com.github.TeamNewPipe:NewPipeExtractor")) +// .using(project(":extractor")) +// } // } -//} From 860a9004fe2d6127297773a706904c7a05a4ca5a Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Tue, 26 May 2026 17:25:45 +0800 Subject: [PATCH 085/127] Import and generate BOM using about libraries plugin The plugin traverses child libraries automatically, so adding it to the parent modules allows us to include dependencies of the whole app and not just the shared part. Configure app and desktopApp to generate the BOM in respective directories of shared module. As iosApp only contains swift, add it's configuration in shared. Also override extractor and evernote's messed up license Generated using: ./gradlew exportLibraryDefinitions Signed-off-by: Aayush Gupta --- app/build.gradle.kts | 21 + build.gradle.kts | 1 + .../libraries/com.evernote.android.json | 15 + .../com.github.newpipeextractor.json | 15 + desktopApp/build.gradle.kts | 9 + gradle/libs.versions.toml | 2 + shared/build.gradle.kts | 10 + .../androidMain/assets/aboutlibraries.json | 3408 +++++++++++++++++ .../composeResources/files/keep.xml | 7 + .../src/iosMain/resources/aboutlibraries.json | 923 +++++ .../src/jvmMain/resources/aboutlibraries.json | 1129 ++++++ 11 files changed, 5540 insertions(+) create mode 100644 config/aboutlibraries/libraries/com.evernote.android.json create mode 100644 config/aboutlibraries/libraries/com.github.newpipeextractor.json create mode 100644 shared/src/androidMain/assets/aboutlibraries.json create mode 100644 shared/src/commonMain/composeResources/files/keep.xml create mode 100644 shared/src/iosMain/resources/aboutlibraries.json create mode 100644 shared/src/jvmMain/resources/aboutlibraries.json diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 6bafd10bf..4098cfaed 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -4,6 +4,8 @@ */ import com.android.build.api.dsl.ApplicationExtension +import com.mikepenz.aboutlibraries.plugin.DuplicateMode +import java.util.regex.Pattern plugins { alias(libs.plugins.android.application) @@ -12,6 +14,7 @@ plugins { alias(libs.plugins.jetbrains.kotlin.parcelize) alias(libs.plugins.jetbrains.kotlinx.serialization) alias(libs.plugins.sonarqube) + alias(libs.plugins.about.libraries) checkstyle } @@ -211,6 +214,7 @@ dependencies { coreLibraryDesugaring(libs.android.desugar) // NewPipe libraries + implementation(projects.shared) implementation(libs.newpipe.nanojson) implementation(libs.newpipe.extractor) implementation(libs.newpipe.filepicker) @@ -315,3 +319,20 @@ dependencies { androidTestImplementation(libs.androidx.room.testing) androidTestImplementation(libs.assertj.core) } + +aboutLibraries { + collect { + configPath = file("../config/aboutlibraries") + } + export { + outputFile = file("../shared/src/androidMain/assets/aboutlibraries.json") + prettyPrint = true + excludeFields.addAll("organization", "scm", "funding") + } + library { + exclusionPatterns = listOf( + Pattern.compile("^com\\.github\\.TeamNewPipe:NewPipeExtractor$"), + Pattern.compile("^com\\.evernote:android-state$") + ) + } +} diff --git a/build.gradle.kts b/build.gradle.kts index e3e25c4fa..4005c3639 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -23,4 +23,5 @@ plugins { alias(libs.plugins.jetbrains.kotlinx.serialization) apply false alias(libs.plugins.sonarqube) apply false alias(libs.plugins.koin) apply false + alias(libs.plugins.about.libraries) apply false } diff --git a/config/aboutlibraries/libraries/com.evernote.android.json b/config/aboutlibraries/libraries/com.evernote.android.json new file mode 100644 index 000000000..e3c16a2a0 --- /dev/null +++ b/config/aboutlibraries/libraries/com.evernote.android.json @@ -0,0 +1,15 @@ +{ + "uniqueId": "com.evernote:android-state", + "artifactVersion": "1.4.1", + "name": "Android State", + "description": "Android library to save object states into a bundle.", + "website": "https://github.com/evernote/android-state", + "developers": [ + { + "name": "Ralf Wondratschek" + } + ], + "licenses": [ + "EPL-1.0" + ] +} diff --git a/config/aboutlibraries/libraries/com.github.newpipeextractor.json b/config/aboutlibraries/libraries/com.github.newpipeextractor.json new file mode 100644 index 000000000..70e308c60 --- /dev/null +++ b/config/aboutlibraries/libraries/com.github.newpipeextractor.json @@ -0,0 +1,15 @@ +{ + "uniqueId": "com.github.TeamNewPipe:NewPipeExtractor", + "artifactVersion": "v0.26.2", + "name": "NewPipe Extractor", + "description": "A library for extracting data from streaming websites, used in NewPipe", + "website": "https://github.com/TeamNewPipe/NewPipeExtractor", + "developers": [ + { + "name": "Team NewPipe" + } + ], + "licenses": [ + "GPL-3.0-or-later" + ] +} diff --git a/desktopApp/build.gradle.kts b/desktopApp/build.gradle.kts index a9d82ae0e..a9b022737 100644 --- a/desktopApp/build.gradle.kts +++ b/desktopApp/build.gradle.kts @@ -9,6 +9,7 @@ plugins { alias(libs.plugins.jetbrains.kotlin.jvm) alias(libs.plugins.jetbrains.kotlin.compose) alias(libs.plugins.jetbrains.compose.multiplatform) + alias(libs.plugins.about.libraries) } dependencies { @@ -30,3 +31,11 @@ compose.desktop { } } } + +aboutLibraries { + export { + outputFile = file("../shared/src/jvmMain/resources/aboutlibraries.json") + prettyPrint = true + excludeFields.addAll("organization", "scm", "funding") + } +} diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index e9b78fe94..753aabdcb 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,6 +4,7 @@ # [versions] +about-libraries = "14.2.1" acra = "5.13.1" activity = "1.13.0" agp = "9.2.1" @@ -166,6 +167,7 @@ squareup-okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhtt zacsweers-autoservice-compiler = { module = "dev.zacsweers.autoservice:auto-service-ksp", version.ref = "autoservice-zacsweers" } [plugins] +about-libraries = { id = "com.mikepenz.aboutlibraries.plugin", version.ref = "about-libraries" } android-application = { id = "com.android.application", version.ref = "agp" } android-legacy-kapt = { id = "com.android.legacy-kapt", version.ref = "agp" } # Needed for statesaver android-library = { id = "com.android.kotlin.multiplatform.library", version.ref = "agp" } diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index de7c8eb07..68f878061 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -10,6 +10,7 @@ plugins { alias(libs.plugins.jetbrains.compose.multiplatform) alias(libs.plugins.koin) alias(libs.plugins.jetbrains.kotlinx.serialization) + alias(libs.plugins.about.libraries) } // Better than adding a third-party dependency for something as simple as this @@ -145,3 +146,12 @@ dependencies { koinCompiler { userLogs = true // See what the compiler plugin detects } + +aboutLibraries { + export { + outputFile = file("src/iosMain/resources/aboutlibraries.json") + prettyPrint = true + variant = "metadataIosMain" + excludeFields.addAll("organization", "scm", "funding") + } +} diff --git a/shared/src/androidMain/assets/aboutlibraries.json b/shared/src/androidMain/assets/aboutlibraries.json new file mode 100644 index 000000000..c672a69bc --- /dev/null +++ b/shared/src/androidMain/assets/aboutlibraries.json @@ -0,0 +1,3408 @@ +{ + "libraries": [ + { + "uniqueId": "androidx.activity:activity", + "artifactVersion": "1.8.1", + "name": "Activity", + "description": "Provides the base Activity subclass and the relevant hooks to build a composable structure on top.", + "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.8.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.activity:activity-compose", + "artifactVersion": "1.13.0", + "name": "Activity Compose", + "description": "Compose integration with Activity", + "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.13.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.activity:activity-ktx", + "artifactVersion": "1.8.1", + "name": "Activity Kotlin Extensions", + "description": "Kotlin extensions for 'activity' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.8.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.annotation:annotation-experimental", + "artifactVersion": "1.4.1", + "name": "Experimental annotation", + "description": "Java annotation for use on unstable Android API surfaces. When used in conjunction with the Experimental annotation lint checks, this annotation provides functional parity with Kotlin's Experimental annotation.", + "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.4.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.annotation:annotation-jvm", + "artifactVersion": "1.9.1", + "name": "Annotation", + "description": "Provides source annotations for tooling and readability.", + "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.appcompat:appcompat", + "artifactVersion": "1.7.1", + "name": "AppCompat", + "description": "Provides backwards-compatible implementations of UI-related Android SDK functionality, including dark mode and Material theming.", + "website": "https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.appcompat:appcompat-resources", + "artifactVersion": "1.7.1", + "name": "AppCompat Resources", + "description": "Provides backward-compatible implementations of resource-related Android SDKfunctionality, including color state list theming.", + "website": "https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.arch.core:core-common", + "artifactVersion": "2.2.0", + "name": "Android Arch-Common", + "description": "Android Arch-Common", + "website": "https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.arch.core:core-runtime", + "artifactVersion": "2.2.0", + "name": "Android Arch-Runtime", + "description": "Android Arch-Runtime", + "website": "https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.autofill:autofill", + "artifactVersion": "1.0.0", + "name": "AndroidX Autofill", + "description": "AndroidX Autofill", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.cardview:cardview", + "artifactVersion": "1.0.0", + "name": "Support CardView v7", + "description": "Android Support CardView v7", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.collection:collection-jvm", + "artifactVersion": "1.5.0", + "name": "collections", + "description": "Standalone efficient collections.", + "website": "https://developer.android.com/jetpack/androidx/releases/collection#1.5.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.collection:collection-ktx", + "artifactVersion": "1.5.0", + "name": "Collections Kotlin Extensions", + "description": "Kotlin extensions for 'collection' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/collection#1.5.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.animation:animation-android", + "artifactVersion": "1.9.4", + "name": "Compose Animation", + "description": "Compose animation library", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-animation#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.animation:animation-core-android", + "artifactVersion": "1.9.4", + "name": "Compose Animation Core", + "description": "Animation engine and animation primitives that are the building blocks of the Compose animation library", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-animation#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.foundation:foundation-android", + "artifactVersion": "1.9.4", + "name": "Compose Foundation", + "description": "Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.foundation:foundation-layout-android", + "artifactVersion": "1.9.4", + "name": "Compose Layouts", + "description": "Compose layout implementations", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.material3:material3-android", + "artifactVersion": "1.5.0-alpha17", + "name": "Compose Material3 Components", + "description": "Compose Material You Design Components library", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-material3#1.5.0-alpha17", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.material:material-ripple-android", + "artifactVersion": "1.11.0-rc01", + "name": "Compose Material Ripple", + "description": "Material ripple used to build interactive components", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-material#1.11.0-rc01", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-android", + "artifactVersion": "1.9.4", + "name": "Compose Runtime", + "description": "Tree composition support for code generated by the Compose compiler plugin and corresponding public API", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-annotation-android", + "artifactVersion": "1.9.4", + "name": "Compose Runtime Annotation", + "description": "Provides Compose-specific annotations used by the compiler and tooling", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-retain-android", + "artifactVersion": "1.11.1", + "name": "Compose Runtime Retain", + "description": "Preserve state in composable methods across configuration changes and other transient content destruction scenarios", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-saveable-android", + "artifactVersion": "1.9.4", + "name": "Compose Saveable", + "description": "Compose components that allow saving and restoring the local ui state", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-android", + "artifactVersion": "1.9.4", + "name": "Compose UI", + "description": "Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-geometry-android", + "artifactVersion": "1.9.4", + "name": "Compose Geometry", + "description": "Compose classes related to dimensions without units", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-graphics-android", + "artifactVersion": "1.9.4", + "name": "Compose Graphics", + "description": "Compose graphics", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-text-android", + "artifactVersion": "1.9.4", + "name": "Compose UI Text", + "description": "Compose Text primitives and utilities", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-tooling-preview-android", + "artifactVersion": "1.11.1", + "name": "Compose UI Preview Tooling", + "description": "Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.11.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-unit-android", + "artifactVersion": "1.9.4", + "name": "Compose Unit", + "description": "Compose classes for simple units", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.ui:ui-util-android", + "artifactVersion": "1.9.4", + "name": "Compose Util", + "description": "Internal Compose utilities used by other modules", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-ui#1.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.concurrent:concurrent-futures", + "artifactVersion": "1.1.0", + "name": "AndroidX Futures", + "description": "Androidx implementation of Guava's ListenableFuture", + "website": "https://developer.android.com/topic/libraries/architecture/index.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.concurrent:concurrent-futures-ktx", + "artifactVersion": "1.1.0", + "name": "AndroidX Futures Kotlin Extensions", + "description": "Kotlin Extensions for Androidx implementation of Guava's ListenableFuture", + "website": "https://developer.android.com/topic/libraries/architecture/index.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.constraintlayout:constraintlayout", + "artifactVersion": "2.2.1", + "name": "ConstraintLayout", + "description": "This library offers a flexible and adaptable way to position and animate widgets", + "website": "https://developer.android.com/jetpack/androidx/releases/constraintlayout#2.2.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.constraintlayout:constraintlayout-core", + "artifactVersion": "1.1.1", + "name": "ConstraintLayout Core", + "description": "This library contains engines and algorithms for constraint based layout and complex animations (it is used by the ConstraintLayout library)", + "website": "https://developer.android.com/jetpack/androidx/releases/constraintlayout#1.1.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.coordinatorlayout:coordinatorlayout", + "artifactVersion": "1.1.0", + "name": "Support Coordinator Layout", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.core:core", + "artifactVersion": "1.18.0", + "name": "Core", + "description": "Provides backward-compatible implementations of Android platform APIs and features.", + "website": "https://developer.android.com/jetpack/androidx/releases/core#1.18.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.core:core-ktx", + "artifactVersion": "1.18.0", + "name": "Core Kotlin Extensions", + "description": "Kotlin extensions for 'core' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/core#1.18.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.core:core-viewtree", + "artifactVersion": "1.0.0", + "name": "androidx.core:core-viewtree", + "description": "Provides ViewTree extensions packaged for use by other core androidx libraries", + "website": "https://developer.android.com/jetpack/androidx/releases/core#1.0.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.cursoradapter:cursoradapter", + "artifactVersion": "1.0.0", + "name": "Support Cursor Adapter", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.customview:customview", + "artifactVersion": "1.1.0", + "name": "Support Custom View", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.customview:customview-poolingcontainer", + "artifactVersion": "1.0.0", + "name": "androidx.customview:poolingcontainer", + "description": "Utilities for listening to the lifecycle of containers that manage their child Views' lifecycle, such as RecyclerView", + "website": "https://developer.android.com/jetpack/androidx/releases/customview#1.0.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.databinding:viewbinding", + "artifactVersion": "9.2.1", + "name": "androidx.databinding:viewbinding", + "description": "", + "developers": [ + + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.documentfile:documentfile", + "artifactVersion": "1.1.0", + "name": "Document File", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "https://developer.android.com/jetpack/androidx/releases/documentfile#1.1.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.drawerlayout:drawerlayout", + "artifactVersion": "1.1.1", + "name": "Support Drawer Layout", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.dynamicanimation:dynamicanimation", + "artifactVersion": "1.0.0", + "name": "Support DynamicAnimation", + "description": "Physics-based animation in support library, where the animations are driven by physics force. You can use this Animation library to create smooth and realistic animations.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.emoji2:emoji2", + "artifactVersion": "1.4.0", + "name": "Emoji2", + "description": "Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters.", + "website": "https://developer.android.com/jetpack/androidx/releases/emoji2#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.emoji2:emoji2-views-helper", + "artifactVersion": "1.4.0", + "name": "Emoji2 Views Helper", + "description": "Provide helper classes for Emoji2 views.", + "website": "https://developer.android.com/jetpack/androidx/releases/emoji2#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.exifinterface:exifinterface", + "artifactVersion": "1.4.2", + "name": "ExifInterface", + "description": "Android Support ExifInterface", + "website": "https://developer.android.com/jetpack/androidx/releases/exifinterface#1.4.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.fragment:fragment", + "artifactVersion": "1.8.9", + "name": "fragment", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "https://developer.android.com/jetpack/androidx/releases/fragment#1.8.9", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.fragment:fragment-ktx", + "artifactVersion": "1.8.9", + "name": "Fragment Kotlin Extensions", + "description": "Kotlin extensions for 'fragment' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/fragment#1.8.9", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.graphics:graphics-path", + "artifactVersion": "1.0.1", + "name": "Android Graphics Path", + "description": "Query segment data for android.graphics.Path objects", + "website": "https://developer.android.com/jetpack/androidx/releases/graphics#1.0.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.graphics:graphics-shapes-android", + "artifactVersion": "1.1.0", + "name": "Graphics Shapes", + "description": "create and render rounded polygonal shapes", + "website": "https://developer.android.com/jetpack/androidx/releases/graphics#1.1.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.interpolator:interpolator", + "artifactVersion": "1.0.0", + "name": "Support Interpolators", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.legacy:legacy-support-core-utils", + "artifactVersion": "1.0.0", + "name": "Support core utils", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-common-java8", + "artifactVersion": "2.10.0", + "name": "Lifecycle-Common for Java 8", + "description": "Android Lifecycle-Common for Java 8 Language", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-common-jvm", + "artifactVersion": "2.10.0", + "name": "Lifecycle-Common", + "description": "Android Lifecycle-Common", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-livedata", + "artifactVersion": "2.10.0", + "name": "Lifecycle LiveData", + "description": "Android Lifecycle LiveData", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-livedata-core", + "artifactVersion": "2.10.0", + "name": "Lifecycle LiveData Core", + "description": "Android Lifecycle LiveData Core", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-livedata-core-ktx", + "artifactVersion": "2.10.0", + "name": "LiveData Core Kotlin Extensions", + "description": "Kotlin extensions for 'livedata-core' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-livedata-ktx", + "artifactVersion": "2.10.0", + "name": "LiveData Kotlin Extensions", + "description": "Kotlin extensions for 'livedata' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-process", + "artifactVersion": "2.10.0", + "name": "Lifecycle Process", + "description": "Android Lifecycle Process", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle Runtime", + "description": "Android Lifecycle Runtime", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-compose-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle Runtime Compose", + "description": "Compose integration with Lifecycle", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-ktx-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle Kotlin Extensions", + "description": "Kotlin extensions for 'lifecycle' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-service", + "artifactVersion": "2.10.0", + "name": "Lifecycle Service", + "description": "Android Lifecycle Service", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel", + "description": "Android Lifecycle ViewModel", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-compose-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel Compose", + "description": "Compose integration with Lifecycle ViewModel", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-ktx", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel Kotlin Extensions", + "description": "Kotlin extensions for 'viewmodel' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-navigation3-android", + "artifactVersion": "2.10.0", + "name": "Androidx Lifecycle Navigation3 ViewModel", + "description": "Provides the ViewModel wrapper for nav3.", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-savedstate-android", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel with SavedState", + "description": "Android Lifecycle ViewModel", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.loader:loader", + "artifactVersion": "1.0.0", + "name": "Support loader", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.localbroadcastmanager:localbroadcastmanager", + "artifactVersion": "1.1.0", + "name": "Support Local Broadcast Manager", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "https://developer.android.com/jetpack/androidx/releases/localbroadcastmanager#1.1.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.media:media", + "artifactVersion": "1.7.1", + "name": "Media", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "https://developer.android.com/jetpack/androidx/releases/media#1.7.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.navigation3:navigation3-runtime-android", + "artifactVersion": "1.1.1", + "name": "Androidx Navigation 3 Runtime", + "description": "Provides the building blocks for a Compose first Navigation solution that easily supports extensions.", + "website": "https://developer.android.com/jetpack/androidx/releases/navigation3#1.1.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.navigation3:navigation3-ui-android", + "artifactVersion": "1.1.1", + "name": "Androidx Navigation 3 UI", + "description": "Provides a Navigation3 display that uses the building blocks from runtime to create a higher level solution.", + "website": "https://developer.android.com/jetpack/androidx/releases/navigation3#1.1.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.navigationevent:navigationevent-android", + "artifactVersion": "1.0.2", + "name": "Navigation Event", + "description": "Provides APIs to easily intercept platform navigation events, including swipes and clicks, to provide a consistent API surface for handling these events.", + "website": "https://developer.android.com/jetpack/androidx/releases/navigationevent#1.0.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.navigationevent:navigationevent-compose-android", + "artifactVersion": "1.0.2", + "name": "NavigationEvent Compose", + "description": "Compose integration with NavigationEvent", + "website": "https://developer.android.com/jetpack/androidx/releases/navigationevent#1.0.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.preference:preference", + "artifactVersion": "1.2.1", + "name": "AndroidX Preference", + "description": "AndroidX Preference", + "website": "https://developer.android.com/jetpack/androidx/releases/preference#1.2.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.print:print", + "artifactVersion": "1.0.0", + "name": "Support Print", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.profileinstaller:profileinstaller", + "artifactVersion": "1.4.1", + "name": "Profile Installer", + "description": "Allows libraries to prepopulate ahead of time compilation traces to be read by ART", + "website": "https://developer.android.com/jetpack/androidx/releases/profileinstaller#1.4.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.recyclerview:recyclerview", + "artifactVersion": "1.4.0", + "name": "RecyclerView", + "description": "Android Support RecyclerView", + "website": "https://developer.android.com/jetpack/androidx/releases/recyclerview#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.resourceinspection:resourceinspection-annotation", + "artifactVersion": "1.0.1", + "name": "Android Resource Inspection - Annotations", + "description": "Annotation processors for Android resource and layout inspection", + "website": "https://developer.android.com/jetpack/androidx/releases/resourceinspection#1.0.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.room:room-common-jvm", + "artifactVersion": "2.8.4", + "name": "Room-Common", + "description": "Android Room-Common", + "website": "https://developer.android.com/jetpack/androidx/releases/room#2.8.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.room:room-runtime-android", + "artifactVersion": "2.8.4", + "name": "Room-Runtime", + "description": "Android Room-Runtime", + "website": "https://developer.android.com/jetpack/androidx/releases/room#2.8.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.room:room-rxjava3", + "artifactVersion": "2.8.4", + "name": "Room RXJava3", + "description": "Android Room RXJava3", + "website": "https://developer.android.com/jetpack/androidx/releases/room#2.8.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate-android", + "artifactVersion": "1.4.0", + "name": "Saved State", + "description": "Android Lifecycle Saved State", + "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate-compose-android", + "artifactVersion": "1.4.0", + "name": "Saved State Compose", + "description": "Compose integration with Saved State", + "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate-ktx", + "artifactVersion": "1.4.0", + "name": "SavedState Kotlin Extensions", + "description": "Kotlin extensions for 'savedstate' artifact", + "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.slidingpanelayout:slidingpanelayout", + "artifactVersion": "1.2.0", + "name": "Support Sliding Pane Layout", + "description": "SlidingPaneLayout offers a responsive, two pane layout that automatically switches between overlapping panes on smaller devices to a side by side view on larger devices.", + "website": "https://developer.android.com/jetpack/androidx/releases/slidingpanelayout#1.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.sqlite:sqlite-android", + "artifactVersion": "2.6.2", + "name": "SQLite", + "description": "SQLite API", + "website": "https://developer.android.com/jetpack/androidx/releases/sqlite#2.6.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.sqlite:sqlite-framework-android", + "artifactVersion": "2.6.2", + "name": "SQLite Framework Integration", + "description": "The implementation of SQLite library using the framework code.", + "website": "https://developer.android.com/jetpack/androidx/releases/sqlite#2.6.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.startup:startup-runtime", + "artifactVersion": "1.1.1", + "name": "Android App Startup Runtime", + "description": "Android App Startup Runtime", + "website": "https://developer.android.com/jetpack/androidx/releases/startup#1.1.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.swiperefreshlayout:swiperefreshlayout", + "artifactVersion": "1.2.0", + "name": "Swipe Refresh Layout", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "https://developer.android.com/jetpack/androidx/releases/swiperefreshlayout#1.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.tracing:tracing", + "artifactVersion": "1.2.0", + "name": "Android Tracing", + "description": "Android Tracing", + "website": "https://developer.android.com/jetpack/androidx/releases/tracing#1.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.tracing:tracing-ktx", + "artifactVersion": "1.2.0", + "name": "Android Tracing Runtime Kotlin Extensions", + "description": "Android Tracing", + "website": "https://developer.android.com/jetpack/androidx/releases/tracing#1.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.transition:transition", + "artifactVersion": "1.2.0", + "name": "Android Transition Support Library", + "description": "Android Transition Support Library", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.vectordrawable:vectordrawable", + "artifactVersion": "1.1.0", + "name": "Support VectorDrawable", + "description": "Android Support VectorDrawable", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.vectordrawable:vectordrawable-animated", + "artifactVersion": "1.1.0", + "name": "Support AnimatedVectorDrawable", + "description": "Android Support AnimatedVectorDrawable", + "website": "https://developer.android.com/jetpack/androidx", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.versionedparcelable:versionedparcelable", + "artifactVersion": "1.1.1", + "name": "VersionedParcelable", + "description": "Provides a stable but relatively compact binary serialization format that can be passed across processes or persisted safely.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.viewpager2:viewpager2", + "artifactVersion": "1.1.0", + "name": "ViewPager2", + "description": "AndroidX Widget ViewPager2", + "website": "https://developer.android.com/jetpack/androidx/releases/viewpager2#1.1.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.viewpager:viewpager", + "artifactVersion": "1.0.0", + "name": "Support View Pager", + "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "website": "http://developer.android.com/tools/extras/support-library.html", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.webkit:webkit", + "artifactVersion": "1.15.0", + "name": "Webkit", + "description": "The Jetpack Webkit Library is a static library you can add to your Android application in order to use android.webkit APIs that are not available for older platform versions.", + "website": "https://developer.android.com/jetpack/androidx/releases/webkit#1.15.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.window:window", + "artifactVersion": "1.5.0", + "name": "WindowManager", + "description": "WindowManager Jetpack library. Currently only provides additional functionality on foldable devices.", + "website": "https://developer.android.com/jetpack/androidx/releases/window#1.5.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.window:window-core-android", + "artifactVersion": "1.5.0", + "name": "WindowManager Core", + "description": "WindowManager Core Library.", + "website": "https://developer.android.com/jetpack/androidx/releases/window#1.5.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.work:work-runtime", + "artifactVersion": "2.11.2", + "name": "WorkManager Runtime", + "description": "Android WorkManager runtime library", + "website": "https://developer.android.com/jetpack/androidx/releases/work#2.11.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.work:work-rxjava3", + "artifactVersion": "2.11.2", + "name": "WorkManager RxJava3", + "description": "Android WorkManager RxJava3 interoperatibility library", + "website": "https://developer.android.com/jetpack/androidx/releases/work#2.11.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "ch.acra:acra-core", + "artifactVersion": "5.13.1", + "name": "ACRA", + "description": "Publishes reports of Android application crashes to an end point.", + "website": "https://acra.ch", + "developers": [ + { + "name": "Kevin Gaudin" + }, + { + "name": "William Ferguson" + }, + { + "name": "Lukas Morawietz" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "co.touchlab:stately-concurrency-jvm", + "artifactVersion": "2.1.0", + "name": "Stately", + "description": "Multithreaded Kotlin Multiplatform Utilities", + "website": "https://github.com/touchlab/Stately", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.atlassian.commonmark:commonmark", + "artifactVersion": "0.13.0", + "name": "commonmark-java core", + "description": "Core of commonmark-java (implementation of CommonMark for parsing markdown and rendering to HTML)", + "website": "https://github.com/atlassian/commonmark-java/commonmark", + "developers": [ + { + "name": "Robin Stocker", + "organisationUrl": "https://www.atlassian.com/" + } + ], + "licenses": [ + "BSD-2-Clause" + ] + }, + { + "uniqueId": "com.evernote:android-state", + "artifactVersion": "1.4.1", + "name": "Android State", + "description": "Android library to save object states into a bundle.", + "website": "https://github.com/evernote/android-state", + "developers": [ + { + "name": "Ralf Wondratschek" + } + ], + "licenses": [ + "EPL-1.0" + ] + }, + { + "uniqueId": "com.facebook.stetho:stetho", + "artifactVersion": "1.6.0", + "name": "Stetho", + "description": "Stetho Debugging Platform for Android", + "website": "https://github.com/facebook/stetho", + "developers": [ + { + "name": "Facebook" + } + ], + "licenses": [ + "MIT" + ] + }, + { + "uniqueId": "com.facebook.stetho:stetho-okhttp3", + "artifactVersion": "1.6.0", + "name": "Stetho OkHttp 3 module", + "description": "Stetho Debugging Platform for Android", + "website": "https://github.com/facebook/stetho", + "developers": [ + { + "name": "Facebook" + } + ], + "licenses": [ + "MIT" + ] + }, + { + "uniqueId": "com.github.TeamNewPipe:NewPipeExtractor", + "artifactVersion": "v0.26.2", + "name": "NewPipe Extractor", + "description": "A library for extracting data from streaming websites, used in NewPipe", + "website": "https://github.com/TeamNewPipe/NewPipeExtractor", + "developers": [ + { + "name": "Team NewPipe" + } + ], + "licenses": [ + "GPL-3.0-or-later" + ] + }, + { + "uniqueId": "com.github.TeamNewPipe:NoNonsense-FilePicker", + "artifactVersion": "5.0.0", + "name": "TeamNewPipe/NoNonsense-FilePicker", + "description": "A file/directory-picker for android. Implemented as a library project.", + "website": "https://github.com/TeamNewPipe/NoNonsense-FilePicker", + "developers": [ + { + "name": "Team NewPipe" + } + ], + "licenses": [ + "MPL-2.0" + ] + }, + { + "uniqueId": "com.github.TeamNewPipe:nanojson", + "artifactVersion": "e9d656ddb49a412a5a0a5d5ef20ca7ef09549996", + "name": "nanojson", + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "website": "http://nexus.sonatype.org/oss-repository-hosting.html/nanojson", + "developers": [ + + ], + "licenses": [ + + ] + }, + { + "uniqueId": "com.github.lisawray.groupie:groupie", + "artifactVersion": "2.10.1", + "name": "lisawray/groupie", + "description": "Groupie helps you display and manage complex RecyclerView layouts.", + "website": "https://github.com/lisawray/groupie", + "developers": [ + { + "name": "Lisa Wray" + } + ], + "licenses": [ + "MIT" + ] + }, + { + "uniqueId": "com.github.lisawray.groupie:groupie-viewbinding", + "artifactVersion": "2.10.1", + "name": "com.github.lisawray.groupie:groupie-viewbinding", + "description": "", + "developers": [ + + ], + "licenses": [ + + ] + }, + { + "uniqueId": "com.github.livefront:bridge", + "artifactVersion": "v2.0.2", + "name": "livefront/bridge", + "description": "An Android library for avoiding TransactionTooLargeException during state saving and restoration", + "website": "https://github.com/livefront/bridge", + "developers": [ + { + "name": "Livefront" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.accompanist:accompanist-drawablepainter", + "artifactVersion": "0.37.3", + "name": "Accompanist Drawable Painter library", + "description": "Utilities for Jetpack Compose", + "website": "https://github.com/google/accompanist/", + "developers": [ + { + "name": "Google" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-common", + "artifactVersion": "2.19.1", + "name": "exoplayer-common", + "description": "The ExoPlayer library common module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-container", + "artifactVersion": "2.19.1", + "name": "exoplayer-container", + "description": "The ExoPlayer library container module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-core", + "artifactVersion": "2.19.1", + "name": "exoplayer-core", + "description": "The ExoPlayer library core module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-dash", + "artifactVersion": "2.19.1", + "name": "exoplayer-dash", + "description": "The ExoPlayer library DASH module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-database", + "artifactVersion": "2.19.1", + "name": "exoplayer-database", + "description": "The ExoPlayer database module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-datasource", + "artifactVersion": "2.19.1", + "name": "exoplayer-datasource", + "description": "The ExoPlayer library DataSource module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-decoder", + "artifactVersion": "2.19.1", + "name": "exoplayer-decoder", + "description": "The ExoPlayer library decoder module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-extractor", + "artifactVersion": "2.19.1", + "name": "exoplayer-extractor", + "description": "The ExoPlayer library extractor module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-hls", + "artifactVersion": "2.19.1", + "name": "exoplayer-hls", + "description": "The ExoPlayer library HLS module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-smoothstreaming", + "artifactVersion": "2.19.1", + "name": "exoplayer-smoothstreaming", + "description": "The ExoPlayer library SmoothStreaming module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:exoplayer-ui", + "artifactVersion": "2.19.1", + "name": "exoplayer-ui", + "description": "The ExoPlayer library UI module.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.exoplayer:extension-mediasession", + "artifactVersion": "2.19.1", + "name": "extension-mediasession", + "description": "Media session extension for ExoPlayer.", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.android.material:material", + "artifactVersion": "1.11.0", + "name": "Material Components for Android", + "description": "Material Components for Android is a static library that you can add to your Android application in order to use APIs that provide implementations of the Material Design specification. Compatible on devices running API 14 or later.", + "website": "https://github.com/material-components/material-components-android", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.auto.service:auto-service", + "artifactVersion": "1.1.1", + "name": "AutoService Processor", + "description": "Provider-configuration files for ServiceLoader.", + "website": "https://github.com/google/auto/tree/main/service", + "developers": [ + + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.auto.service:auto-service-annotations", + "artifactVersion": "1.1.1", + "name": "AutoService", + "description": "Provider-configuration files for ServiceLoader.", + "website": "https://github.com/google/auto/tree/main/service", + "developers": [ + + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.auto:auto-common", + "artifactVersion": "1.2.1", + "name": "Auto Common Libraries", + "description": "Common utilities for creating annotation processors.", + "website": "https://github.com/google/auto/tree/master/common", + "developers": [ + + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.code.findbugs:jsr305", + "artifactVersion": "3.0.2", + "name": "FindBugs-jsr305", + "description": "JSR305 Annotations for Findbugs", + "website": "http://findbugs.sourceforge.net/", + "developers": [ + + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.errorprone:error_prone_annotations", + "artifactVersion": "2.18.0", + "name": "error-prone annotations", + "description": "Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time.", + "website": "https://errorprone.info/error_prone_annotations", + "developers": [ + { + "name": "Eddie Aftandilian" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.guava:failureaccess", + "artifactVersion": "1.0.1", + "name": "Guava InternalFutureFailureAccess and InternalFutures", + "description": "Contains\n com.google.common.util.concurrent.internal.InternalFutureFailureAccess and\n InternalFutures. Most users will never need to use this artifact. Its\n classes is conceptually a part of Guava, but they're in this separate\n artifact so that Android libraries can use them without pulling in all of\n Guava (just as they can use ListenableFuture by depending on the\n listenablefuture artifact).", + "website": "https://github.com/google/guava/failureaccess", + "developers": [ + { + "name": "Kevin Bourrillion", + "organisationUrl": "http://www.google.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.guava:guava", + "artifactVersion": "31.1-android", + "name": "Guava: Google Core Libraries for Java", + "description": "Guava is a suite of core and expanded libraries that include\n utility classes, Google's collections, I/O classes, and\n much more.", + "website": "https://github.com/google/guava", + "developers": [ + { + "name": "Kevin Bourrillion", + "organisationUrl": "http://www.google.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.guava:listenablefuture", + "artifactVersion": "9999.0-empty-to-avoid-conflict-with-guava", + "name": "Guava ListenableFuture only", + "description": "An empty artifact that Guava depends on to signal that it is providing\n ListenableFuture -- but is also available in a second \"version\" that\n contains com.google.common.util.concurrent.ListenableFuture class, without\n any other Guava classes. The idea is:\n\n - If users want only ListenableFuture, they depend on listenablefuture-1.0.\n\n - If users want all of Guava, they depend on guava, which, as of Guava\n 27.0, depends on\n listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-...\n version number is enough for some build systems (notably, Gradle) to select\n that empty artifact over the \"real\" listenablefuture-1.0 -- avoiding a\n conflict with the copy of ListenableFuture in guava itself. If users are\n using an older version of Guava or a build system other than Gradle, they\n may see class conflicts. If so, they can solve them by manually excluding\n the listenablefuture artifact or manually forcing their build systems to\n use 9999.0-....", + "website": "https://github.com/google/guava/listenablefuture", + "developers": [ + { + "name": "Kevin Bourrillion", + "organisationUrl": "http://www.google.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.j2objc:j2objc-annotations", + "artifactVersion": "2.8", + "name": "J2ObjC Annotations", + "description": "A set of annotations that provide additional information to the J2ObjC\n translator to modify the result of translation.", + "website": "https://github.com/google/j2objc/", + "developers": [ + + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.google.protobuf:protobuf-javalite", + "artifactVersion": "4.35.0", + "name": "Protocol Buffers [Lite]", + "description": "Lite version of Protocol Buffers library. This version is targeted for mobile client use\n rather than server side use. It is optimized for code size, but does not guarantee API/ABI\n stability.", + "website": "https://developers.google.com/protocol-buffers/protobuf-javalite/", + "developers": [ + { + "name": "Protocol Buffers", + "organisationUrl": "https://protobuf.dev" + } + ], + "licenses": [ + "BSD-3-Clause" + ] + }, + { + "uniqueId": "com.jakewharton.rxbinding4:rxbinding", + "artifactVersion": "4.0.0", + "name": "RxBinding", + "description": "RxJava binding APIs for Android's UI widgets.", + "website": "https://github.com/JakeWharton/RxBinding/", + "developers": [ + { + "name": "Jake Wharton" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.jakewharton:process-phoenix", + "artifactVersion": "3.0.0", + "name": "Process Phoenix", + "description": "A special activity which facilitates restarting your application process.", + "website": "https://github.com/JakeWharton/ProcessPhoenix/", + "developers": [ + { + "name": "Jake Wharton" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.russhwolf:multiplatform-settings-android-debug", + "artifactVersion": "1.3.0", + "name": "Multiplatform Settings", + "description": "A Kotlin Multiplatform library for saving simple key-value data", + "website": "https://github.com/russhwolf/multiplatform-settings", + "developers": [ + { + "name": "Russell Wolf" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.curtains:curtains", + "artifactVersion": "1.2.4", + "name": "Curtains", + "description": "Spy on your Android windows", + "website": "https://github.com/square/curtains/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:leakcanary-android-core", + "artifactVersion": "2.14", + "name": "LeakCanary for Android - Core", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:leakcanary-android-utils", + "artifactVersion": "2.14", + "name": "LeakCanary Android Utils", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:leakcanary-object-watcher", + "artifactVersion": "2.14", + "name": "LeakCanary Object Watcher", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:leakcanary-object-watcher-android", + "artifactVersion": "2.14", + "name": "LeakCanary Object Watcher for Android - Auto installing", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:leakcanary-object-watcher-android-androidx", + "artifactVersion": "2.14", + "name": "LeakCanary Object Watcher for Android extension: Android X fragments support", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:leakcanary-object-watcher-android-core", + "artifactVersion": "2.14", + "name": "LeakCanary Object Watcher for Android - Core", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:leakcanary-object-watcher-android-support-fragments", + "artifactVersion": "2.14", + "name": "LeakCanary Object Watcher for Android extension: Android support library fragments support", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:plumber-android", + "artifactVersion": "2.14", + "name": "Auto installer for plumber-android-core", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:plumber-android-core", + "artifactVersion": "2.14", + "name": "Use Plumber Android to fix known leaks in the Android Framework and other Google Android libraries.", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:shark", + "artifactVersion": "2.14", + "name": "Shark", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:shark-android", + "artifactVersion": "2.14", + "name": "Shark for Android heaps", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:shark-graph", + "artifactVersion": "2.14", + "name": "Shark Graph", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:shark-hprof", + "artifactVersion": "2.14", + "name": "Shark Hprof", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.leakcanary:shark-log", + "artifactVersion": "2.14", + "name": "Shark Log", + "description": "LeakCanary", + "website": "https://github.com/square/leakcanary/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.okhttp3:okhttp-android", + "artifactVersion": "5.3.2", + "name": "okhttp", + "description": "Square\u2019s meticulous HTTP client for Java and Kotlin.", + "website": "https://square.github.io/okhttp/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.squareup.okio:okio-jvm", + "artifactVersion": "3.16.4", + "name": "okio", + "description": "A modern I/O library for Android, Java, and Kotlin Multiplatform.", + "website": "https://github.com/square/okio/", + "developers": [ + { + "name": "Square, Inc." + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "commons-cli:commons-cli", + "artifactVersion": "1.2", + "name": "Commons CLI", + "description": "Commons CLI provides a simple API for presenting, processing and validating a command line interface.", + "website": "http://commons.apache.org/cli/", + "developers": [ + { + "name": "Rob Oxspring" + }, + { + "name": "Bob McWhirter" + }, + { + "name": "James Strachan" + }, + { + "name": "John Keyes" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-android", + "artifactVersion": "3.4.0", + "name": "coil", + "description": "An image loading library for Android and Compose Multiplatform.", + "website": "https://github.com/coil-kt/coil", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-compose-android", + "artifactVersion": "3.4.0", + "name": "coil-compose", + "description": "An image loading library for Android and Compose Multiplatform.", + "website": "https://github.com/coil-kt/coil", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-compose-core-android", + "artifactVersion": "3.4.0", + "name": "coil-compose-core", + "description": "An image loading library for Android and Compose Multiplatform.", + "website": "https://github.com/coil-kt/coil", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-core-android", + "artifactVersion": "3.4.0", + "name": "coil-core", + "description": "An image loading library for Android and Compose Multiplatform.", + "website": "https://github.com/coil-kt/coil", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-network-core-android", + "artifactVersion": "3.4.0", + "name": "coil-network-core", + "description": "An image loading library for Android and Compose Multiplatform.", + "website": "https://github.com/coil-kt/coil", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.coil-kt.coil3:coil-network-okhttp-android", + "artifactVersion": "3.4.0", + "name": "coil-network-okhttp", + "description": "An image loading library for Android and Compose Multiplatform.", + "website": "https://github.com/coil-kt/coil", + "developers": [ + { + "name": "Coil Contributors" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-android", + "artifactVersion": "4.2.1", + "name": "Koin", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "website": "https://insert-koin.io/", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.noties.markwon:core", + "artifactVersion": "4.6.2", + "name": "Core", + "description": "Core Markwon artifact that includes basic markdown parsing and rendering", + "website": "https://github.com/noties/Markwon", + "developers": [ + { + "name": "Dimitry Ivanov" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.noties.markwon:linkify", + "artifactVersion": "4.6.2", + "name": "Linkify", + "description": "Markwon plugin to linkify text (based on Android Linkify)", + "website": "https://github.com/noties/Markwon", + "developers": [ + { + "name": "Dimitry Ivanov" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.reactivex.rxjava3:rxandroid", + "artifactVersion": "3.0.2", + "name": "RxAndroid", + "description": "RxAndroid", + "website": "https://github.com/ReactiveX/RxAndroid", + "developers": [ + { + "name": "ReactiveX" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.reactivex.rxjava3:rxjava", + "artifactVersion": "3.1.12", + "name": "RxJava", + "description": "Reactive Extensions for Java", + "website": "https://github.com/ReactiveX/RxJava", + "developers": [ + { + "name": "David Karnok" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.checkerframework:checker-qual", + "artifactVersion": "3.33.0", + "name": "Checker Qual", + "description": "checker-qual contains annotations (type qualifiers) that a programmer\nwrites to specify Java code for type-checking by the Checker Framework.", + "website": "https://checkerframework.org/", + "developers": [ + { + "name": "Michael Ernst", + "organisationUrl": "https://www.cs.washington.edu/" + }, + { + "name": "Suzanne Millstein", + "organisationUrl": "https://www.cs.washington.edu/" + } + ], + "licenses": [ + "MIT" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-common", + "artifactVersion": "2.9.6", + "name": "Lifecycle-Common", + "description": "Android Lifecycle-Common", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "artifactVersion": "2.9.6", + "name": "Lifecycle Runtime", + "description": "Android Lifecycle Runtime", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose", + "artifactVersion": "2.9.6", + "name": "Lifecycle Runtime Compose", + "description": "Compose integration with Lifecycle", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel", + "description": "Android Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel Compose", + "description": "Compose integration with Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-navigation3", + "artifactVersion": "2.10.0", + "name": "Androidx Lifecycle Navigation3 ViewModel", + "description": "Provides the ViewModel wrapper for nav3.", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel with SavedState", + "description": "Android Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.navigation3:navigation3-ui", + "artifactVersion": "1.1.1", + "name": "Androidx Navigation 3 UI", + "description": "Provides a Navigation3 display that uses the building blocks from runtime to create a higher level solution.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.navigationevent:navigationevent-compose", + "artifactVersion": "1.0.1", + "name": "NavigationEvent Compose", + "description": "Compose integration with NavigationEvent", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.savedstate:savedstate", + "artifactVersion": "1.3.6", + "name": "Saved State", + "description": "Android Lifecycle Saved State", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.savedstate:savedstate-compose", + "artifactVersion": "1.3.6", + "name": "Saved State Compose", + "description": "Compose integration with Saved State", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.animation:animation", + "artifactVersion": "1.9.3", + "name": "Compose Animation", + "description": "Compose animation library", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.animation:animation-core", + "artifactVersion": "1.9.3", + "name": "Compose Animation Core", + "description": "Animation engine and animation primitives that are the building blocks of the Compose animation library", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.components:components-resources-android", + "artifactVersion": "1.11.0", + "name": "Resources for Compose JB", + "description": "Resources for Compose JB", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.foundation:foundation", + "artifactVersion": "1.9.3", + "name": "Compose Foundation", + "description": "Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.foundation:foundation-layout", + "artifactVersion": "1.9.3", + "name": "Compose Layouts", + "description": "Compose layout implementations", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material3:material3", + "artifactVersion": "1.11.0-alpha07", + "name": "Compose Material3 Components", + "description": "Compose Material You Design Components library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material:material-ripple", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Material Ripple", + "description": "Material ripple used to build interactive components", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.runtime:runtime", + "artifactVersion": "1.9.3", + "name": "Compose Runtime", + "description": "Tree composition support for code generated by the Compose compiler plugin and corresponding public API", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.runtime:runtime-saveable", + "artifactVersion": "1.9.3", + "name": "Compose Saveable", + "description": "Compose components that allow saving and restoring the local ui state", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui", + "artifactVersion": "1.9.3", + "name": "Compose UI primitives", + "description": "Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-geometry", + "artifactVersion": "1.9.3", + "name": "Compose Geometry", + "description": "Compose classes related to dimensions without units", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-graphics", + "artifactVersion": "1.9.3", + "name": "Compose Graphics", + "description": "Compose graphics", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-text", + "artifactVersion": "1.9.3", + "name": "Compose UI Text", + "description": "Compose Text primitives and utilities", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-tooling-preview", + "artifactVersion": "1.11.0", + "name": "Compose UI Preview Tooling", + "description": "Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-unit", + "artifactVersion": "1.9.3", + "name": "Compose Unit", + "description": "Compose classes for simple units", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-util", + "artifactVersion": "1.9.3", + "name": "Compose Util", + "description": "Internal Compose utilities used by other modules", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-bom", + "artifactVersion": "1.8.22", + "name": "Kotlin Libraries bill-of-materials", + "description": "Kotlin is a statically typed programming language that compiles to JVM byte codes and JavaScript", + "website": "https://kotlinlang.org/", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-parcelize-runtime", + "artifactVersion": "2.3.21", + "name": "Parcelize Runtime", + "description": "Runtime library for the Parcelize compiler plugin", + "website": "https://kotlinlang.org/", + "developers": [ + { + "name": "Kotlin Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib", + "artifactVersion": "2.3.21", + "name": "Kotlin Stdlib", + "description": "Kotlin Standard Library", + "website": "https://kotlinlang.org/", + "developers": [ + { + "name": "Kotlin Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-android", + "artifactVersion": "1.11.0", + "name": "kotlinx-coroutines-android", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-bom", + "artifactVersion": "1.11.0", + "name": "kotlinx-coroutines-bom", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm", + "artifactVersion": "1.11.0", + "name": "kotlinx-coroutines-core", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-reactive", + "artifactVersion": "1.11.0", + "name": "kotlinx-coroutines-reactive", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-rx3", + "artifactVersion": "1.11.0", + "name": "kotlinx-coroutines-rx3", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-bom", + "artifactVersion": "1.11.0", + "name": "kotlinx-serialization-bom", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-core-jvm", + "artifactVersion": "1.11.0", + "name": "kotlinx-serialization-core", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-json-jvm", + "artifactVersion": "1.11.0", + "name": "kotlinx-serialization-json", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains:annotations", + "artifactVersion": "23.0.0", + "name": "JetBrains Java Annotations", + "description": "A set of annotations used for code inspection support and code documentation.", + "website": "https://github.com/JetBrains/java-annotations", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jsoup:jsoup", + "artifactVersion": "1.22.2", + "name": "jsoup Java HTML Parser", + "description": "jsoup is a Java library that simplifies working with real-world HTML and XML. It offers an easy-to-use API for URL fetching, data parsing, extraction, and manipulation using DOM API methods, CSS, and xpath selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers.", + "website": "https://jsoup.org/", + "developers": [ + { + "name": "Jonathan Hedley" + } + ], + "licenses": [ + "MIT" + ] + }, + { + "uniqueId": "org.jspecify:jspecify", + "artifactVersion": "1.0.0", + "name": "JSpecify annotations", + "description": "An artifact of well-named and well-specified annotations to power static analysis checks", + "website": "http://jspecify.org/", + "developers": [ + { + "name": "Kevin Bourrillion" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.mozilla:rhino", + "artifactVersion": "1.8.1", + "name": "rhino", + "description": "Rhino JavaScript runtime jar, excludes XML, tools, and ScriptEngine wrapper", + "website": "https://mozilla.github.io/rhino/", + "developers": [ + { + "name": "Greg Brail" + } + ], + "licenses": [ + "MPL-2.0" + ] + }, + { + "uniqueId": "org.mozilla:rhino-engine", + "artifactVersion": "1.8.1", + "name": "rhino-engine", + "description": "Rhino ScriptEngine implementation", + "website": "https://mozilla.github.io/rhino/", + "developers": [ + { + "name": "Greg Brail" + } + ], + "licenses": [ + "MPL-2.0" + ] + }, + { + "uniqueId": "org.ocpsoft.prettytime:prettytime", + "artifactVersion": "5.0.8.Final", + "name": "PrettyTime - Core", + "description": "Social style time-formatting utilities and web-framework integrations.", + "website": "http://ocpsoft.org/prettytime/prettytime/", + "developers": [ + { + "name": "Lincoln Baxter, III" + }, + { + "name": "Isira Seneviratne" + }, + { + "name": "Thomas Weitzel" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.reactivestreams:reactive-streams", + "artifactVersion": "1.0.4", + "name": "reactive-streams", + "description": "A Protocol for Asynchronous Non-Blocking Data Sequence", + "website": "http://www.reactive-streams.org/", + "developers": [ + { + "name": "Reactive Streams SIG" + } + ], + "licenses": [ + "MIT-0" + ] + } + ], + "licenses": { + "Apache-2.0": { + "name": "Apache License 2.0", + "url": "https://spdx.org/licenses/Apache-2.0.html", + "content": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.", + "internalHash": "Apache-2.0", + "spdxId": "Apache-2.0", + "hash": "Apache-2.0" + }, + "BSD-2-Clause": { + "name": "BSD 2-Clause \"Simplified\" License", + "url": "https://spdx.org/licenses/BSD-2-Clause.html", + "content": "Copyright (c) < ;match=.+>> All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY <> \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "internalHash": "BSD-2-Clause", + "spdxId": "BSD-2-Clause", + "hash": "BSD-2-Clause" + }, + "BSD-3-Clause": { + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "url": "https://spdx.org/licenses/BSD-3-Clause.html", + "content": "Copyright (c) < ;match=.+>>. All rights reserved. \n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. \n\n3. Neither the name of <> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY <> \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ", + "internalHash": "BSD-3-Clause", + "spdxId": "BSD-3-Clause", + "hash": "BSD-3-Clause" + }, + "EPL-1.0": { + "name": "Eclipse Public License 1.0", + "url": "https://spdx.org/licenses/EPL-1.0.html", + "content": "Eclipse Public License - v 1.0\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and\n b) in the case of each subsequent Contributor:\n i) changes to the Program, and\n ii) additions to the Program;\n\nwhere such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.\n\"Contributor\" means any person or entity that distributes the Program.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.\n\n\"Program\" means the Contributions distributed in accordance with this Agreement.\n\n\"Recipient\" means anyone who receives the Program under this Agreement, including all Contributors.\n\n2. GRANT OF RIGHTS\n\n a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.\n \n b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.\n\n c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.\n\n d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.\n\n3. REQUIREMENTS\nA Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:\n\n a) it complies with the terms and conditions of this Agreement; and\n \n b) its license agreement:\n i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;\n ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;\n iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and\n iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.\n\nWhen the Program is made available in source code form:\n\n a) it must be made available under this Agreement; and\n\n b) a copy of this Agreement must be included with each copy of the Program.\nContributors may not remove or alter any copyright notices contained within the Program.\n\nEach Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.\n\n4. COMMERCIAL DISTRIBUTION\nCommercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor (\"Commercial Contributor\") hereby agrees to defend and indemnify every other Contributor (\"Indemnified Contributor\") against any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.\n\nFor example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.\n\n5. NO WARRANTY\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.\n\n6. DISCLAIMER OF LIABILITY\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\nIf Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.\n\nEveryone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.", + "spdxId": "EPL-1.0", + "hash": "beda45890e8026cec2c07f99032f63c3" + }, + "GPL-3.0-or-later": { + "name": "GNU General Public License v3.0 or later", + "url": "https://spdx.org/licenses/GPL-3.0-or-later.html", + "content": "GNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright \u00a9 2007 Free Software Foundation, Inc. \n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\n\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n\n0. Definitions.\n\n\u201cThis License\u201d refers to version 3 of the GNU General Public License.\n\n\u201cCopyright\u201d also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n\u201cThe Program\u201d refers to any copyrightable work licensed under this License. Each licensee is addressed as \u201cyou\u201d. \u201cLicensees\u201d and \u201crecipients\u201d may be individuals or organizations.\n\nTo \u201cmodify\u201d a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \u201cmodified version\u201d of the earlier work or a work \u201cbased on\u201d the earlier work.\n\nA \u201ccovered work\u201d means either the unmodified Program or a work based on the Program.\n\nTo \u201cpropagate\u201d a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo \u201cconvey\u201d a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \u201cAppropriate Legal Notices\u201d to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\nThe \u201csource code\u201d for a work means the preferred form of the work for making modifications to it. \u201cObject code\u201d means any non-source form of a work.\n\nA \u201cStandard Interface\u201d means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe \u201cSystem Libraries\u201d of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \u201cMajor Component\u201d, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe \u201cCorresponding Source\u201d for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to \u201ckeep intact all notices\u201d.\n\n c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\n\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \u201caggregate\u201d if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\n\n d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\n\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA \u201cUser Product\u201d is either (1) a \u201cconsumer product\u201d, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \u201cnormally used\u201d refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n\u201cInstallation Information\u201d for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n\u201cAdditional permissions\u201d are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\n\nAll other non-permissive additional terms are considered \u201cfurther restrictions\u201d within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\n\n9. Acceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn \u201centity transaction\u201d is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\nA \u201ccontributor\u201d is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \u201ccontributor version\u201d.\n\nA contributor's \u201cessential patent claims\u201d are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \u201ccontrol\u201d includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a \u201cpatent license\u201d is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \u201cgrant\u201d such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \u201cKnowingly relying\u201d means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is \u201cdiscriminatory\u201d if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \u201cor any later version\u201d applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \u201cAS IS\u201d WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \u201ccopyright\u201d line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \u201cabout box\u201d.\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a \u201ccopyright disclaimer\u201d for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see .\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read .", + "spdxId": "GPL-3.0-or-later", + "hash": "aa13f568b9f3d176bad132af7917c4ad" + }, + "MIT": { + "name": "MIT License", + "url": "https://spdx.org/licenses/MIT.html", + "content": "MIT License\n\nCopyright (c) \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "internalHash": "MIT", + "spdxId": "MIT", + "hash": "MIT" + }, + "MIT-0": { + "name": "MIT No Attribution", + "url": "https://spdx.org/licenses/MIT-0.html", + "content": "MIT No Attribution\n\nCopyright \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this\nsoftware and associated documentation files (the \"Software\"), to deal in the Software\nwithout restriction, including without limitation the rights to use, copy, modify,\nmerge, publish, distribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "internalHash": "MIT-0", + "spdxId": "MIT-0", + "hash": "MIT-0" + }, + "MPL-2.0": { + "name": "Mozilla Public License 2.0", + "url": "https://spdx.org/licenses/MPL-2.0.html", + "content": "Mozilla Public License Version 2.0 \n\n1. Definitions\n\n 1.1. \"Contributor\" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software.\n\n 1.2. \"Contributor Version\" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor's Contribution.\n\n 1.3. \"Contribution\" means Covered Software of a particular Contributor.\n\n 1.4. \"Covered Software\" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof.\n\n 1.5. \"Incompatible With Secondary Licenses\" means\n\n (a) that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or\n\n (b) that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License.\n\n 1.6. \"Executable Form\" means any form of the work other than Source Code Form.\n\n 1.7. \"Larger Work\" means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software.\n\n 1.8. \"License\" means this document.\n\n 1.9. \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License.\n\n 1.10. \"Modifications\" means any of the following:\n\n (a) any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or\n\n (b) any new file in Source Code Form that contains any Covered Software.\n\n 1.11. \"Patent Claims\" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version.\n\n 1.12. \"Secondary License\" means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses.\n\n 1.13. \"Source Code Form\" means the form of the work preferred for making modifications.\n\n 1.14. \"You\" (or \"Your\") means an individual or a legal entity exercising rights under this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. License Grants and Conditions \n\n 2.1. Grants\n Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:\n\n (a) under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and\n\n (b) under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version.\n\n 2.2. Effective Date\n The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution.\n\n 2.3. Limitations on Grant Scope\n The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor:\n\n (a) for any code that a Contributor has removed from Covered Software; or\n\n (b) for infringements caused by: (i) Your and any other third party's modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or\n\n (c) under Patent Claims infringed by Covered Software in the absence of its Contributions.\n\n This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4).\n\n 2.4. Subsequent Licenses\n No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3).\n\n 2.5. Representation\n Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License.\n\n 2.6. Fair Use\n This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents.\n\n 2.7. Conditions\n Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.\n\n3. Responsibilities\n\n 3.1. Distribution of Source Form\n All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients' rights in the Source Code Form.\n\n 3.2. Distribution of Executable Form\n If You distribute Covered Software in Executable Form then:\n\n (a) such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and\n\n (b) You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients' rights in the Source Code Form under this License.\n\n 3.3. Distribution of a Larger Work\n You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s).\n\n 3.4. Notices\n You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies.\n \n 3.5. Application of Additional Terms\n You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation \nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Termination \n\n 5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice.\n\n 5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate.\n\n 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination.\n\n6. Disclaimer of Warranty \nCovered Software is provided under this License on an \"as is\" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. \n\n7. Limitation of Liability \nUnder no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. \n\n8. Litigation \nAny litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party's ability to bring cross-claims or counter-claims.\n\n9. Miscellaneous \nThis License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor.\n\n10. Versions of the License \n\n 10.1. New Versions\n Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number.\n\n 10.2. Effect of New Versions\n You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward.\n\n 10.3. Modified Versions\n If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License).\n\n 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses\n If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice \n\n This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice \n\n This Source Code Form is \"Incompatible With Secondary Licenses\", as defined by the Mozilla Public License, v. 2.0.", + "internalHash": "MPL-2.0", + "spdxId": "MPL-2.0", + "hash": "MPL-2.0" + } + } +} \ No newline at end of file diff --git a/shared/src/commonMain/composeResources/files/keep.xml b/shared/src/commonMain/composeResources/files/keep.xml new file mode 100644 index 000000000..b0587ff7e --- /dev/null +++ b/shared/src/commonMain/composeResources/files/keep.xml @@ -0,0 +1,7 @@ + + + diff --git a/shared/src/iosMain/resources/aboutlibraries.json b/shared/src/iosMain/resources/aboutlibraries.json new file mode 100644 index 000000000..78d987b10 --- /dev/null +++ b/shared/src/iosMain/resources/aboutlibraries.json @@ -0,0 +1,923 @@ +{ + "libraries": [ + { + "uniqueId": "androidx.annotation:annotation", + "artifactVersion": "1.9.1", + "name": "Annotation", + "description": "Provides source annotations for tooling and readability.", + "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.collection:collection", + "artifactVersion": "1.5.0", + "name": "collections", + "description": "Standalone efficient collections.", + "website": "https://developer.android.com/jetpack/androidx/releases/collection#1.5.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime", + "artifactVersion": "1.11.1", + "name": "Compose Runtime", + "description": "Tree composition support for code generated by the Compose compiler plugin and corresponding public API", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-annotation", + "artifactVersion": "1.11.1", + "name": "Compose Runtime Annotation", + "description": "Provides Compose-specific annotations used by the compiler and tooling", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-retain", + "artifactVersion": "1.11.1", + "name": "Compose Runtime Retain", + "description": "Preserve state in composable methods across configuration changes and other transient content destruction scenarios", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-saveable", + "artifactVersion": "1.11.1", + "name": "Compose Saveable", + "description": "Compose components that allow saving and restoring the local ui state", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.graphics:graphics-shapes", + "artifactVersion": "1.1.0", + "name": "Graphics Shapes", + "description": "create and render rounded polygonal shapes", + "website": "https://developer.android.com/jetpack/androidx/releases/graphics#1.1.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-common", + "artifactVersion": "2.10.0", + "name": "Lifecycle-Common", + "description": "Android Lifecycle-Common", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime", + "artifactVersion": "2.10.0", + "name": "Lifecycle Runtime", + "description": "Android Lifecycle Runtime", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-compose", + "artifactVersion": "2.10.0", + "name": "Lifecycle Runtime Compose", + "description": "Compose integration with Lifecycle", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel", + "description": "Android Lifecycle ViewModel", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-savedstate", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel with SavedState", + "description": "Android Lifecycle ViewModel", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.navigation3:navigation3-runtime", + "artifactVersion": "1.1.1", + "name": "Androidx Navigation 3 Runtime", + "description": "Provides the building blocks for a Compose first Navigation solution that easily supports extensions.", + "website": "https://developer.android.com/jetpack/androidx/releases/navigation3#1.1.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.navigationevent:navigationevent", + "artifactVersion": "1.0.2", + "name": "Navigation Event", + "description": "Provides APIs to easily intercept platform navigation events, including swipes and clicks, to provide a consistent API surface for handling these events.", + "website": "https://developer.android.com/jetpack/androidx/releases/navigationevent#1.0.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate", + "artifactVersion": "1.4.0", + "name": "Saved State", + "description": "Android Lifecycle Saved State", + "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate-compose", + "artifactVersion": "1.4.0", + "name": "Saved State Compose", + "description": "Compose integration with Saved State", + "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "co.touchlab:stately-concurrency", + "artifactVersion": "2.1.0", + "name": "Stately", + "description": "Multithreaded Kotlin Multiplatform Utilities", + "website": "https://github.com/touchlab/Stately", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.russhwolf:multiplatform-settings", + "artifactVersion": "1.3.0", + "name": "Multiplatform Settings", + "description": "A Kotlin Multiplatform library for saving simple key-value data", + "website": "https://github.com/russhwolf/multiplatform-settings", + "developers": [ + { + "name": "Russell Wolf" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-annotations", + "artifactVersion": "4.2.1", + "name": "Koin", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "website": "https://insert-koin.io/", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-common", + "artifactVersion": "2.10.0", + "name": "Lifecycle-Common", + "description": "Android Lifecycle-Common", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "artifactVersion": "2.9.6", + "name": "Lifecycle Runtime", + "description": "Android Lifecycle Runtime", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose", + "artifactVersion": "2.9.6", + "name": "Lifecycle Runtime Compose", + "description": "Compose integration with Lifecycle", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel", + "description": "Android Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel Compose", + "description": "Compose integration with Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-navigation3", + "artifactVersion": "2.10.0", + "name": "Androidx Lifecycle Navigation3 ViewModel", + "description": "Provides the ViewModel wrapper for nav3.", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel with SavedState", + "description": "Android Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.navigation3:navigation3-ui", + "artifactVersion": "1.1.1", + "name": "Androidx Navigation 3 UI", + "description": "Provides a Navigation3 display that uses the building blocks from runtime to create a higher level solution.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.navigationevent:navigationevent-compose", + "artifactVersion": "1.0.1", + "name": "NavigationEvent Compose", + "description": "Compose integration with NavigationEvent", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.savedstate:savedstate", + "artifactVersion": "1.3.6", + "name": "Saved State", + "description": "Android Lifecycle Saved State", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.savedstate:savedstate-compose", + "artifactVersion": "1.3.6", + "name": "Saved State Compose", + "description": "Compose integration with Saved State", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.animation:animation", + "artifactVersion": "1.11.0", + "name": "Compose Animation", + "description": "Compose animation library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.animation:animation-core", + "artifactVersion": "1.11.0", + "name": "Compose Animation Core", + "description": "Animation engine and animation primitives that are the building blocks of the Compose animation library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.annotation-internal:annotation", + "artifactVersion": "1.10.0", + "name": "Annotation", + "description": "Provides source annotations for tooling and readability.", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.collection-internal:collection", + "artifactVersion": "1.10.0", + "name": "collections", + "description": "Standalone efficient collections.", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.components:components-resources", + "artifactVersion": "1.11.0", + "name": "Resources for Compose JB", + "description": "Resources for Compose JB", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.foundation:foundation", + "artifactVersion": "1.11.0", + "name": "Compose Foundation", + "description": "Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.foundation:foundation-layout", + "artifactVersion": "1.11.0", + "name": "Compose Layouts", + "description": "Compose layout implementations", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material3:material3", + "artifactVersion": "1.11.0-alpha07", + "name": "Compose Material3 Components", + "description": "Compose Material You Design Components library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material:material-ripple", + "artifactVersion": "1.11.0-beta03", + "name": "Compose Material Ripple", + "description": "Material ripple used to build interactive components", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.runtime:runtime", + "artifactVersion": "1.11.0", + "name": "Compose Runtime", + "description": "Tree composition support for code generated by the Compose compiler plugin and corresponding public API", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.runtime:runtime-saveable", + "artifactVersion": "1.11.0", + "name": "Compose Saveable", + "description": "Compose components that allow saving and restoring the local ui state", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui", + "artifactVersion": "1.11.0", + "name": "Compose UI", + "description": "Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-backhandler", + "artifactVersion": "1.11.0", + "name": "Compose BackHandler", + "description": "Provides BackHandler in Compose Multiplatform projects", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-geometry", + "artifactVersion": "1.11.0", + "name": "Compose Geometry", + "description": "Compose classes related to dimensions without units", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-graphics", + "artifactVersion": "1.11.0", + "name": "Compose Graphics", + "description": "Compose graphics", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-text", + "artifactVersion": "1.11.0", + "name": "Compose UI Text", + "description": "Compose Text primitives and utilities", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-tooling-preview", + "artifactVersion": "1.11.0", + "name": "Compose UI Preview Tooling", + "description": "Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-uikit", + "artifactVersion": "1.11.0", + "name": "Compose UIKit", + "description": "Internal iOS UIKit utilities including Objective-C library.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-unit", + "artifactVersion": "1.11.0", + "name": "Compose Unit", + "description": "Compose classes for simple units", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-util", + "artifactVersion": "1.11.0", + "name": "Compose Util", + "description": "Internal Compose utilities used by other modules", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib", + "artifactVersion": "2.3.21", + "name": "Kotlin Stdlib", + "description": "Kotlin Standard Library", + "website": "https://kotlinlang.org/", + "developers": [ + { + "name": "Kotlin Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:atomicfu", + "artifactVersion": "0.28.0", + "name": "atomicfu", + "description": "AtomicFU utilities", + "website": "https://github.com/Kotlin/kotlinx.atomicfu", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-browser", + "artifactVersion": "0.5.0", + "name": "kotlinx-browser", + "description": "Kotlinx Browser", + "website": "https://github.com/Kotlin/kotlinx-browser", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "artifactVersion": "1.9.0", + "name": "kotlinx-coroutines-core", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-datetime", + "artifactVersion": "0.7.1", + "name": "kotlinx-datetime", + "description": "Kotlin Datetime Library", + "website": "https://github.com/Kotlin/kotlinx-datetime", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-core", + "artifactVersion": "1.11.0", + "name": "kotlinx-serialization-core", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-json", + "artifactVersion": "1.11.0", + "name": "kotlinx-serialization-json", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.skiko:skiko", + "artifactVersion": "0.144.6", + "name": "Skiko KMP", + "description": "Kotlin Skia bindings", + "website": "https://www.github.com/JetBrains/skiko", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + } + ], + "licenses": { + "Apache-2.0": { + "name": "Apache License 2.0", + "url": "https://spdx.org/licenses/Apache-2.0.html", + "content": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.", + "internalHash": "Apache-2.0", + "spdxId": "Apache-2.0", + "hash": "Apache-2.0" + } + } +} \ No newline at end of file diff --git a/shared/src/jvmMain/resources/aboutlibraries.json b/shared/src/jvmMain/resources/aboutlibraries.json new file mode 100644 index 000000000..ce54fea25 --- /dev/null +++ b/shared/src/jvmMain/resources/aboutlibraries.json @@ -0,0 +1,1129 @@ +{ + "libraries": [ + { + "uniqueId": "androidx.annotation:annotation-jvm", + "artifactVersion": "1.9.1", + "name": "Annotation", + "description": "Provides source annotations for tooling and readability.", + "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.arch.core:core-common", + "artifactVersion": "2.2.0", + "name": "Android Arch-Common", + "description": "Android Arch-Common", + "website": "https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.collection:collection-jvm", + "artifactVersion": "1.5.0", + "name": "collections", + "description": "Standalone efficient collections.", + "website": "https://developer.android.com/jetpack/androidx/releases/collection#1.5.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-annotation-jvm", + "artifactVersion": "1.11.1", + "name": "Compose Runtime Annotation", + "description": "Provides Compose-specific annotations used by the compiler and tooling", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-desktop", + "artifactVersion": "1.11.1", + "name": "Compose Runtime", + "description": "Tree composition support for code generated by the Compose compiler plugin and corresponding public API", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-retain-desktop", + "artifactVersion": "1.11.1", + "name": "Compose Runtime Retain", + "description": "Preserve state in composable methods across configuration changes and other transient content destruction scenarios", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.compose.runtime:runtime-saveable-desktop", + "artifactVersion": "1.11.1", + "name": "Compose Saveable", + "description": "Compose components that allow saving and restoring the local ui state", + "website": "https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.11.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.graphics:graphics-shapes-desktop", + "artifactVersion": "1.1.0", + "name": "Graphics Shapes", + "description": "create and render rounded polygonal shapes", + "website": "https://developer.android.com/jetpack/androidx/releases/graphics#1.1.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-common-jvm", + "artifactVersion": "2.9.4", + "name": "Lifecycle-Common", + "description": "Android Lifecycle-Common", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-compose-desktop", + "artifactVersion": "2.9.4", + "name": "Lifecycle Runtime Compose", + "description": "Compose integration with Lifecycle", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-runtime-desktop", + "artifactVersion": "2.9.4", + "name": "Lifecycle Runtime", + "description": "Android Lifecycle Runtime", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.9.4", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-desktop", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel", + "description": "Android Lifecycle ViewModel", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.lifecycle:lifecycle-viewmodel-savedstate-desktop", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel with SavedState", + "description": "Android Lifecycle ViewModel", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.navigation3:navigation3-runtime-desktop", + "artifactVersion": "1.1.1", + "name": "Androidx Navigation 3 Runtime", + "description": "Provides the building blocks for a Compose first Navigation solution that easily supports extensions.", + "website": "https://developer.android.com/jetpack/androidx/releases/navigation3#1.1.1", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.navigationevent:navigationevent-desktop", + "artifactVersion": "1.0.2", + "name": "Navigation Event", + "description": "Provides APIs to easily intercept platform navigation events, including swipes and clicks, to provide a consistent API surface for handling these events.", + "website": "https://developer.android.com/jetpack/androidx/releases/navigationevent#1.0.2", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate-compose-desktop", + "artifactVersion": "1.4.0", + "name": "Saved State Compose", + "description": "Compose integration with Saved State", + "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.savedstate:savedstate-desktop", + "artifactVersion": "1.4.0", + "name": "Saved State", + "description": "Android Lifecycle Saved State", + "website": "https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "co.touchlab:stately-concurrency-jvm", + "artifactVersion": "2.1.0", + "name": "Stately", + "description": "Multithreaded Kotlin Multiplatform Utilities", + "website": "https://github.com/touchlab/Stately", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "com.russhwolf:multiplatform-settings-jvm", + "artifactVersion": "1.3.0", + "name": "Multiplatform Settings", + "description": "A Kotlin Multiplatform library for saving simple key-value data", + "website": "https://github.com/russhwolf/multiplatform-settings", + "developers": [ + { + "name": "Russell Wolf" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "io.insert-koin:koin-annotations-jvm", + "artifactVersion": "4.2.1", + "name": "Koin", + "description": "KOIN - Kotlin simple Dependency Injection Framework", + "website": "https://insert-koin.io/", + "developers": [ + { + "name": "Arnaud Giuliani" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-common", + "artifactVersion": "2.9.6", + "name": "Lifecycle-Common", + "description": "Android Lifecycle-Common", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-runtime", + "artifactVersion": "2.9.6", + "name": "Lifecycle Runtime", + "description": "Android Lifecycle Runtime", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose-desktop", + "artifactVersion": "2.9.6", + "name": "Lifecycle Runtime Compose", + "description": "Compose integration with Lifecycle", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel", + "description": "Android Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose-desktop", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel Compose", + "description": "Compose integration with Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-navigation3-desktop", + "artifactVersion": "2.10.0", + "name": "Androidx Lifecycle Navigation3 ViewModel", + "description": "Provides the ViewModel wrapper for nav3.", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate", + "artifactVersion": "2.10.0", + "name": "Lifecycle ViewModel with SavedState", + "description": "Android Lifecycle ViewModel", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.navigation3:navigation3-ui-desktop", + "artifactVersion": "1.1.1", + "name": "Androidx Navigation 3 UI", + "description": "Provides a Navigation3 display that uses the building blocks from runtime to create a higher level solution.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.navigationevent:navigationevent-compose-desktop", + "artifactVersion": "1.0.1", + "name": "NavigationEvent Compose", + "description": "Compose integration with NavigationEvent", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.savedstate:savedstate", + "artifactVersion": "1.3.6", + "name": "Saved State", + "description": "Android Lifecycle Saved State", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.androidx.savedstate:savedstate-compose-desktop", + "artifactVersion": "1.3.6", + "name": "Saved State Compose", + "description": "Compose integration with Saved State", + "website": "https://github.com/JetBrains/compose-jb", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.animation:animation-core-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Animation Core", + "description": "Animation engine and animation primitives that are the building blocks of the Compose animation library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.animation:animation-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Animation", + "description": "Compose animation library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.components:components-resources-desktop", + "artifactVersion": "1.11.0", + "name": "Resources for Compose JB", + "description": "Resources for Compose JB", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.desktop:desktop-jvm-linux-x64", + "artifactVersion": "1.11.0", + "name": "Compose Desktop", + "description": "Compose Desktop", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.foundation:foundation-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Foundation", + "description": "Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.foundation:foundation-layout-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Layouts", + "description": "Compose layout implementations", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-annotations-jvm", + "artifactVersion": "1.1.1", + "name": "hot-reload-annotations", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-core", + "artifactVersion": "1.1.1", + "name": "hot-reload-core", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-devtools-api", + "artifactVersion": "1.1.1", + "name": "hot-reload-devtools-api", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-orchestration", + "artifactVersion": "1.1.1", + "name": "hot-reload-orchestration", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-runtime-api-jvm", + "artifactVersion": "1.1.1", + "name": "hot-reload-runtime-api", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.hot-reload:hot-reload-runtime-jvm", + "artifactVersion": "1.1.1", + "name": "hot-reload-runtime-jvm", + "description": "Compose Hot Reload implementation", + "website": "https://github.com/JetBrains/compose-hot-reload", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material3:material3-desktop", + "artifactVersion": "1.11.0-alpha07", + "name": "Compose Material3 Components", + "description": "Compose Material You Design Components library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material:material-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Material Components", + "description": "Compose Material Design Components library", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.material:material-ripple-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Material Ripple", + "description": "Material ripple used to build interactive components", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.runtime:runtime-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Runtime", + "description": "Tree composition support for code generated by the Compose compiler plugin and corresponding public API", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.runtime:runtime-saveable-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Saveable", + "description": "Compose components that allow saving and restoring the local ui state", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-backhandler-desktop", + "artifactVersion": "1.11.0", + "name": "Compose BackHandler", + "description": "Provides BackHandler in Compose Multiplatform projects", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-desktop", + "artifactVersion": "1.11.0", + "name": "Compose UI", + "description": "Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-geometry-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Geometry", + "description": "Compose classes related to dimensions without units", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-graphics-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Graphics", + "description": "Compose graphics", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-text-desktop", + "artifactVersion": "1.11.0", + "name": "Compose UI Text", + "description": "Compose Text primitives and utilities", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-tooling-preview-desktop", + "artifactVersion": "1.11.0", + "name": "Compose UI Preview Tooling", + "description": "Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-unit-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Unit", + "description": "Compose classes for simple units", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.compose.ui:ui-util-desktop", + "artifactVersion": "1.11.0", + "name": "Compose Util", + "description": "Internal Compose utilities used by other modules", + "website": "https://github.com/JetBrains/compose-multiplatform", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib", + "artifactVersion": "2.3.21", + "name": "Kotlin Stdlib", + "description": "Kotlin Standard Library", + "website": "https://kotlinlang.org/", + "developers": [ + { + "name": "Kotlin Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:atomicfu-jvm", + "artifactVersion": "0.28.0", + "name": "atomicfu", + "description": "AtomicFU utilities", + "website": "https://github.com/Kotlin/kotlinx.atomicfu", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-bom", + "artifactVersion": "1.11.0", + "name": "kotlinx-coroutines-bom", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm", + "artifactVersion": "1.11.0", + "name": "kotlinx-coroutines-core", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-coroutines-swing", + "artifactVersion": "1.11.0", + "name": "kotlinx-coroutines-swing", + "description": "Coroutines support libraries for Kotlin", + "website": "https://github.com/Kotlin/kotlinx.coroutines", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-datetime-jvm", + "artifactVersion": "0.7.1", + "name": "kotlinx-datetime", + "description": "Kotlin Datetime Library", + "website": "https://github.com/Kotlin/kotlinx-datetime", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-bom", + "artifactVersion": "1.7.3", + "name": "kotlinx-serialization-bom", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-core-jvm", + "artifactVersion": "1.7.3", + "name": "kotlinx-serialization-core", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlinx:kotlinx-serialization-json-jvm", + "artifactVersion": "1.11.0", + "name": "kotlinx-serialization-json", + "description": "Kotlin multiplatform serialization runtime library", + "website": "https://github.com/Kotlin/kotlinx.serialization", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.runtime:jbr-api", + "artifactVersion": "1.9.0", + "name": "jbr-api", + "description": "Interface for the functionality specific to https://github.com/JetBrains/JetBrainsRuntime", + "website": "https://github.com/JetBrains/JetBrainsRuntimeApi", + "developers": [ + { + "name": "Nikita Gubarkov", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.skiko:skiko", + "artifactVersion": "0.144.6", + "name": "Skiko KMP", + "description": "Kotlin Skia bindings", + "website": "https://www.github.com/JetBrains/skiko", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.skiko:skiko-awt", + "artifactVersion": "0.144.6", + "name": "Skiko Awt", + "description": "Kotlin Skia bindings", + "website": "https://www.github.com/JetBrains/skiko", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.skiko:skiko-awt-runtime-linux-x64", + "artifactVersion": "0.144.6", + "name": "Skiko JVM Runtime for Linux X64", + "description": "Kotlin Skia bindings", + "website": "https://www.github.com/JetBrains/skiko", + "developers": [ + { + "name": "Compose Multiplatform Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains:annotations", + "artifactVersion": "23.0.0", + "name": "JetBrains Java Annotations", + "description": "A set of annotations used for code inspection support and code documentation.", + "website": "https://github.com/JetBrains/java-annotations", + "developers": [ + { + "name": "JetBrains Team", + "organisationUrl": "https://www.jetbrains.com" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jspecify:jspecify", + "artifactVersion": "1.0.0", + "name": "JSpecify annotations", + "description": "An artifact of well-named and well-specified annotations to power static analysis checks", + "website": "http://jspecify.org/", + "developers": [ + { + "name": "Kevin Bourrillion" + } + ], + "licenses": [ + "Apache-2.0" + ] + } + ], + "licenses": { + "Apache-2.0": { + "name": "Apache License 2.0", + "url": "https://spdx.org/licenses/Apache-2.0.html", + "content": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.", + "internalHash": "Apache-2.0", + "spdxId": "Apache-2.0", + "hash": "Apache-2.0" + } + } +} \ No newline at end of file From 0d06dd9b1a8124492b9b335ae3dc5e2308748802 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Wed, 27 May 2026 20:12:58 +0800 Subject: [PATCH 086/127] shared: Add composables for displaying library and link information Signed-off-by: Aayush Gupta --- desktopApp/build.gradle.kts | 5 + .../src/main/kotlin/net/newpipe/app/Main.kt | 2 +- gradle/libs.versions.toml | 4 + shared/build.gradle.kts | 19 ++ .../androidMain/assets/aboutlibraries.json | 32 +++- .../files => androidMain/assets}/keep.xml | 0 .../kotlin/net/newpipe/app/ComposeActivity.kt | 20 ++- .../app/platform/AndroidResourceHandler.kt | 23 +++ .../app/platform/AndroidShareHandler.kt | 36 ++++ .../drawable/ic_foreground.xml | 15 ++ .../composeResources/values/strings.xml | 27 +++ .../commonMain/kotlin/net/newpipe/app/App.kt | 16 +- .../kotlin/net/newpipe/app/Constants.kt | 7 + .../app/composable/about/LibraryListItem.kt | 60 +++++++ .../app/composable/about/LinkListItem.kt | 65 +++++++ .../di/serialization/SerializationModule.kt | 31 ++++ .../net/newpipe/app/model/AboutLibraries.kt | 42 +++++ .../net/newpipe/app/model/LicenseInfo.kt | 18 ++ .../kotlin/net/newpipe/app/model/Link.kt | 16 ++ .../net/newpipe/app/navigation/NavDisplay.kt | 11 +- .../net/newpipe/app/navigation/Screen.kt | 6 +- .../newpipe/app/platform/PlatformModule.kt | 20 +++ .../newpipe/app/platform/ResourceHandler.kt | 18 ++ .../net/newpipe/app/platform/ShareHandler.kt | 14 ++ .../app/preview/LibraryPreviewProvider.kt | 34 ++++ .../app/preview/LinkPreviewProvider.kt | 25 +++ .../net/newpipe/app/screen/about/AboutPage.kt | 169 ++++++++++++++++++ .../newpipe/app/screen/about/AboutScreen.kt | 111 ++++++++++++ .../newpipe/app/screen/about/LicenseDialog.kt | 92 ++++++++++ .../newpipe/app/screen/about/LicensePage.kt | 156 ++++++++++++++++ .../app/screen/about/navigation/Page.kt | 19 ++ .../kotlin/net/newpipe/app/theme/Color.kt | 2 + .../kotlin/net/newpipe/app/theme/Dimens.kt | 24 +++ .../kotlin/net/newpipe/app/theme/Theme.kt | 5 +- .../newpipe/app/viewmodel/ViewModelModule.kt | 18 ++ .../app/viewmodel/about/AboutViewModel.kt | 53 ++++++ .../composable/about/LibraryListItemTest.kt | 50 ++++++ .../app/composable/about/LinkListItemTest.kt | 44 +++++ .../app/screen/about/LicenseDialogTest.kt | 47 +++++ .../net/newpipe/app/MainViewController.kt | 8 +- .../app/platform/IOSResourceHandler.kt | 28 +++ .../newpipe/app/platform/IOSShareHandler.kt | 30 ++++ .../src/iosMain/resources/aboutlibraries.json | 22 +++ .../app/platform/JVMResourceHandler.kt | 21 +++ .../newpipe/app/platform/JVMShareHandler.kt | 25 +++ .../src/jvmMain/resources/aboutlibraries.json | 22 +++ 46 files changed, 1502 insertions(+), 10 deletions(-) rename shared/src/{commonMain/composeResources/files => androidMain/assets}/keep.xml (100%) create mode 100644 shared/src/androidMain/kotlin/net/newpipe/app/platform/AndroidResourceHandler.kt create mode 100644 shared/src/androidMain/kotlin/net/newpipe/app/platform/AndroidShareHandler.kt create mode 100644 shared/src/commonMain/composeResources/drawable/ic_foreground.xml create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/composable/about/LibraryListItem.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/composable/about/LinkListItem.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/di/serialization/SerializationModule.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/model/AboutLibraries.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/model/LicenseInfo.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/model/Link.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/platform/PlatformModule.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/platform/ResourceHandler.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/platform/ShareHandler.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/preview/LibraryPreviewProvider.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/preview/LinkPreviewProvider.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutPage.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutScreen.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicenseDialog.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/screen/about/navigation/Page.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/theme/Dimens.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/ViewModelModule.kt create mode 100644 shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/about/AboutViewModel.kt create mode 100644 shared/src/commonTest/kotlin/net/newpipe/app/composable/about/LibraryListItemTest.kt create mode 100644 shared/src/commonTest/kotlin/net/newpipe/app/composable/about/LinkListItemTest.kt create mode 100644 shared/src/commonTest/kotlin/net/newpipe/app/screen/about/LicenseDialogTest.kt create mode 100644 shared/src/iosMain/kotlin/net/newpipe/app/platform/IOSResourceHandler.kt create mode 100644 shared/src/iosMain/kotlin/net/newpipe/app/platform/IOSShareHandler.kt create mode 100644 shared/src/jvmMain/kotlin/net/newpipe/app/platform/JVMResourceHandler.kt create mode 100644 shared/src/jvmMain/kotlin/net/newpipe/app/platform/JVMShareHandler.kt diff --git a/desktopApp/build.gradle.kts b/desktopApp/build.gradle.kts index a9b022737..5dabccc17 100644 --- a/desktopApp/build.gradle.kts +++ b/desktopApp/build.gradle.kts @@ -38,4 +38,9 @@ aboutLibraries { prettyPrint = true excludeFields.addAll("organization", "scm", "funding") } + license { + additionalLicenses.addAll( + "GPL-3.0-or-later" + ) + } } diff --git a/desktopApp/src/main/kotlin/net/newpipe/app/Main.kt b/desktopApp/src/main/kotlin/net/newpipe/app/Main.kt index 609ce7289..62330aae5 100644 --- a/desktopApp/src/main/kotlin/net/newpipe/app/Main.kt +++ b/desktopApp/src/main/kotlin/net/newpipe/app/Main.kt @@ -13,6 +13,6 @@ import androidx.compose.ui.window.application */ fun main() = application { Window(onCloseRequest = ::exitApplication, title = "NewPipe") { - App() + App(onCloseRequest = ::exitApplication) } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 753aabdcb..2d4480046 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -13,6 +13,7 @@ assertj = "3.27.7" autoservice-google = "1.1.1" autoservice-zacsweers = "1.2.0" bridge = "v2.0.2" +browser = "1.10.0" cardview = "1.0.0" checkstyle = "13.4.2" coil = "3.4.0" @@ -29,6 +30,7 @@ groupie = "2.10.1" jsoup = "1.22.2" junit = "4.13.2" junit-ext = "1.3.0" +kermit = "2.1.0" koin = "4.2.1" koin-plugin = "1.0.0" kotlin = "2.3.21" @@ -81,6 +83,7 @@ acra-core = { module = "ch.acra:acra-core", version.ref = "acra" } android-desugar = { module = "com.android.tools:desugar_jdk_libs_nio", version.ref = "desugar" } androidx-activity = { module = "androidx.activity:activity-compose", version.ref = "activity" } androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" } +androidx-browser = { module = "androidx.browser:browser", version.ref = "browser" } androidx-cardview = { module = "androidx.cardview:cardview", version.ref = "cardview" } androidx-compose-test-ui-junit = { module = "androidx.compose.ui:ui-test-junit4-android", version.ref = "compose" } androidx-compose-test-ui-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "compose" } @@ -164,6 +167,7 @@ squareup-leakcanary-core = { module = "com.squareup.leakcanary:leakcanary-androi squareup-leakcanary-plumber = { module = "com.squareup.leakcanary:plumber-android", version.ref = "leakcanary" } squareup-leakcanary-watcher = { module = "com.squareup.leakcanary:leakcanary-object-watcher-android", version.ref = "leakcanary" } squareup-okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" } +touchlab-kermit = { module = "co.touchlab:kermit", version.ref = "kermit" } zacsweers-autoservice-compiler = { module = "dev.zacsweers.autoservice:auto-service-ksp", version.ref = "autoservice-zacsweers" } [plugins] diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index 68f878061..bdd32cd3a 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -109,6 +109,7 @@ kotlin { implementation(libs.koin.annotations) implementation(libs.russhwolf.settings.core) + implementation(libs.touchlab.kermit) } } commonTest.dependencies { @@ -120,6 +121,7 @@ kotlin { implementation(libs.jetbrains.compose.preview) implementation(libs.androidx.activity) implementation(libs.androidx.preference) + implementation(libs.androidx.browser) } val androidDeviceTest by getting { dependencies { @@ -154,4 +156,21 @@ aboutLibraries { variant = "metadataIosMain" excludeFields.addAll("organization", "scm", "funding") } + license { + additionalLicenses.addAll( + "GPL-3.0-or-later" + ) + // Ensure all licenses are known and have an SPDX ID (https://spdx.org/licenses/) + // When adding a new license here, also add it to net.newpipe.app.model.License for mapping + allowedLicenses.addAll( + "Apache-2.0", + "BSD-2-Clause", + "BSD-2-Clause", + "EPL-1.0", + "GPL-3.0-or-later", + "MIT", + "MIT-0", + "MPL-2.0" + ) + } } diff --git a/shared/src/androidMain/assets/aboutlibraries.json b/shared/src/androidMain/assets/aboutlibraries.json index c672a69bc..5198c1b0b 100644 --- a/shared/src/androidMain/assets/aboutlibraries.json +++ b/shared/src/androidMain/assets/aboutlibraries.json @@ -150,6 +150,21 @@ "Apache-2.0" ] }, + { + "uniqueId": "androidx.browser:browser", + "artifactVersion": "1.10.0", + "name": "Browser", + "description": "Provides support for embedding Custom Tabs in an app.", + "website": "https://developer.android.com/jetpack/androidx/releases/browser#1.10.0", + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, { "uniqueId": "androidx.cardview:cardview", "artifactVersion": "1.0.0", @@ -1608,6 +1623,21 @@ "Apache-2.0" ] }, + { + "uniqueId": "co.touchlab:kermit-android-debug", + "artifactVersion": "2.1.0", + "name": "Kermit", + "description": "Kermit The Log", + "website": "https://github.com/touchlab/Kermit", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, { "uniqueId": "co.touchlab:stately-concurrency-jvm", "artifactVersion": "2.1.0", @@ -3405,4 +3435,4 @@ "hash": "MPL-2.0" } } -} \ No newline at end of file +} diff --git a/shared/src/commonMain/composeResources/files/keep.xml b/shared/src/androidMain/assets/keep.xml similarity index 100% rename from shared/src/commonMain/composeResources/files/keep.xml rename to shared/src/androidMain/assets/keep.xml diff --git a/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt b/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt index ccd7893a0..bab2ebfe0 100644 --- a/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt +++ b/shared/src/androidMain/kotlin/net/newpipe/app/ComposeActivity.kt @@ -9,9 +9,13 @@ import android.os.Bundle import androidx.activity.ComponentActivity import androidx.activity.compose.setContent import androidx.activity.enableEdgeToEdge +import androidx.compose.runtime.DisposableEffect +import androidx.compose.ui.platform.LocalView +import androidx.core.view.WindowCompat import kotlinx.serialization.json.Json import net.newpipe.Constants import net.newpipe.app.navigation.Screen +import net.newpipe.app.theme.currentService /** * Entry point for compose-related UI components on Android @@ -26,8 +30,20 @@ class ComposeActivity : ComponentActivity() { // TODO: Change when everything is in compose and this is the primary activity startDestination = Json.decodeFromString( intent.getStringExtra(Constants.INTENT_SCREEN_KEY)!! - ) - ) + ), + onCloseRequest = ::finish + ) { + val view = LocalView.current + val service = currentService() + + DisposableEffect(service) { + val windowController = WindowCompat.getInsetsController(window, view) + windowController.isAppearanceLightStatusBars = service.isSchemeColorDensityLight + onDispose { + windowController.isAppearanceLightStatusBars = false + } + } + } } } } diff --git a/shared/src/androidMain/kotlin/net/newpipe/app/platform/AndroidResourceHandler.kt b/shared/src/androidMain/kotlin/net/newpipe/app/platform/AndroidResourceHandler.kt new file mode 100644 index 000000000..d162cd930 --- /dev/null +++ b/shared/src/androidMain/kotlin/net/newpipe/app/platform/AndroidResourceHandler.kt @@ -0,0 +1,23 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.platform + +import android.content.Context +import org.koin.core.annotation.Singleton + +/** + * Handles working with resources on Android + * @property context Context on Android, injected automatically by Koin + */ +@Singleton(binds = [ResourceHandler::class]) +class AndroidResourceHandler(private val context: Context) : ResourceHandler { + + override fun readResourceToString(path: String): String { + return context.assets.open(path).use { inputStream -> + inputStream.bufferedReader().readText() + } + } +} diff --git a/shared/src/androidMain/kotlin/net/newpipe/app/platform/AndroidShareHandler.kt b/shared/src/androidMain/kotlin/net/newpipe/app/platform/AndroidShareHandler.kt new file mode 100644 index 000000000..8d55611a2 --- /dev/null +++ b/shared/src/androidMain/kotlin/net/newpipe/app/platform/AndroidShareHandler.kt @@ -0,0 +1,36 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.platform + +import android.content.Context +import android.content.Intent +import androidx.browser.customtabs.CustomTabsIntent +import androidx.core.net.toUri +import co.touchlab.kermit.Logger +import org.koin.core.annotation.Singleton + +/** + * Handles sharing of data and information on Android + * @property context Context on Android, injected automatically by Koin + */ +@Singleton(binds = [ShareHandler::class]) +class AndroidShareHandler(private val context: Context) : ShareHandler { + + override fun openUrlInBrowser(url: String) { + try { + CustomTabsIntent.Builder() + .build() + .also { customIntent -> + customIntent.intent.addFlags( + Intent.FLAG_ACTIVITY_NEW_TASK + ) + } + .launchUrl(context, url.toUri()) + } catch (exception: Exception) { + Logger.e(messageString = "Failed to share URL", throwable = exception) + } + } +} diff --git a/shared/src/commonMain/composeResources/drawable/ic_foreground.xml b/shared/src/commonMain/composeResources/drawable/ic_foreground.xml new file mode 100644 index 000000000..e798f2981 --- /dev/null +++ b/shared/src/commonMain/composeResources/drawable/ic_foreground.xml @@ -0,0 +1,15 @@ + + + + + diff --git a/shared/src/commonMain/composeResources/values/strings.xml b/shared/src/commonMain/composeResources/values/strings.xml index 74b75e7cd..c991e2413 100644 --- a/shared/src/commonMain/composeResources/values/strings.xml +++ b/shared/src/commonMain/composeResources/values/strings.xml @@ -8,4 +8,31 @@ Back + + + About NewPipe + Third-party Licenses + By %1$s under %2$s + About \u0026 FAQ + Licenses + Libre lightweight streaming on Android. + Contribute + Whether you have ideas of; translation, design changes, code cleaning, or real heavy code changes—help is always welcome. The more is done the better it gets! + View on GitHub + Donate + NewPipe is developed by volunteers spending their free time bringing you the best user experience. Give back to help developers make NewPipe even better while they enjoy a cup of coffee. + Give back + Website + Visit the NewPipe Website for more info and news. + NewPipe\'s Privacy Policy + The NewPipe project takes your privacy very seriously. Therefore, the app does not collect any data without your consent.\nNewPipe\'s privacy policy explains in detail what data is sent and stored when you send a crash report. + Read privacy policy + NewPipe\'s License + NewPipe is copyleft libre software: You can use, study, share, and improve it at will. Specifically you can redistribute and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + Read license + Frequently asked questions + If you are having trouble using the app, be sure to check out these answers to common questions! + View on website + Open in browser + Done diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/App.kt b/shared/src/commonMain/kotlin/net/newpipe/app/App.kt index 81cdbce63..691cc7844 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/App.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/App.kt @@ -7,6 +7,7 @@ package net.newpipe.app import androidx.compose.runtime.Composable import net.newpipe.app.di.KoinApp +import net.newpipe.app.navigation.NavDisplay import net.newpipe.app.navigation.Screen import net.newpipe.app.theme.AppTheme import org.koin.compose.KoinApplication @@ -14,12 +15,23 @@ import org.koin.plugin.module.dsl.koinConfiguration /** * Entry point for the multiplatform compose application - * @param startDestination Starting destination for the app + * @param startDestination Starting destination for the app; defaults to about + * @param onCloseRequest Callback to close the app + * @param withKoin Additional logic to execute after initialising Koin and setting content */ @Composable -fun App(startDestination: Screen? = null) { +fun App( + startDestination: Screen = Screen.About, + onCloseRequest: () -> Unit, + withKoin: @Composable () -> Unit = {} +) { KoinApplication(configuration = koinConfiguration()) { AppTheme { + NavDisplay( + startDestination = startDestination, + onCloseRequest = onCloseRequest + ) + withKoin() } } } diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/Constants.kt b/shared/src/commonMain/kotlin/net/newpipe/app/Constants.kt index 757f644a1..268be463d 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/Constants.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/Constants.kt @@ -6,5 +6,12 @@ package net.newpipe.app object Constants { + const val URL_GITHUB = "https://github.com/TeamNewPipe/NewPipe" + const val URL_DONATION = "https://newpipe.net/donate/" + const val URL_WEBSITE = "https://newpipe.net/" + const val URL_PRIVACY = "https://newpipe.net/legal/privacy/" + const val URL_FAQ = "https://newpipe.net/FAQ/" + const val URL_LICENSE = "https://github.com/TeamNewPipe/NewPipe/blob/master/LICENSE" + const val KEY_STREAMING_SERVICE = "service" } diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/composable/about/LibraryListItem.kt b/shared/src/commonMain/kotlin/net/newpipe/app/composable/about/LibraryListItem.kt new file mode 100644 index 000000000..463d06053 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/composable/about/LibraryListItem.kt @@ -0,0 +1,60 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.composable.about + +import androidx.compose.foundation.layout.Column +import androidx.compose.material3.ListItem +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.PreviewLightDark +import androidx.compose.ui.tooling.preview.PreviewParameter +import androidx.compose.ui.tooling.preview.PreviewWrapper +import net.newpipe.app.model.Library +import net.newpipe.app.preview.LibraryPreviewProvider +import net.newpipe.app.preview.ThemePreviewProvider +import newpipe.shared.generated.resources.Res +import newpipe.shared.generated.resources.license +import org.jetbrains.compose.resources.stringResource + +/** + * Composable to display library details which are being used in the app + * @param modifier Modifier for the composable + * @param library Library to show the details + * @param onClick Callback when this composable is clicked + */ +@Composable +fun LibraryListItem(modifier: Modifier = Modifier, library: Library, onClick: () -> Unit = {}) { + ListItem( + onClick = onClick, + content = { + Column { + Text( + text = library.name, + style = MaterialTheme.typography.titleMedium + ) + Text( + text = stringResource( + Res.string.license, + library.developers.first().name, + library.licenses.first() + ), + style = MaterialTheme.typography.bodyMedium + ) + } + } + ) +} + +@PreviewWrapper(ThemePreviewProvider::class) +@PreviewLightDark +@Composable +private fun LibraryListItemPreview( + @PreviewParameter(LibraryPreviewProvider::class) library: Library +) { + LibraryListItem(library = library) +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/composable/about/LinkListItem.kt b/shared/src/commonMain/kotlin/net/newpipe/app/composable/about/LinkListItem.kt new file mode 100644 index 000000000..1da5fe5a1 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/composable/about/LinkListItem.kt @@ -0,0 +1,65 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.composable.about + +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.wrapContentWidth +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.material3.TextButton +import androidx.compose.runtime.Composable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.PreviewLightDark +import androidx.compose.ui.tooling.preview.PreviewParameter +import androidx.compose.ui.tooling.preview.PreviewWrapper +import net.newpipe.app.model.Link +import net.newpipe.app.preview.LinkPreviewProvider +import net.newpipe.app.preview.ThemePreviewProvider +import net.newpipe.app.theme.spaceXSmall + +/** + * Composable to display information about links + * @param link A link item with information + * @param onAction Callback when the action button is clicked + */ +@Composable +fun LinkListItem(modifier: Modifier = Modifier, link: Link, onAction: () -> Unit = {}) { + Column( + modifier = modifier + .fillMaxWidth() + .padding(spaceXSmall) + ) { + Text( + text = link.title, + style = MaterialTheme.typography.titleMedium + ) + Text( + text = link.description, + style = MaterialTheme.typography.bodyMedium + ) + + TextButton( + modifier = Modifier + .fillMaxWidth() + .wrapContentWidth(Alignment.End), + onClick = onAction + ) { + Text(text = link.action) + } + } +} + +@PreviewWrapper(ThemePreviewProvider::class) +@PreviewLightDark +@Composable +private fun LinkListItemPreview( + @PreviewParameter(LinkPreviewProvider::class) link: Link +) { + LinkListItem(link = link) +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/di/serialization/SerializationModule.kt b/shared/src/commonMain/kotlin/net/newpipe/app/di/serialization/SerializationModule.kt new file mode 100644 index 000000000..fd5d21495 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/di/serialization/SerializationModule.kt @@ -0,0 +1,31 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.di.serialization + +import kotlinx.serialization.json.Json +import org.koin.core.annotation.ComponentScan +import org.koin.core.annotation.Configuration +import org.koin.core.annotation.Module +import org.koin.core.annotation.Singleton + +/** + * Serialization module to serialize various resources into kotlin classes. + */ +@Module +@ComponentScan +@Configuration +object SerializationModule { + + @Singleton + fun provideJson(): Json { + return Json { + prettyPrint = true + ignoreUnknownKeys = true + coerceInputValues = true + explicitNulls = true + } + } +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/model/AboutLibraries.kt b/shared/src/commonMain/kotlin/net/newpipe/app/model/AboutLibraries.kt new file mode 100644 index 000000000..4a86aa879 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/model/AboutLibraries.kt @@ -0,0 +1,42 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.model + +import kotlinx.serialization.SerialName +import kotlinx.serialization.Serializable + +/** + * Classes to hold information parsed from the BOM generated by the AboutLibraries plugin + */ +@Serializable +data class AboutLibraries( + val libraries: List, + val licenses: Map +) + +@Serializable +data class Library( + @SerialName("uniqueId") + val id: String, + val name: String, + val developers: List, + val licenses: List, + val website: String? = null +) + +@Serializable +data class Developer( + val name: String, + val organisationUrl: String? = null +) + +@Serializable +data class License( + val content: String, + val name: String, + val spdxId: String, + val url: String +) diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/model/LicenseInfo.kt b/shared/src/commonMain/kotlin/net/newpipe/app/model/LicenseInfo.kt new file mode 100644 index 000000000..791c8c08e --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/model/LicenseInfo.kt @@ -0,0 +1,18 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.model + +import kotlinx.serialization.Serializable + +/** + * Class to hold information about a license shown to user + */ +@Serializable +data class LicenseInfo( + val name: String, + val website: String, + val license: String +) diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/model/Link.kt b/shared/src/commonMain/kotlin/net/newpipe/app/model/Link.kt new file mode 100644 index 000000000..448b39d0e --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/model/Link.kt @@ -0,0 +1,16 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.model + +/** + * Class to hold data for links shown to users + */ +data class Link( + val title: String, + val description: String, + val action: String, + val url: String +) diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt b/shared/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt index 8592b20b9..8b426bfb8 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/navigation/NavDisplay.kt @@ -9,18 +9,27 @@ import androidx.compose.runtime.Composable import androidx.navigation3.runtime.entryProvider import androidx.navigation3.runtime.rememberNavBackStack import androidx.navigation3.ui.NavDisplay +import net.newpipe.app.screen.about.AboutScreen /** * Navigation display for compose screens * @param startDestination Starting destination for the app + * @param onCloseRequest Callback to close app when there are no more screens left in backstack */ @Composable -fun NavDisplay(startDestination: Screen) { +fun NavDisplay(startDestination: Screen, onCloseRequest: () -> Unit) { val backstack = rememberNavBackStack(screenConfig, startDestination) + fun onNavigateUp() = if (backstack.size > 1) backstack.removeLastOrNull() else onCloseRequest() + NavDisplay( backStack = backstack, entryProvider = entryProvider { + entry { + AboutScreen( + onNavigateUp = ::onNavigateUp + ) + } } ) } diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt b/shared/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt index 6f5822a50..f1be64927 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/navigation/Screen.kt @@ -16,7 +16,11 @@ import kotlinx.serialization.modules.polymorphic * Destinations for navigation in compose */ @Serializable -sealed interface Screen : NavKey +sealed interface Screen : NavKey { + + @Serializable + data object About : Screen +} /** * Saved state configuration for screens diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/platform/PlatformModule.kt b/shared/src/commonMain/kotlin/net/newpipe/app/platform/PlatformModule.kt new file mode 100644 index 000000000..07026defc --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/platform/PlatformModule.kt @@ -0,0 +1,20 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.platform + +import org.koin.core.annotation.ComponentScan +import org.koin.core.annotation.Configuration +import org.koin.core.annotation.Module + +/** + * Module to access various common implementations that are dependent upon platform. + * See individual interfaces in this package and their implementations on platform packages + * for the declarations included in this module. + */ +@Module +@ComponentScan +@Configuration +object PlatformModule diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/platform/ResourceHandler.kt b/shared/src/commonMain/kotlin/net/newpipe/app/platform/ResourceHandler.kt new file mode 100644 index 000000000..b360cbe2f --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/platform/ResourceHandler.kt @@ -0,0 +1,18 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.platform + +/** + * Helper for working with platform-specific resources + * See individual platform classes for real implementation. + */ +interface ResourceHandler { + + /** + * Reads the resource at the given path + */ + fun readResourceToString(path: String): String +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/platform/ShareHandler.kt b/shared/src/commonMain/kotlin/net/newpipe/app/platform/ShareHandler.kt new file mode 100644 index 000000000..5f7ad7826 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/platform/ShareHandler.kt @@ -0,0 +1,14 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.platform + +/** + * Helper methods related to sharing of data and information + * See individual platform classes for real implementation. + */ +interface ShareHandler { + fun openUrlInBrowser(url: String) +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/preview/LibraryPreviewProvider.kt b/shared/src/commonMain/kotlin/net/newpipe/app/preview/LibraryPreviewProvider.kt new file mode 100644 index 000000000..b3b1f82a5 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/preview/LibraryPreviewProvider.kt @@ -0,0 +1,34 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.preview + +import androidx.compose.ui.tooling.preview.PreviewParameterProvider +import net.newpipe.app.model.Developer +import net.newpipe.app.model.Library + +/** + * Preview provider for composable working with [Library] + */ +class LibraryPreviewProvider : PreviewParameterProvider { + + override val values: Sequence + get() = sequenceOf(library) + + companion object { + val library = Library( + id = "net.newpipe.extractor", + name = "NewPipe Extractor", + developers = listOf( + Developer( + name = "Team NewPipe", + organisationUrl = "https://newpipe.net/" + ) + ), + licenses = listOf("GPL-3.0-or-later"), + website = "https://github.com/TeamNewPipe/NewPipeExtractor/" + ) + } +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/preview/LinkPreviewProvider.kt b/shared/src/commonMain/kotlin/net/newpipe/app/preview/LinkPreviewProvider.kt new file mode 100644 index 000000000..72622c5eb --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/preview/LinkPreviewProvider.kt @@ -0,0 +1,25 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.preview + +import androidx.compose.ui.tooling.preview.PreviewParameterProvider +import net.newpipe.app.model.Link + +/** + * Preview provider for composable working with [Link] + */ +class LinkPreviewProvider : PreviewParameterProvider { + + override val values: Sequence + get() = sequenceOf( + Link( + title = "About NewPipe e.V.", + description = "A non-profit association founded in Germany in 2022, mostly by TeamNewPipe members.", + action = "Join the association", + url = "https://newpipe-ev.de/join/" + ) + ) +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutPage.kt b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutPage.kt new file mode 100644 index 000000000..12c4cb9c6 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutPage.kt @@ -0,0 +1,169 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.screen.about + +import androidx.compose.foundation.Image +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.WindowInsets +import androidx.compose.foundation.layout.asPaddingValues +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.navigationBars +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.requiredSize +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.items +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.text.style.TextAlign +import androidx.compose.ui.tooling.preview.PreviewLightDark +import androidx.compose.ui.tooling.preview.PreviewWrapper +import net.newpipe.app.BuildConfig +import net.newpipe.app.Constants +import net.newpipe.app.composable.about.LinkListItem +import net.newpipe.app.model.Link +import net.newpipe.app.platform.ShareHandler +import net.newpipe.app.preview.ThemePreviewProvider +import net.newpipe.app.theme.iconTVDPI +import net.newpipe.app.theme.logoBackground +import net.newpipe.app.theme.spaceLarge +import net.newpipe.app.theme.spaceXSmall +import net.newpipe.app.theme.spaceXXSmall +import newpipe.shared.generated.resources.Res +import newpipe.shared.generated.resources.app_description +import newpipe.shared.generated.resources.app_name +import newpipe.shared.generated.resources.contribution_encouragement +import newpipe.shared.generated.resources.contribution_title +import newpipe.shared.generated.resources.donation_encouragement +import newpipe.shared.generated.resources.donation_title +import newpipe.shared.generated.resources.faq +import newpipe.shared.generated.resources.faq_description +import newpipe.shared.generated.resources.faq_title +import newpipe.shared.generated.resources.give_back +import newpipe.shared.generated.resources.ic_foreground +import newpipe.shared.generated.resources.open_in_browser +import newpipe.shared.generated.resources.privacy_policy_encouragement +import newpipe.shared.generated.resources.privacy_policy_title +import newpipe.shared.generated.resources.read_privacy_policy +import newpipe.shared.generated.resources.view_on_github +import newpipe.shared.generated.resources.website_encouragement +import newpipe.shared.generated.resources.website_title +import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource +import org.koin.compose.koinInject + +@get:Composable +private val DEFAULT_LINKS: List + get() = listOf( + Link( + title = stringResource(Res.string.faq_title), + description = stringResource(Res.string.faq_description), + action = stringResource(Res.string.faq), + url = Constants.URL_FAQ + ), + Link( + title = stringResource(Res.string.contribution_title), + description = stringResource(Res.string.contribution_encouragement), + action = stringResource(Res.string.view_on_github), + url = Constants.URL_GITHUB + ), + Link( + title = stringResource(Res.string.donation_title), + description = stringResource(Res.string.donation_encouragement), + action = stringResource(Res.string.give_back), + url = Constants.URL_DONATION + ), + Link( + title = stringResource(Res.string.website_title), + description = stringResource(Res.string.website_encouragement), + action = stringResource(Res.string.open_in_browser), + url = Constants.URL_WEBSITE + ), + Link( + title = stringResource(Res.string.privacy_policy_title), + description = stringResource(Res.string.privacy_policy_encouragement), + action = stringResource(Res.string.read_privacy_policy), + url = Constants.URL_PRIVACY + ) + ) + +@Composable +fun AboutPage(shareHandler: ShareHandler = koinInject()) { + AboutPageContent( + onOpenUrl = { url -> shareHandler.openUrlInBrowser(url) } + ) +} + +@Composable +fun AboutPageContent( + links: List = DEFAULT_LINKS, + onOpenUrl: (url: String) -> Unit = {} +) { + LazyColumn( + modifier = Modifier.fillMaxSize(), + contentPadding = WindowInsets.navigationBars.asPaddingValues(), + verticalArrangement = Arrangement.spacedBy(spaceXXSmall) + ) { + // Page Header + item { + Column( + modifier = Modifier + .padding(spaceLarge) + .fillMaxWidth(), + horizontalAlignment = Alignment.CenterHorizontally + ) { + Image( + modifier = Modifier + .requiredSize(iconTVDPI) + .clip(CircleShape) + .background(color = logoBackground), + painter = painterResource(Res.drawable.ic_foreground), + contentDescription = stringResource(Res.string.app_name) + ) + Spacer(modifier = Modifier.height(spaceXSmall)) + Text( + text = stringResource(Res.string.app_name), + style = MaterialTheme.typography.titleLarge, + textAlign = TextAlign.Center + ) + Text( + text = BuildConfig.VERSION_NAME, + style = MaterialTheme.typography.titleMedium, + textAlign = TextAlign.Center + ) + Text( + modifier = Modifier.fillMaxWidth(), + text = stringResource(Res.string.app_description), + textAlign = TextAlign.Center + ) + } + } + + // Links about NewPipe + items(items = links, key = { link -> link.url }) { link -> + LinkListItem( + link = link, + onAction = { onOpenUrl(link.url) } + ) + } + } +} + +@PreviewWrapper(ThemePreviewProvider::class) +@PreviewLightDark +@Composable +private fun AboutPagePreview() { + AboutPageContent() +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutScreen.kt b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutScreen.kt new file mode 100644 index 000000000..732b697f1 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/AboutScreen.kt @@ -0,0 +1,111 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.screen.about + +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.pager.HorizontalPager +import androidx.compose.foundation.pager.rememberPagerState +import androidx.compose.material3.ColorScheme +import androidx.compose.material3.Scaffold +import androidx.compose.material3.SecondaryTabRow +import androidx.compose.material3.Tab +import androidx.compose.material3.TabRowDefaults +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.tooling.preview.PreviewWrapper +import androidx.compose.ui.util.fastForEachIndexed +import kotlinx.coroutines.launch +import net.newpipe.app.composable.TopAppBar +import net.newpipe.app.preview.ThemePreviewProvider +import net.newpipe.app.screen.about.navigation.Page +import net.newpipe.app.theme.currentServiceScheme +import newpipe.shared.generated.resources.Res +import newpipe.shared.generated.resources.title_activity_about +import org.jetbrains.compose.resources.stringResource + +@Composable +fun AboutScreen(onNavigateUp: () -> Unit) { + AboutScreenContent( + onNavigateUp = onNavigateUp + ) +} + +@Composable +fun AboutScreenContent( + pages: List = listOf(Page.ABOUT, Page.LICENSE), + onNavigateUp: () -> Unit = {}, + serviceScheme: ColorScheme = currentServiceScheme() +) { + Scaffold( + topBar = { + TopAppBar( + title = stringResource(Res.string.title_activity_about), + onNavigateUp = onNavigateUp + ) + } + ) { paddingValues -> + Column( + modifier = Modifier + .fillMaxSize() + .padding(top = paddingValues.calculateTopPadding()) + ) { + val pagerState = rememberPagerState { pages.size } + val coroutineScope = rememberCoroutineScope() + + SecondaryTabRow( + modifier = Modifier.fillMaxWidth(), + containerColor = serviceScheme.primaryContainer, + indicator = { + TabRowDefaults.SecondaryIndicator( + modifier = Modifier.tabIndicatorOffset( + selectedTabIndex = pagerState.currentPage, + matchContentSize = false + ), + color = serviceScheme.onPrimaryContainer + ) + }, + selectedTabIndex = pagerState.currentPage + ) { + pages.fastForEachIndexed { index, _ -> + Tab( + selected = pagerState.currentPage == index, + text = { + Text( + text = stringResource(pages[index].localizedTitle), + color = serviceScheme.onPrimaryContainer + ) + }, + onClick = { + coroutineScope.launch { + pagerState.animateScrollToPage(index) + } + } + ) + } + } + + HorizontalPager(modifier = Modifier.fillMaxSize(), state = pagerState) { page -> + when (pages[page]) { + Page.ABOUT -> AboutPage() + Page.LICENSE -> LicensePage() + } + } + } + } +} + +@PreviewWrapper(ThemePreviewProvider::class) +@Preview +@Composable +private fun AboutScreenPreview() { + AboutScreenContent() +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicenseDialog.kt b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicenseDialog.kt new file mode 100644 index 000000000..79b338976 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicenseDialog.kt @@ -0,0 +1,92 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.screen.about + +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.items +import androidx.compose.material3.AlertDialog +import androidx.compose.material3.Text +import androidx.compose.material3.TextButton +import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.platform.testTag +import androidx.compose.ui.tooling.preview.PreviewLightDark +import androidx.compose.ui.tooling.preview.PreviewWrapper +import net.newpipe.app.model.LicenseInfo +import net.newpipe.app.preview.ThemePreviewProvider +import newpipe.shared.generated.resources.Res +import newpipe.shared.generated.resources.done +import newpipe.shared.generated.resources.website_title +import org.jetbrains.compose.resources.stringResource + +/** + * Test tag for lazy column hosting license text + */ +const val TEST_TAG_LICENSE_TEXT = "TEST_TAG_LICENSE_TEXT" + +/** + * Dialog to show license and other details for a library + * @param modifier Modifier for the dialog + * @param info License information to display + * @param onOpenWebsite Callback when action button to view library's website is clicked + * @param onDismiss Callback when the dialog is dismissed + */ +@Composable +fun LicenseDialog( + modifier: Modifier = Modifier, + info: LicenseInfo, + onOpenWebsite: (website: String) -> Unit = {}, + onDismiss: () -> Unit = {} +) { + val licenseContent = remember(info.license) { + info.license.lines() + } + + AlertDialog( + modifier = modifier, + title = { Text(text = info.name) }, + text = { + LazyColumn( + modifier = Modifier + .fillMaxWidth() + .testTag(TEST_TAG_LICENSE_TEXT) + ) { + items(items = licenseContent) { line -> + Text(text = line) + } + } + }, + onDismissRequest = onDismiss, + dismissButton = { + TextButton( + onClick = { onOpenWebsite(info.website) }, + enabled = info.website.isNotBlank() + ) { + Text(text = stringResource(Res.string.website_title)) + } + }, + confirmButton = { + TextButton(onClick = onDismiss) { + Text(text = stringResource(Res.string.done)) + } + } + ) +} + +@PreviewWrapper(ThemePreviewProvider::class) +@PreviewLightDark +@Composable +private fun LicenseDialogPreview() { + LicenseDialog( + info = LicenseInfo( + name = "NewPipe", + website = "https://newpipe.net/", + license = "GNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright \u00a9 2007 Free Software Foundation, Inc. \n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\n\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n\n0. Definitions.\n\n\u201cThis License\u201d refers to version 3 of the GNU General Public License.\n\n\u201cCopyright\u201d also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n\u201cThe Program\u201d refers to any copyrightable work licensed under this License. Each licensee is addressed as \u201cyou\u201d. \u201cLicensees\u201d and \u201crecipients\u201d may be individuals or organizations.\n\nTo \u201cmodify\u201d a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \u201cmodified version\u201d of the earlier work or a work \u201cbased on\u201d the earlier work.\n\nA \u201ccovered work\u201d means either the unmodified Program or a work based on the Program.\n\nTo \u201cpropagate\u201d a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo \u201cconvey\u201d a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \u201cAppropriate Legal Notices\u201d to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\nThe \u201csource code\u201d for a work means the preferred form of the work for making modifications to it. \u201cObject code\u201d means any non-source form of a work.\n\nA \u201cStandard Interface\u201d means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe \u201cSystem Libraries\u201d of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \u201cMajor Component\u201d, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe \u201cCorresponding Source\u201d for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to \u201ckeep intact all notices\u201d.\n\n c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\n\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \u201caggregate\u201d if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\n\n d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\n\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA \u201cUser Product\u201d is either (1) a \u201cconsumer product\u201d, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \u201cnormally used\u201d refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n\u201cInstallation Information\u201d for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n\u201cAdditional permissions\u201d are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\n\nAll other non-permissive additional terms are considered \u201cfurther restrictions\u201d within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\n\n9. Acceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn \u201centity transaction\u201d is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\nA \u201ccontributor\u201d is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \u201ccontributor version\u201d.\n\nA contributor's \u201cessential patent claims\u201d are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \u201ccontrol\u201d includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a \u201cpatent license\u201d is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \u201cgrant\u201d such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \u201cKnowingly relying\u201d means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is \u201cdiscriminatory\u201d if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \u201cor any later version\u201d applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \u201cAS IS\u201d WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \u201ccopyright\u201d line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \u201cabout box\u201d.\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a \u201ccopyright disclaimer\u201d for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see .\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read ." + ) + ) +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt new file mode 100644 index 000000000..d3f727a50 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt @@ -0,0 +1,156 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.screen.about + +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.WindowInsets +import androidx.compose.foundation.layout.asPaddingValues +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.navigationBars +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.wrapContentWidth +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.items +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.material3.TextButton +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.saveable.rememberSaveable +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.PreviewLightDark +import androidx.compose.ui.tooling.preview.PreviewParameter +import androidx.compose.ui.tooling.preview.PreviewWrapper +import androidx.lifecycle.compose.collectAsStateWithLifecycle +import kotlin.random.Random +import net.newpipe.app.composable.about.LibraryListItem +import net.newpipe.app.model.Library +import net.newpipe.app.model.License +import net.newpipe.app.model.LicenseInfo +import net.newpipe.app.platform.ShareHandler +import net.newpipe.app.preview.LibraryPreviewProvider +import net.newpipe.app.preview.ThemePreviewProvider +import net.newpipe.app.theme.spaceMedium +import net.newpipe.app.theme.spaceXSmall +import net.newpipe.app.theme.spaceXXSmall +import net.newpipe.app.viewmodel.about.AboutViewModel +import newpipe.shared.generated.resources.Res +import newpipe.shared.generated.resources.app_license +import newpipe.shared.generated.resources.app_license_title +import newpipe.shared.generated.resources.read_full_license +import newpipe.shared.generated.resources.title_licenses +import org.jetbrains.compose.resources.stringResource +import org.koin.compose.koinInject +import org.koin.compose.viewmodel.koinViewModel + +@Composable +fun LicensePage( + viewModel: AboutViewModel = koinViewModel(), + shareHandler: ShareHandler = koinInject() +) { + val libraries by viewModel.libraries.collectAsStateWithLifecycle() + val licenses by viewModel.licenses.collectAsStateWithLifecycle() + + LicensePageContent( + libraries = libraries, + licenses = licenses, + onOpenUrl = { url -> shareHandler.openUrlInBrowser(url) } + ) +} + +@Composable +fun LicensePageContent( + libraries: List = emptyList(), + licenses: List = emptyList(), + onOpenUrl: (url: String) -> Unit = {} +) { + var shouldShowLicenseDialog by rememberSaveable { mutableStateOf(null) } + shouldShowLicenseDialog?.let { info -> + LicenseDialog( + info = info, + onOpenWebsite = { website -> onOpenUrl(website) }, + onDismiss = { shouldShowLicenseDialog = null } + ) + } + + LazyColumn( + modifier = Modifier.fillMaxSize(), + contentPadding = WindowInsets.navigationBars.asPaddingValues(), + verticalArrangement = Arrangement.spacedBy(spaceXXSmall) + ) { + item { + Column( + modifier = Modifier + .fillMaxWidth() + .padding(spaceMedium), + verticalArrangement = Arrangement.spacedBy(spaceXSmall) + ) { + Text( + text = stringResource(Res.string.app_license_title), + style = MaterialTheme.typography.titleLarge + ) + Text( + text = stringResource(Res.string.app_license), + style = MaterialTheme.typography.bodyMedium + ) + + TextButton( + modifier = Modifier + .fillMaxWidth() + .wrapContentWidth(Alignment.End), + onClick = { + shouldShowLicenseDialog = LicenseInfo( + name = "NewPipe", + website = "https://newpipe.net/", + license = licenses.first { it.spdxId == "GPL-3.0-or-later" }.content + ) + } + ) { + Text(text = stringResource(Res.string.read_full_license)) + } + + Text( + text = stringResource(Res.string.title_licenses), + style = MaterialTheme.typography.titleLarge + ) + } + } + + // Third-party libraries and licenses + items(items = libraries, key = { library -> library.id }) { library -> + LibraryListItem( + library = library, + onClick = { + val license = licenses.first { license -> + license.spdxId == library.licenses.first() + } + shouldShowLicenseDialog = LicenseInfo( + name = library.name, + website = library.website ?: license.url, + license = license.content + ) + } + ) + } + } +} + +@PreviewWrapper(ThemePreviewProvider::class) +@PreviewLightDark +@Composable +private fun LicensePagePreview( + @PreviewParameter(LibraryPreviewProvider::class) library: Library +) { + val libraries = List(10) { + library.copy(id = Random.nextInt().toString()) + } + LicensePageContent(libraries = libraries) +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/navigation/Page.kt b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/navigation/Page.kt new file mode 100644 index 000000000..125f319c9 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/navigation/Page.kt @@ -0,0 +1,19 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.screen.about.navigation + +import newpipe.shared.generated.resources.Res +import newpipe.shared.generated.resources.tab_about +import newpipe.shared.generated.resources.tab_licenses +import org.jetbrains.compose.resources.StringResource + +/** + * Possible pages to show in about screen + */ +enum class Page(val localizedTitle: StringResource) { + ABOUT(Res.string.tab_about), + LICENSE(Res.string.tab_licenses) +} diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt index 5bb59ee2e..ad51d7b7d 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Color.kt @@ -8,6 +8,8 @@ package net.newpipe.app.theme import androidx.compose.ui.graphics.Color +val logoBackground = Color(0xFFCD201F) + val primaryLight = Color(0xFF904A45) val onPrimaryLight = Color(0xFFFFFFFF) val primaryContainerLight = Color(0xFFFFDAD6) diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/theme/Dimens.kt b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Dimens.kt new file mode 100644 index 000000000..b6e43776b --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Dimens.kt @@ -0,0 +1,24 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.theme + +import androidx.compose.ui.unit.dp + +val spaceXXSmall = 2.dp +val spaceXSmall = 4.dp +val spaceSmall = 8.dp +val spaceMedium = 10.dp +val spaceNormal = 12.dp +val spaceLarge = 16.dp +val spaceXLarge = 32.dp + +val iconLDPI = 36.dp +val iconMDPI = 48.dp +val iconTVDPI = 64.dp +val iconHDPI = 72.dp +val iconXHDPI = 96.dp +val iconXXHDPI = 144.dp +val iconXXXHDPI = 192.dp diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt index 5500ffeff..b6f3c74be 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/theme/Theme.kt @@ -125,7 +125,10 @@ fun currentColorScheme( @Composable fun AppTheme( isPreview: Boolean = LocalInspectionMode.current, - colorScheme: ColorScheme = if (isPreview) lightScheme else currentColorScheme(), + colorScheme: ColorScheme = when { + isPreview -> if (isSystemInDarkTheme()) darkScheme else lightScheme + else -> currentColorScheme() + }, content: @Composable () -> Unit ) { MaterialExpressiveTheme( diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/ViewModelModule.kt b/shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/ViewModelModule.kt new file mode 100644 index 000000000..b9d47b08a --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/ViewModelModule.kt @@ -0,0 +1,18 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.viewmodel + +import org.koin.core.annotation.ComponentScan +import org.koin.core.annotation.Configuration +import org.koin.core.annotation.Module + +/** + * Module to access ViewModels + */ +@Module +@ComponentScan +@Configuration +object ViewModelModule diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/about/AboutViewModel.kt b/shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/about/AboutViewModel.kt new file mode 100644 index 000000000..45254f915 --- /dev/null +++ b/shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/about/AboutViewModel.kt @@ -0,0 +1,53 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.viewmodel.about + +import androidx.lifecycle.ViewModel +import androidx.lifecycle.viewModelScope +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.IO +import kotlinx.coroutines.flow.MutableStateFlow +import kotlinx.coroutines.flow.asStateFlow +import kotlinx.coroutines.launch +import kotlinx.serialization.json.Json +import net.newpipe.app.model.AboutLibraries +import net.newpipe.app.model.Library +import net.newpipe.app.model.License +import net.newpipe.app.platform.ResourceHandler +import org.koin.core.annotation.ComponentScan +import org.koin.core.annotation.KoinViewModel + +@KoinViewModel +@ComponentScan +class AboutViewModel( + private val json: Json, + private val resourceHandler: ResourceHandler +) : ViewModel() { + + private val _libraries = MutableStateFlow>(emptyList()) + val libraries = _libraries.asStateFlow() + + private val _licenses = MutableStateFlow>(emptyList()) + val licenses = _licenses.asStateFlow() + + init { + viewModelScope.launch(Dispatchers.IO) { + parseLibraries() + } + } + + private fun parseLibraries() { + val aboutLibraries = json.decodeFromString( + resourceHandler.readResourceToString(PATH_BOM) + ) + _libraries.value = aboutLibraries.libraries + _licenses.value = aboutLibraries.licenses.values.toList() + } + + companion object { + private const val PATH_BOM = "aboutlibraries.json" + } +} diff --git a/shared/src/commonTest/kotlin/net/newpipe/app/composable/about/LibraryListItemTest.kt b/shared/src/commonTest/kotlin/net/newpipe/app/composable/about/LibraryListItemTest.kt new file mode 100644 index 000000000..90b87baec --- /dev/null +++ b/shared/src/commonTest/kotlin/net/newpipe/app/composable/about/LibraryListItemTest.kt @@ -0,0 +1,50 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.composable.about + +import androidx.compose.ui.test.ExperimentalTestApi +import androidx.compose.ui.test.assertIsDisplayed +import androidx.compose.ui.test.onNodeWithText +import androidx.compose.ui.test.performClick +import androidx.compose.ui.test.v2.runComposeUiTest +import kotlin.test.Test +import kotlin.test.assertTrue +import net.newpipe.app.model.Library +import net.newpipe.app.model.License + +@OptIn(ExperimentalTestApi::class) +class LibraryListItemTest { + + @Test + fun testLibraryListItem() = runComposeUiTest { + val library = Library( + id = "Test id", + name = "Test name", + developer = "Test developer", + license = License( + type = License.Companion.TYPE.APACHE_2_0, + text = "" + ), + website = "https://www.example.com" + ) + var clicked = false + setContent { + LibraryListItem( + library = library, + onClick = { + clicked = true + } + ) + } + + onNodeWithText(library.name).assertIsDisplayed() + onNodeWithText("By ${library.developer} under ${library.license.spdxId}").apply { + assertIsDisplayed() + performClick() + assertTrue(clicked) + } + } +} diff --git a/shared/src/commonTest/kotlin/net/newpipe/app/composable/about/LinkListItemTest.kt b/shared/src/commonTest/kotlin/net/newpipe/app/composable/about/LinkListItemTest.kt new file mode 100644 index 000000000..5172df447 --- /dev/null +++ b/shared/src/commonTest/kotlin/net/newpipe/app/composable/about/LinkListItemTest.kt @@ -0,0 +1,44 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.composable.about + +import androidx.compose.ui.test.ExperimentalTestApi +import androidx.compose.ui.test.assertIsDisplayed +import androidx.compose.ui.test.onNodeWithText +import androidx.compose.ui.test.performClick +import androidx.compose.ui.test.v2.runComposeUiTest +import kotlin.test.Test +import kotlin.test.assertTrue +import net.newpipe.app.model.Link + +@OptIn(ExperimentalTestApi::class) +class LinkListItemTest { + + @Test + fun testLinkListItem() = runComposeUiTest { + val link = Link( + title = "Test title", + description = "Test description", + action = "Test action", + url = "https://www.example.com" + ) + var actionClicked = false + setContent { + LinkListItem( + link = link, + onAction = { actionClicked = true } + ) + } + + onNodeWithText(link.title).assertIsDisplayed() + onNodeWithText(link.description).assertIsDisplayed() + onNodeWithText(link.action).apply { + assertIsDisplayed() + performClick() + assertTrue(actionClicked) + } + } +} diff --git a/shared/src/commonTest/kotlin/net/newpipe/app/screen/about/LicenseDialogTest.kt b/shared/src/commonTest/kotlin/net/newpipe/app/screen/about/LicenseDialogTest.kt new file mode 100644 index 000000000..04fab1a3e --- /dev/null +++ b/shared/src/commonTest/kotlin/net/newpipe/app/screen/about/LicenseDialogTest.kt @@ -0,0 +1,47 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.screen.about + +import androidx.compose.ui.test.ExperimentalTestApi +import androidx.compose.ui.test.assertIsDisplayed +import androidx.compose.ui.test.hasText +import androidx.compose.ui.test.onNodeWithTag +import androidx.compose.ui.test.onNodeWithText +import androidx.compose.ui.test.performClick +import androidx.compose.ui.test.performScrollToNode +import androidx.compose.ui.test.v2.runComposeUiTest +import kotlin.test.Test +import kotlin.test.assertTrue +import net.newpipe.app.preview.LibraryPreviewProvider +import newpipe.shared.generated.resources.Res +import newpipe.shared.generated.resources.website_title +import org.jetbrains.compose.resources.getString +import org.jetbrains.compose.resources.stringResource + +@OptIn(ExperimentalTestApi::class) +class LicenseDialogTest { + + @Test + fun testLicenseDialog() = runComposeUiTest { + val library = LibraryPreviewProvider.library + var websiteActionClicked = false + setContent { + LicenseDialog( + library = library, + onOpenWebsite = { websiteActionClicked = true } + ) + } + + onNodeWithText(library.name).assertIsDisplayed() + onNodeWithTag(TEST_TAG_LICENSE_TEXT) + .performScrollToNode(hasText("https://www.gnu.org/philosophy/why-not-lgpl.html", substring = true)) + .assertIsDisplayed() + onNodeWithText(getString(Res.string.website_title)).apply { + performClick() + assertTrue(websiteActionClicked) + } + } +} diff --git a/shared/src/iosMain/kotlin/net/newpipe/app/MainViewController.kt b/shared/src/iosMain/kotlin/net/newpipe/app/MainViewController.kt index 9a1701c0f..fa93532af 100644 --- a/shared/src/iosMain/kotlin/net/newpipe/app/MainViewController.kt +++ b/shared/src/iosMain/kotlin/net/newpipe/app/MainViewController.kt @@ -6,5 +6,11 @@ package net.newpipe.app import androidx.compose.ui.window.ComposeUIViewController +import platform.posix.exit -fun mainViewController() = ComposeUIViewController { App() } +fun mainViewController() = ComposeUIViewController { + App( + // TODO: Remove this as Apple doesn't likes quitting app manually + onCloseRequest = { exit(0) } + ) +} diff --git a/shared/src/iosMain/kotlin/net/newpipe/app/platform/IOSResourceHandler.kt b/shared/src/iosMain/kotlin/net/newpipe/app/platform/IOSResourceHandler.kt new file mode 100644 index 000000000..da4946a41 --- /dev/null +++ b/shared/src/iosMain/kotlin/net/newpipe/app/platform/IOSResourceHandler.kt @@ -0,0 +1,28 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.platform + +import kotlinx.cinterop.ExperimentalForeignApi +import org.koin.core.annotation.Singleton +import platform.Foundation.NSBundle +import platform.Foundation.NSString +import platform.Foundation.NSUTF8StringEncoding +import platform.Foundation.stringWithContentsOfFile + +/** + * Handles working with resources on iOS + */ +@OptIn(ExperimentalForeignApi::class) +@Singleton(binds = [ResourceHandler::class]) +class IOSResourceHandler : ResourceHandler { + + override fun readResourceToString(path: String): String { + val fileParts = path.substringBeforeLast('.') + val fileExtension = path.substringAfterLast('.', "") + val filePath = NSBundle.mainBundle.pathForResource(fileParts, fileExtension)!! + return NSString.stringWithContentsOfFile(filePath, NSUTF8StringEncoding, null)!! + } +} diff --git a/shared/src/iosMain/kotlin/net/newpipe/app/platform/IOSShareHandler.kt b/shared/src/iosMain/kotlin/net/newpipe/app/platform/IOSShareHandler.kt new file mode 100644 index 000000000..8ddd36a31 --- /dev/null +++ b/shared/src/iosMain/kotlin/net/newpipe/app/platform/IOSShareHandler.kt @@ -0,0 +1,30 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.platform + +import co.touchlab.kermit.Logger +import org.koin.core.annotation.Singleton +import platform.Foundation.NSURL +import platform.SafariServices.SFSafariViewController +import platform.UIKit.UIApplication + +/** + * Handles sharing of data and information on iOS + */ +@Singleton(binds = [ShareHandler::class]) +class IOSShareHandler : ShareHandler { + + override fun openUrlInBrowser(url: String) { + val nsUrl = NSURL.URLWithString(url) + if (nsUrl == null) { + Logger.e(messageString = "Unable to open malformatted URL, bailing out!") + } else { + val safariVC = SFSafariViewController(uRL = nsUrl) + val rootVC = UIApplication.sharedApplication.keyWindow?.rootViewController + rootVC?.presentViewController(safariVC, animated = true, completion = null) + } + } +} diff --git a/shared/src/iosMain/resources/aboutlibraries.json b/shared/src/iosMain/resources/aboutlibraries.json index 78d987b10..a469497a5 100644 --- a/shared/src/iosMain/resources/aboutlibraries.json +++ b/shared/src/iosMain/resources/aboutlibraries.json @@ -240,6 +240,21 @@ "Apache-2.0" ] }, + { + "uniqueId": "co.touchlab:kermit-core", + "artifactVersion": "2.1.0", + "name": "Kermit", + "description": "Kermit The Log", + "website": "https://github.com/touchlab/Kermit", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, { "uniqueId": "co.touchlab:stately-concurrency", "artifactVersion": "2.1.0", @@ -918,6 +933,13 @@ "internalHash": "Apache-2.0", "spdxId": "Apache-2.0", "hash": "Apache-2.0" + }, + "GPL-3.0-or-later": { + "name": "GNU General Public License v3.0 or later", + "url": "https://spdx.org/licenses/GPL-3.0-or-later.html", + "content": "GNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright \u00a9 2007 Free Software Foundation, Inc. \n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\n\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n\n0. Definitions.\n\n\u201cThis License\u201d refers to version 3 of the GNU General Public License.\n\n\u201cCopyright\u201d also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n\u201cThe Program\u201d refers to any copyrightable work licensed under this License. Each licensee is addressed as \u201cyou\u201d. \u201cLicensees\u201d and \u201crecipients\u201d may be individuals or organizations.\n\nTo \u201cmodify\u201d a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \u201cmodified version\u201d of the earlier work or a work \u201cbased on\u201d the earlier work.\n\nA \u201ccovered work\u201d means either the unmodified Program or a work based on the Program.\n\nTo \u201cpropagate\u201d a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo \u201cconvey\u201d a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \u201cAppropriate Legal Notices\u201d to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\nThe \u201csource code\u201d for a work means the preferred form of the work for making modifications to it. \u201cObject code\u201d means any non-source form of a work.\n\nA \u201cStandard Interface\u201d means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe \u201cSystem Libraries\u201d of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \u201cMajor Component\u201d, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe \u201cCorresponding Source\u201d for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to \u201ckeep intact all notices\u201d.\n\n c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\n\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \u201caggregate\u201d if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\n\n d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\n\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA \u201cUser Product\u201d is either (1) a \u201cconsumer product\u201d, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \u201cnormally used\u201d refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n\u201cInstallation Information\u201d for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n\u201cAdditional permissions\u201d are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\n\nAll other non-permissive additional terms are considered \u201cfurther restrictions\u201d within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\n\n9. Acceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn \u201centity transaction\u201d is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\nA \u201ccontributor\u201d is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \u201ccontributor version\u201d.\n\nA contributor's \u201cessential patent claims\u201d are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \u201ccontrol\u201d includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a \u201cpatent license\u201d is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \u201cgrant\u201d such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \u201cKnowingly relying\u201d means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is \u201cdiscriminatory\u201d if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \u201cor any later version\u201d applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \u201cAS IS\u201d WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \u201ccopyright\u201d line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \u201cabout box\u201d.\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a \u201ccopyright disclaimer\u201d for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see .\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read .", + "spdxId": "GPL-3.0-or-later", + "hash": "aa13f568b9f3d176bad132af7917c4ad" } } } \ No newline at end of file diff --git a/shared/src/jvmMain/kotlin/net/newpipe/app/platform/JVMResourceHandler.kt b/shared/src/jvmMain/kotlin/net/newpipe/app/platform/JVMResourceHandler.kt new file mode 100644 index 000000000..d9f2c015d --- /dev/null +++ b/shared/src/jvmMain/kotlin/net/newpipe/app/platform/JVMResourceHandler.kt @@ -0,0 +1,21 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.platform + +import org.koin.core.annotation.Singleton + +/** + * Handles reading of resources on JVM + */ +@Singleton(binds = [ResourceHandler::class]) +class JVMResourceHandler : ResourceHandler { + + override fun readResourceToString(path: String): String { + return Thread.currentThread().contextClassLoader.getResourceAsStream(path)!!.use { stream -> + stream.bufferedReader().readText() + } + } +} diff --git a/shared/src/jvmMain/kotlin/net/newpipe/app/platform/JVMShareHandler.kt b/shared/src/jvmMain/kotlin/net/newpipe/app/platform/JVMShareHandler.kt new file mode 100644 index 000000000..4e6466aaa --- /dev/null +++ b/shared/src/jvmMain/kotlin/net/newpipe/app/platform/JVMShareHandler.kt @@ -0,0 +1,25 @@ +/* + * SPDX-FileCopyrightText: 2026 NewPipe e.V. + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package net.newpipe.app.platform + +import co.touchlab.kermit.Logger +import java.awt.Desktop +import java.net.URI +import org.koin.core.annotation.Singleton + +/** + * Handles sharing of data and information on JVM + */ +@Singleton(binds = [ShareHandler::class]) +class JVMShareHandler : ShareHandler { + + override fun openUrlInBrowser(url: String) { + when { + Desktop.isDesktopSupported() -> Desktop.getDesktop().browse(URI(url)) + else -> Logger.e(messageString = "Unsupported platform! Cannot open URL in browser") + } + } +} diff --git a/shared/src/jvmMain/resources/aboutlibraries.json b/shared/src/jvmMain/resources/aboutlibraries.json index ce54fea25..2c76140b6 100644 --- a/shared/src/jvmMain/resources/aboutlibraries.json +++ b/shared/src/jvmMain/resources/aboutlibraries.json @@ -255,6 +255,21 @@ "Apache-2.0" ] }, + { + "uniqueId": "co.touchlab:kermit-core-jvm", + "artifactVersion": "2.1.0", + "name": "Kermit", + "description": "Kermit The Log", + "website": "https://github.com/touchlab/Kermit", + "developers": [ + { + "name": "Kevin Galligan" + } + ], + "licenses": [ + "Apache-2.0" + ] + }, { "uniqueId": "co.touchlab:stately-concurrency-jvm", "artifactVersion": "2.1.0", @@ -1124,6 +1139,13 @@ "internalHash": "Apache-2.0", "spdxId": "Apache-2.0", "hash": "Apache-2.0" + }, + "GPL-3.0-or-later": { + "name": "GNU General Public License v3.0 or later", + "url": "https://spdx.org/licenses/GPL-3.0-or-later.html", + "content": "GNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright \u00a9 2007 Free Software Foundation, Inc. \n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\n\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n\n0. Definitions.\n\n\u201cThis License\u201d refers to version 3 of the GNU General Public License.\n\n\u201cCopyright\u201d also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n\u201cThe Program\u201d refers to any copyrightable work licensed under this License. Each licensee is addressed as \u201cyou\u201d. \u201cLicensees\u201d and \u201crecipients\u201d may be individuals or organizations.\n\nTo \u201cmodify\u201d a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \u201cmodified version\u201d of the earlier work or a work \u201cbased on\u201d the earlier work.\n\nA \u201ccovered work\u201d means either the unmodified Program or a work based on the Program.\n\nTo \u201cpropagate\u201d a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo \u201cconvey\u201d a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \u201cAppropriate Legal Notices\u201d to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\nThe \u201csource code\u201d for a work means the preferred form of the work for making modifications to it. \u201cObject code\u201d means any non-source form of a work.\n\nA \u201cStandard Interface\u201d means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe \u201cSystem Libraries\u201d of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \u201cMajor Component\u201d, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe \u201cCorresponding Source\u201d for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to \u201ckeep intact all notices\u201d.\n\n c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\n\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \u201caggregate\u201d if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\n\n d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\n\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA \u201cUser Product\u201d is either (1) a \u201cconsumer product\u201d, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \u201cnormally used\u201d refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n\u201cInstallation Information\u201d for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n\u201cAdditional permissions\u201d are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\n\nAll other non-permissive additional terms are considered \u201cfurther restrictions\u201d within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\n\n9. Acceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn \u201centity transaction\u201d is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\nA \u201ccontributor\u201d is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \u201ccontributor version\u201d.\n\nA contributor's \u201cessential patent claims\u201d are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \u201ccontrol\u201d includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a \u201cpatent license\u201d is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \u201cgrant\u201d such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \u201cKnowingly relying\u201d means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is \u201cdiscriminatory\u201d if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \u201cor any later version\u201d applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \u201cAS IS\u201d WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \u201ccopyright\u201d line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \u201cabout box\u201d.\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a \u201ccopyright disclaimer\u201d for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see .\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read .", + "spdxId": "GPL-3.0-or-later", + "hash": "aa13f568b9f3d176bad132af7917c4ad" } } } \ No newline at end of file From 43dca2b45b7ccdeee47405236d9856e118fe064b Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Tue, 2 Jun 2026 15:57:28 +0800 Subject: [PATCH 087/127] shared: Switch to reading licenses directly It seems the licenses in the generated BOM by aboutlibraries plugin isn't consistent and changes without any reason Licenses were downloaded using reuse tool reuse --root shared/src/commonMain/composeResources/files/ download Apache-2.0 BSD-2-Clause EPL-1.0 GPL-3.0-only GPL-3.0-or-later MIT MPL-2.0 MIT-0 Signed-off-by: Aayush Gupta --- desktopApp/build.gradle.kts | 5 - shared/build.gradle.kts | 17 - .../files/LICENSES/Apache-2.0.txt | 73 ++++ .../files/LICENSES/BSD-2-Clause.txt | 9 + .../files/LICENSES/EPL-1.0.txt | 73 ++++ .../files/LICENSES/GPL-3.0-only.txt | 232 +++++++++++ .../files/LICENSES/GPL-3.0-or-later.txt | 232 +++++++++++ .../composeResources/files/LICENSES/MIT-0.txt | 16 + .../composeResources/files/LICENSES/MIT.txt | 18 + .../files/LICENSES/MPL-2.0.txt | 373 ++++++++++++++++++ .../net/newpipe/app/model/AboutLibraries.kt | 11 +- .../app/model/{LicenseInfo.kt => License.kt} | 6 +- .../newpipe/app/screen/about/LicenseDialog.kt | 27 +- .../newpipe/app/screen/about/LicensePage.kt | 21 +- .../app/viewmodel/about/AboutViewModel.kt | 5 - 15 files changed, 1054 insertions(+), 64 deletions(-) create mode 100644 shared/src/commonMain/composeResources/files/LICENSES/Apache-2.0.txt create mode 100644 shared/src/commonMain/composeResources/files/LICENSES/BSD-2-Clause.txt create mode 100644 shared/src/commonMain/composeResources/files/LICENSES/EPL-1.0.txt create mode 100644 shared/src/commonMain/composeResources/files/LICENSES/GPL-3.0-only.txt create mode 100644 shared/src/commonMain/composeResources/files/LICENSES/GPL-3.0-or-later.txt create mode 100644 shared/src/commonMain/composeResources/files/LICENSES/MIT-0.txt create mode 100644 shared/src/commonMain/composeResources/files/LICENSES/MIT.txt create mode 100644 shared/src/commonMain/composeResources/files/LICENSES/MPL-2.0.txt rename shared/src/commonMain/kotlin/net/newpipe/app/model/{LicenseInfo.kt => License.kt} (79%) diff --git a/desktopApp/build.gradle.kts b/desktopApp/build.gradle.kts index 5dabccc17..a9b022737 100644 --- a/desktopApp/build.gradle.kts +++ b/desktopApp/build.gradle.kts @@ -38,9 +38,4 @@ aboutLibraries { prettyPrint = true excludeFields.addAll("organization", "scm", "funding") } - license { - additionalLicenses.addAll( - "GPL-3.0-or-later" - ) - } } diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index bdd32cd3a..28d985877 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -156,21 +156,4 @@ aboutLibraries { variant = "metadataIosMain" excludeFields.addAll("organization", "scm", "funding") } - license { - additionalLicenses.addAll( - "GPL-3.0-or-later" - ) - // Ensure all licenses are known and have an SPDX ID (https://spdx.org/licenses/) - // When adding a new license here, also add it to net.newpipe.app.model.License for mapping - allowedLicenses.addAll( - "Apache-2.0", - "BSD-2-Clause", - "BSD-2-Clause", - "EPL-1.0", - "GPL-3.0-or-later", - "MIT", - "MIT-0", - "MPL-2.0" - ) - } } diff --git a/shared/src/commonMain/composeResources/files/LICENSES/Apache-2.0.txt b/shared/src/commonMain/composeResources/files/LICENSES/Apache-2.0.txt new file mode 100644 index 000000000..137069b82 --- /dev/null +++ b/shared/src/commonMain/composeResources/files/LICENSES/Apache-2.0.txt @@ -0,0 +1,73 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/shared/src/commonMain/composeResources/files/LICENSES/BSD-2-Clause.txt b/shared/src/commonMain/composeResources/files/LICENSES/BSD-2-Clause.txt new file mode 100644 index 000000000..5f662b354 --- /dev/null +++ b/shared/src/commonMain/composeResources/files/LICENSES/BSD-2-Clause.txt @@ -0,0 +1,9 @@ +Copyright (c) + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/shared/src/commonMain/composeResources/files/LICENSES/EPL-1.0.txt b/shared/src/commonMain/composeResources/files/LICENSES/EPL-1.0.txt new file mode 100644 index 000000000..70ed0f383 --- /dev/null +++ b/shared/src/commonMain/composeResources/files/LICENSES/EPL-1.0.txt @@ -0,0 +1,73 @@ +Eclipse Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; + +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + + b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + + c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. + + d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. + +3. REQUIREMENTS +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; + ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; + iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and + iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of the Program. +Contributors may not remove or alter any copyright notices contained within the Program. + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + +5. NO WARRANTY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. diff --git a/shared/src/commonMain/composeResources/files/LICENSES/GPL-3.0-only.txt b/shared/src/commonMain/composeResources/files/LICENSES/GPL-3.0-only.txt new file mode 100644 index 000000000..f6cdd22a6 --- /dev/null +++ b/shared/src/commonMain/composeResources/files/LICENSES/GPL-3.0-only.txt @@ -0,0 +1,232 @@ +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and other kinds of works. + +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. + +To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and modification follow. + +TERMS AND CONDITIONS + +0. Definitions. + +“This License” refers to version 3 of the GNU General Public License. + +“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. + +“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. + +To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. + +A “covered work” means either the unmodified Program or a work based on the Program. + +To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. + +To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + +1. Source Code. +The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. + +A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. + +The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. + +The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same work. + +2. Basic Permissions. +All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. +No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. + +4. Conveying Verbatim Copies. +You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. +You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. + + c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + +6. Conveying Non-Source Forms. +You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + + a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + + d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. + +A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. + +“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). + +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + +7. Additional Terms. +“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or authors of the material; or + + e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + +8. Termination. +You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + +9. Acceptance Not Required for Having Copies. +You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. +Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. + +An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + +11. Patents. +A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. + +A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. + +In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. + +A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. +If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + +13. Use with the GNU Affero General Public License. +Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. + +14. Revised Versions of this License. +The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. + +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + +15. Disclaimer of Warranty. +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. +If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”. + +You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . + +The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . diff --git a/shared/src/commonMain/composeResources/files/LICENSES/GPL-3.0-or-later.txt b/shared/src/commonMain/composeResources/files/LICENSES/GPL-3.0-or-later.txt new file mode 100644 index 000000000..f6cdd22a6 --- /dev/null +++ b/shared/src/commonMain/composeResources/files/LICENSES/GPL-3.0-or-later.txt @@ -0,0 +1,232 @@ +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and other kinds of works. + +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. + +To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and modification follow. + +TERMS AND CONDITIONS + +0. Definitions. + +“This License” refers to version 3 of the GNU General Public License. + +“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. + +“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. + +To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. + +A “covered work” means either the unmodified Program or a work based on the Program. + +To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. + +To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + +1. Source Code. +The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. + +A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. + +The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. + +The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same work. + +2. Basic Permissions. +All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. +No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. + +4. Conveying Verbatim Copies. +You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. +You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. + + c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + +6. Conveying Non-Source Forms. +You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + + a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + + d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. + +A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. + +“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). + +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + +7. Additional Terms. +“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or authors of the material; or + + e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + +8. Termination. +You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + +9. Acceptance Not Required for Having Copies. +You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. +Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. + +An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + +11. Patents. +A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. + +A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. + +In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. + +A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. +If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + +13. Use with the GNU Affero General Public License. +Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. + +14. Revised Versions of this License. +The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. + +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + +15. Disclaimer of Warranty. +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. +If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”. + +You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . + +The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . diff --git a/shared/src/commonMain/composeResources/files/LICENSES/MIT-0.txt b/shared/src/commonMain/composeResources/files/LICENSES/MIT-0.txt new file mode 100644 index 000000000..a4e9dc906 --- /dev/null +++ b/shared/src/commonMain/composeResources/files/LICENSES/MIT-0.txt @@ -0,0 +1,16 @@ +MIT No Attribution + +Copyright + +Permission is hereby granted, free of charge, to any person obtaining a copy of this +software and associated documentation files (the "Software"), to deal in the Software +without restriction, including without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/shared/src/commonMain/composeResources/files/LICENSES/MIT.txt b/shared/src/commonMain/composeResources/files/LICENSES/MIT.txt new file mode 100644 index 000000000..d817195da --- /dev/null +++ b/shared/src/commonMain/composeResources/files/LICENSES/MIT.txt @@ -0,0 +1,18 @@ +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and +associated documentation files (the "Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO +EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/shared/src/commonMain/composeResources/files/LICENSES/MPL-2.0.txt b/shared/src/commonMain/composeResources/files/LICENSES/MPL-2.0.txt new file mode 100644 index 000000000..ee6256cdb --- /dev/null +++ b/shared/src/commonMain/composeResources/files/LICENSES/MPL-2.0.txt @@ -0,0 +1,373 @@ +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at https://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/model/AboutLibraries.kt b/shared/src/commonMain/kotlin/net/newpipe/app/model/AboutLibraries.kt index 4a86aa879..5ab79b814 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/model/AboutLibraries.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/model/AboutLibraries.kt @@ -13,8 +13,7 @@ import kotlinx.serialization.Serializable */ @Serializable data class AboutLibraries( - val libraries: List, - val licenses: Map + val libraries: List ) @Serializable @@ -32,11 +31,3 @@ data class Developer( val name: String, val organisationUrl: String? = null ) - -@Serializable -data class License( - val content: String, - val name: String, - val spdxId: String, - val url: String -) diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/model/LicenseInfo.kt b/shared/src/commonMain/kotlin/net/newpipe/app/model/License.kt similarity index 79% rename from shared/src/commonMain/kotlin/net/newpipe/app/model/LicenseInfo.kt rename to shared/src/commonMain/kotlin/net/newpipe/app/model/License.kt index 791c8c08e..fb84abd52 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/model/LicenseInfo.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/model/License.kt @@ -11,8 +11,8 @@ import kotlinx.serialization.Serializable * Class to hold information about a license shown to user */ @Serializable -data class LicenseInfo( +data class License( val name: String, - val website: String, - val license: String + val spdxID: String, + val website: String? = null ) diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicenseDialog.kt b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicenseDialog.kt index 79b338976..4709c66ee 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicenseDialog.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicenseDialog.kt @@ -12,12 +12,16 @@ import androidx.compose.material3.AlertDialog import androidx.compose.material3.Text import androidx.compose.material3.TextButton import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue import androidx.compose.ui.Modifier import androidx.compose.ui.platform.testTag import androidx.compose.ui.tooling.preview.PreviewLightDark import androidx.compose.ui.tooling.preview.PreviewWrapper -import net.newpipe.app.model.LicenseInfo +import net.newpipe.app.model.License import net.newpipe.app.preview.ThemePreviewProvider import newpipe.shared.generated.resources.Res import newpipe.shared.generated.resources.done @@ -32,24 +36,27 @@ const val TEST_TAG_LICENSE_TEXT = "TEST_TAG_LICENSE_TEXT" /** * Dialog to show license and other details for a library * @param modifier Modifier for the dialog - * @param info License information to display + * @param license License information to display * @param onOpenWebsite Callback when action button to view library's website is clicked * @param onDismiss Callback when the dialog is dismissed */ @Composable fun LicenseDialog( modifier: Modifier = Modifier, - info: LicenseInfo, + license: License, onOpenWebsite: (website: String) -> Unit = {}, onDismiss: () -> Unit = {} ) { - val licenseContent = remember(info.license) { - info.license.lines() + var licenseContent by remember { mutableStateOf>(emptyList()) } + LaunchedEffect(key1 = Unit) { + licenseContent = Res.readBytes("files/LICENSES/${license.spdxID}.txt") + .decodeToString() + .lines() } AlertDialog( modifier = modifier, - title = { Text(text = info.name) }, + title = { Text(text = license.name) }, text = { LazyColumn( modifier = Modifier @@ -64,8 +71,8 @@ fun LicenseDialog( onDismissRequest = onDismiss, dismissButton = { TextButton( - onClick = { onOpenWebsite(info.website) }, - enabled = info.website.isNotBlank() + onClick = { onOpenWebsite(license.website!!) }, + enabled = !license.website.isNullOrBlank() ) { Text(text = stringResource(Res.string.website_title)) } @@ -83,10 +90,10 @@ fun LicenseDialog( @Composable private fun LicenseDialogPreview() { LicenseDialog( - info = LicenseInfo( + license = License( name = "NewPipe", website = "https://newpipe.net/", - license = "GNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright \u00a9 2007 Free Software Foundation, Inc. \n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\n\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n\n0. Definitions.\n\n\u201cThis License\u201d refers to version 3 of the GNU General Public License.\n\n\u201cCopyright\u201d also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n\u201cThe Program\u201d refers to any copyrightable work licensed under this License. Each licensee is addressed as \u201cyou\u201d. \u201cLicensees\u201d and \u201crecipients\u201d may be individuals or organizations.\n\nTo \u201cmodify\u201d a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \u201cmodified version\u201d of the earlier work or a work \u201cbased on\u201d the earlier work.\n\nA \u201ccovered work\u201d means either the unmodified Program or a work based on the Program.\n\nTo \u201cpropagate\u201d a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo \u201cconvey\u201d a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \u201cAppropriate Legal Notices\u201d to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\nThe \u201csource code\u201d for a work means the preferred form of the work for making modifications to it. \u201cObject code\u201d means any non-source form of a work.\n\nA \u201cStandard Interface\u201d means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe \u201cSystem Libraries\u201d of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \u201cMajor Component\u201d, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe \u201cCorresponding Source\u201d for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to \u201ckeep intact all notices\u201d.\n\n c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\n\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \u201caggregate\u201d if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\n\n d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\n\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA \u201cUser Product\u201d is either (1) a \u201cconsumer product\u201d, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \u201cnormally used\u201d refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n\u201cInstallation Information\u201d for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n\u201cAdditional permissions\u201d are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\n\nAll other non-permissive additional terms are considered \u201cfurther restrictions\u201d within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\n\n9. Acceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn \u201centity transaction\u201d is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\nA \u201ccontributor\u201d is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \u201ccontributor version\u201d.\n\nA contributor's \u201cessential patent claims\u201d are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \u201ccontrol\u201d includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a \u201cpatent license\u201d is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \u201cgrant\u201d such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \u201cKnowingly relying\u201d means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is \u201cdiscriminatory\u201d if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \u201cor any later version\u201d applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \u201cAS IS\u201d WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \u201ccopyright\u201d line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \u201cabout box\u201d.\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a \u201ccopyright disclaimer\u201d for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see .\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read ." + spdxID = "GPL-3.0-or-later" ) ) } diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt index d3f727a50..7c9151389 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/screen/about/LicensePage.kt @@ -34,7 +34,6 @@ import kotlin.random.Random import net.newpipe.app.composable.about.LibraryListItem import net.newpipe.app.model.Library import net.newpipe.app.model.License -import net.newpipe.app.model.LicenseInfo import net.newpipe.app.platform.ShareHandler import net.newpipe.app.preview.LibraryPreviewProvider import net.newpipe.app.preview.ThemePreviewProvider @@ -57,11 +56,9 @@ fun LicensePage( shareHandler: ShareHandler = koinInject() ) { val libraries by viewModel.libraries.collectAsStateWithLifecycle() - val licenses by viewModel.licenses.collectAsStateWithLifecycle() LicensePageContent( libraries = libraries, - licenses = licenses, onOpenUrl = { url -> shareHandler.openUrlInBrowser(url) } ) } @@ -69,13 +66,12 @@ fun LicensePage( @Composable fun LicensePageContent( libraries: List = emptyList(), - licenses: List = emptyList(), onOpenUrl: (url: String) -> Unit = {} ) { - var shouldShowLicenseDialog by rememberSaveable { mutableStateOf(null) } + var shouldShowLicenseDialog by rememberSaveable { mutableStateOf(null) } shouldShowLicenseDialog?.let { info -> LicenseDialog( - info = info, + license = info, onOpenWebsite = { website -> onOpenUrl(website) }, onDismiss = { shouldShowLicenseDialog = null } ) @@ -107,10 +103,10 @@ fun LicensePageContent( .fillMaxWidth() .wrapContentWidth(Alignment.End), onClick = { - shouldShowLicenseDialog = LicenseInfo( + shouldShowLicenseDialog = License( name = "NewPipe", website = "https://newpipe.net/", - license = licenses.first { it.spdxId == "GPL-3.0-or-later" }.content + spdxID = "GPL-3.0-or-later" ) } ) { @@ -129,13 +125,10 @@ fun LicensePageContent( LibraryListItem( library = library, onClick = { - val license = licenses.first { license -> - license.spdxId == library.licenses.first() - } - shouldShowLicenseDialog = LicenseInfo( + shouldShowLicenseDialog = License( name = library.name, - website = library.website ?: license.url, - license = license.content + website = library.website, + spdxID = library.licenses.first() ) } ) diff --git a/shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/about/AboutViewModel.kt b/shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/about/AboutViewModel.kt index 45254f915..c69907f26 100644 --- a/shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/about/AboutViewModel.kt +++ b/shared/src/commonMain/kotlin/net/newpipe/app/viewmodel/about/AboutViewModel.kt @@ -15,7 +15,6 @@ import kotlinx.coroutines.launch import kotlinx.serialization.json.Json import net.newpipe.app.model.AboutLibraries import net.newpipe.app.model.Library -import net.newpipe.app.model.License import net.newpipe.app.platform.ResourceHandler import org.koin.core.annotation.ComponentScan import org.koin.core.annotation.KoinViewModel @@ -30,9 +29,6 @@ class AboutViewModel( private val _libraries = MutableStateFlow>(emptyList()) val libraries = _libraries.asStateFlow() - private val _licenses = MutableStateFlow>(emptyList()) - val licenses = _licenses.asStateFlow() - init { viewModelScope.launch(Dispatchers.IO) { parseLibraries() @@ -44,7 +40,6 @@ class AboutViewModel( resourceHandler.readResourceToString(PATH_BOM) ) _libraries.value = aboutLibraries.libraries - _licenses.value = aboutLibraries.licenses.values.toList() } companion object { From 8392cd56bdf6ee95f1d07ca527c5799a3c467813 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Tue, 2 Jun 2026 16:38:04 +0800 Subject: [PATCH 088/127] app: Switch to compose implementation of AboutActivity Signed-off-by: Aayush Gupta --- .../java/org/schabi/newpipe/util/NavigationHelper.java | 7 ++++--- shared/build.gradle.kts | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/util/NavigationHelper.java b/app/src/main/java/org/schabi/newpipe/util/NavigationHelper.java index 9632b9bee..59cd71d02 100644 --- a/app/src/main/java/org/schabi/newpipe/util/NavigationHelper.java +++ b/app/src/main/java/org/schabi/newpipe/util/NavigationHelper.java @@ -25,11 +25,13 @@ import com.jakewharton.processphoenix.ProcessPhoenix; +import net.newpipe.app.extensions.ContextKt; +import net.newpipe.app.navigation.Screen; + import org.schabi.newpipe.MainActivity; import org.schabi.newpipe.NewPipeDatabase; import org.schabi.newpipe.R; import org.schabi.newpipe.RouterActivity; -import org.schabi.newpipe.about.AboutActivity; import org.schabi.newpipe.database.feed.model.FeedGroupEntity; import org.schabi.newpipe.download.DownloadActivity; import org.schabi.newpipe.error.ErrorUtil; @@ -682,8 +684,7 @@ public static void openRouterActivity(final Context context, final String url) { } public static void openAbout(final Context context) { - final Intent intent = new Intent(context, AboutActivity.class); - context.startActivity(intent); + ContextKt.navigateTo(context, Screen.About.INSTANCE); } public static void openSettings(final Context context) { diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index 28d985877..197f4a72f 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -101,7 +101,8 @@ kotlin { implementation(libs.jetbrains.lifecycle.viewmodel) - implementation(libs.jetbrains.navigation3.ui) + // Use API as java compiler cannot see NavKey for some reason + api(libs.jetbrains.navigation3.ui) implementation(libs.jetbrains.lifecycle.navigation3) implementation(libs.kotlinx.serialization.json) From ac180ced84eda6986b48e9e75e63aa42be226c29 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Tue, 2 Jun 2026 16:39:43 +0800 Subject: [PATCH 089/127] app: Drop about activity implementation Signed-off-by: Aayush Gupta --- app/src/main/assets/apache2.html | 162 ----- app/src/main/assets/epl1.html | 245 ------- app/src/main/assets/gpl_3.html | 639 ------------------ app/src/main/assets/mit.html | 26 - app/src/main/assets/mpl2.html | 261 ------- .../org/schabi/newpipe/about/AboutActivity.kt | 260 ------- .../java/org/schabi/newpipe/about/License.kt | 11 - .../schabi/newpipe/about/LicenseFragment.kt | 142 ---- .../newpipe/about/LicenseFragmentHelper.kt | 55 -- .../schabi/newpipe/about/SoftwareComponent.kt | 17 - .../schabi/newpipe/about/StandardLicenses.kt | 21 - app/src/main/res/layout/activity_about.xml | 39 -- app/src/main/res/layout/fragment_about.xml | 148 ---- app/src/main/res/layout/fragment_licenses.xml | 55 -- 14 files changed, 2081 deletions(-) delete mode 100644 app/src/main/assets/apache2.html delete mode 100644 app/src/main/assets/epl1.html delete mode 100644 app/src/main/assets/gpl_3.html delete mode 100644 app/src/main/assets/mit.html delete mode 100644 app/src/main/assets/mpl2.html delete mode 100644 app/src/main/java/org/schabi/newpipe/about/AboutActivity.kt delete mode 100644 app/src/main/java/org/schabi/newpipe/about/License.kt delete mode 100644 app/src/main/java/org/schabi/newpipe/about/LicenseFragment.kt delete mode 100644 app/src/main/java/org/schabi/newpipe/about/LicenseFragmentHelper.kt delete mode 100644 app/src/main/java/org/schabi/newpipe/about/SoftwareComponent.kt delete mode 100644 app/src/main/java/org/schabi/newpipe/about/StandardLicenses.kt delete mode 100644 app/src/main/res/layout/activity_about.xml delete mode 100644 app/src/main/res/layout/fragment_about.xml delete mode 100644 app/src/main/res/layout/fragment_licenses.xml diff --git a/app/src/main/assets/apache2.html b/app/src/main/assets/apache2.html deleted file mode 100644 index de86cde66..000000000 --- a/app/src/main/assets/apache2.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - Apache License - Version 2.0, January 2004 - - -

Apache License
Version 2.0, January 2004
- http://www.apache.org/licenses/

-

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

-

1. Definitions.

-

"License" shall mean the terms and conditions for use, reproduction, and - distribution as defined by Sections 1 through 9 of this document.

-

"Licensor" shall mean the copyright owner or entity authorized by the - copyright owner that is granting the License.

-

"Legal Entity" shall mean the union of the acting entity and all other - entities that control, are controlled by, or are under common control with - that entity. For the purposes of this definition, "control" means (i) the - power, direct or indirect, to cause the direction or management of such - entity, whether by contract or otherwise, or (ii) ownership of fifty - percent (50%) or more of the outstanding shares, or (iii) beneficial - ownership of such entity.

-

"You" (or "Your") shall mean an individual or Legal Entity exercising - permissions granted by this License.

-

"Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation source, - and configuration files.

-

"Object" form shall mean any form resulting from mechanical transformation - or translation of a Source form, including but not limited to compiled - object code, generated documentation, and conversions to other media types.

-

"Work" shall mean the work of authorship, whether in Source or Object form, - made available under the License, as indicated by a copyright notice that - is included in or attached to the work (an example is provided in the - Appendix below).

-

"Derivative Works" shall mean any work, whether in Source or Object form, - that is based on (or derived from) the Work and for which the editorial - revisions, annotations, elaborations, or other modifications represent, as - a whole, an original work of authorship. For the purposes of this License, - Derivative Works shall not include works that remain separable from, or - merely link (or bind by name) to the interfaces of, the Work and Derivative - Works thereof.

-

"Contribution" shall mean any work of authorship, including the original - version of the Work and any modifications or additions to that Work or - Derivative Works thereof, that is intentionally submitted to Licensor for - inclusion in the Work by the copyright owner or by an individual or Legal - Entity authorized to submit on behalf of the copyright owner. For the - purposes of this definition, "submitted" means any form of electronic, - verbal, or written communication sent to the Licensor or its - representatives, including but not limited to communication on electronic - mailing lists, source code control systems, and issue tracking systems that - are managed by, or on behalf of, the Licensor for the purpose of discussing - and improving the Work, but excluding communication that is conspicuously - marked or otherwise designated in writing by the copyright owner as "Not a - Contribution."

-

"Contributor" shall mean Licensor and any individual or Legal Entity on - behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work.

-

2. Grant of Copyright License. Subject to the - terms and conditions of this License, each Contributor hereby grants to You - a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, publicly - display, publicly perform, sublicense, and distribute the Work and such - Derivative Works in Source or Object form.

-

3. Grant of Patent License. Subject to the terms - and conditions of this License, each Contributor hereby grants to You a - perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, use, - offer to sell, sell, import, and otherwise transfer the Work, where such - license applies only to those patent claims licensable by such Contributor - that are necessarily infringed by their Contribution(s) alone or by - combination of their Contribution(s) with the Work to which such - Contribution(s) was submitted. If You institute patent litigation against - any entity (including a cross-claim or counterclaim in a lawsuit) alleging - that the Work or a Contribution incorporated within the Work constitutes - direct or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate as of the - date such litigation is filed.

-

4. Redistribution. You may reproduce and - distribute copies of the Work or Derivative Works thereof in any medium, - with or without modifications, and in Source or Object form, provided that - You meet the following conditions:

-
    -
  1. You must give any other recipients of the Work or Derivative Works a - copy of this License; and
  2. - -
  3. You must cause any modified files to carry prominent notices stating - that You changed the files; and
  4. - -
  5. You must retain, in the Source form of any Derivative Works that You - distribute, all copyright, patent, trademark, and attribution notices from - the Source form of the Work, excluding those notices that do not pertain to - any part of the Derivative Works; and
  6. - -
  7. If the Work includes a "NOTICE" text file as part of its distribution, - then any Derivative Works that You distribute must include a readable copy - of the attribution notices contained within such NOTICE file, excluding - those notices that do not pertain to any part of the Derivative Works, in - at least one of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or documentation, - if provided along with the Derivative Works; or, within a display generated - by the Derivative Works, if and wherever such third-party notices normally - appear. The contents of the NOTICE file are for informational purposes only - and do not modify the License. You may add Your own attribution notices - within Derivative Works that You distribute, alongside or as an addendum to - the NOTICE text from the Work, provided that such additional attribution - notices cannot be construed as modifying the License. -
    -
    - You may add Your own copyright statement to Your modifications and may - provide additional or different license terms and conditions for use, - reproduction, or distribution of Your modifications, or for any such - Derivative Works as a whole, provided Your use, reproduction, and - distribution of the Work otherwise complies with the conditions stated in - this License. -
  8. - -
- -

5. Submission of Contributions. Unless You - explicitly state otherwise, any Contribution intentionally submitted for - inclusion in the Work by You to the Licensor shall be under the terms and - conditions of this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify the - terms of any separate license agreement you may have executed with Licensor - regarding such Contributions.

-

6. Trademarks. This License does not grant - permission to use the trade names, trademarks, service marks, or product - names of the Licensor, except as required for reasonable and customary use - in describing the origin of the Work and reproducing the content of the - NOTICE file.

-

7. Disclaimer of Warranty. Unless required by - applicable law or agreed to in writing, Licensor provides the Work (and - each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT - WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, - without limitation, any warranties or conditions of TITLE, - NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You - are solely responsible for determining the appropriateness of using or - redistributing the Work and assume any risks associated with Your exercise - of permissions under this License.

-

8. Limitation of Liability. In no event and - under no legal theory, whether in tort (including negligence), contract, or - otherwise, unless required by applicable law (such as deliberate and - grossly negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a result - of this License or out of the use or inability to use the Work (including - but not limited to damages for loss of goodwill, work stoppage, computer - failure or malfunction, or any and all other commercial damages or losses), - even if such Contributor has been advised of the possibility of such - damages.

-

9. Accepting Warranty or Additional Liability. - While redistributing the Work or Derivative Works thereof, You may choose - to offer, and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this License. - However, in accepting such obligations, You may act only on Your own behalf - and on Your sole responsibility, not on behalf of any other Contributor, - and only if You agree to indemnify, defend, and hold each Contributor - harmless for any liability incurred by, or claims asserted against, such - Contributor by reason of your accepting any such warranty or additional - liability.

- - \ No newline at end of file diff --git a/app/src/main/assets/epl1.html b/app/src/main/assets/epl1.html deleted file mode 100644 index 7123552dd..000000000 --- a/app/src/main/assets/epl1.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - Eclipse Public License - Version 1.0 - - - - - -

Eclipse Public License - v 1.0

- -

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE - PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR - DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS - AGREEMENT.

- -

1. DEFINITIONS

- -

"Contribution" means:

- -

a) in the case of the initial Contributor, the initial - code and documentation distributed under this Agreement, and

-

b) in the case of each subsequent Contributor:

-

i) changes to the Program, and

-

ii) additions to the Program;

-

where such changes and/or additions to the Program - originate from and are distributed by that particular Contributor. A - Contribution 'originates' from a Contributor if it was added to the - Program by such Contributor itself or anyone acting on such - Contributor's behalf. Contributions do not include additions to the - Program which: (i) are separate modules of software distributed in - conjunction with the Program under their own license agreement, and (ii) - are not derivative works of the Program.

- -

"Contributor" means any person or entity that distributes - the Program.

- -

"Licensed Patents" mean patent claims licensable by a - Contributor which are necessarily infringed by the use or sale of its - Contribution alone or when combined with the Program.

- -

"Program" means the Contributions distributed in accordance - with this Agreement.

- -

"Recipient" means anyone who receives the Program under - this Agreement, including all Contributors.

- -

2. GRANT OF RIGHTS

- -

a) Subject to the terms of this Agreement, each - Contributor hereby grants Recipient a non-exclusive, worldwide, - royalty-free copyright license to reproduce, prepare derivative works - of, publicly display, publicly perform, distribute and sublicense the - Contribution of such Contributor, if any, and such derivative works, in - source code and object code form.

- -

b) Subject to the terms of this Agreement, each - Contributor hereby grants Recipient a non-exclusive, worldwide, - royalty-free patent license under Licensed Patents to make, use, sell, - offer to sell, import and otherwise transfer the Contribution of such - Contributor, if any, in source code and object code form. This patent - license shall apply to the combination of the Contribution and the - Program if, at the time the Contribution is added by the Contributor, - such addition of the Contribution causes such combination to be covered - by the Licensed Patents. The patent license shall not apply to any other - combinations which include the Contribution. No hardware per se is - licensed hereunder.

- -

c) Recipient understands that although each Contributor - grants the licenses to its Contributions set forth herein, no assurances - are provided by any Contributor that the Program does not infringe the - patent or other intellectual property rights of any other entity. Each - Contributor disclaims any liability to Recipient for claims brought by - any other entity based on infringement of intellectual property rights - or otherwise. As a condition to exercising the rights and licenses - granted hereunder, each Recipient hereby assumes sole responsibility to - secure any other intellectual property rights needed, if any. For - example, if a third party patent license is required to allow Recipient - to distribute the Program, it is Recipient's responsibility to acquire - that license before distributing the Program.

- -

d) Each Contributor represents that to its knowledge it - has sufficient copyright rights in its Contribution, if any, to grant - the copyright license set forth in this Agreement.

- -

3. REQUIREMENTS

- -

A Contributor may choose to distribute the Program in object code - form under its own license agreement, provided that:

- -

a) it complies with the terms and conditions of this - Agreement; and

- -

b) its license agreement:

- -

i) effectively disclaims on behalf of all Contributors - all warranties and conditions, express and implied, including warranties - or conditions of title and non-infringement, and implied warranties or - conditions of merchantability and fitness for a particular purpose;

- -

ii) effectively excludes on behalf of all Contributors - all liability for damages, including direct, indirect, special, - incidental and consequential damages, such as lost profits;

- -

iii) states that any provisions which differ from this - Agreement are offered by that Contributor alone and not by any other - party; and

- -

iv) states that source code for the Program is available - from such Contributor, and informs licensees how to obtain it in a - reasonable manner on or through a medium customarily used for software - exchange.

- -

When the Program is made available in source code form:

- -

a) it must be made available under this Agreement; and

- -

b) a copy of this Agreement must be included with each - copy of the Program.

- -

Contributors may not remove or alter any copyright notices contained - within the Program.

- -

Each Contributor must identify itself as the originator of its - Contribution, if any, in a manner that reasonably allows subsequent - Recipients to identify the originator of the Contribution.

- -

4. COMMERCIAL DISTRIBUTION

- -

Commercial distributors of software may accept certain - responsibilities with respect to end users, business partners and the - like. While this license is intended to facilitate the commercial use of - the Program, the Contributor who includes the Program in a commercial - product offering should do so in a manner which does not create - potential liability for other Contributors. Therefore, if a Contributor - includes the Program in a commercial product offering, such Contributor - ("Commercial Contributor") hereby agrees to defend and - indemnify every other Contributor ("Indemnified Contributor") - against any losses, damages and costs (collectively "Losses") - arising from claims, lawsuits and other legal actions brought by a third - party against the Indemnified Contributor to the extent caused by the - acts or omissions of such Commercial Contributor in connection with its - distribution of the Program in a commercial product offering. The - obligations in this section do not apply to any claims or Losses - relating to any actual or alleged intellectual property infringement. In - order to qualify, an Indemnified Contributor must: a) promptly notify - the Commercial Contributor in writing of such claim, and b) allow the - Commercial Contributor to control, and cooperate with the Commercial - Contributor in, the defense and any related settlement negotiations. The - Indemnified Contributor may participate in any such claim at its own - expense.

- -

For example, a Contributor might include the Program in a commercial - product offering, Product X. That Contributor is then a Commercial - Contributor. If that Commercial Contributor then makes performance - claims, or offers warranties related to Product X, those performance - claims and warranties are such Commercial Contributor's responsibility - alone. Under this section, the Commercial Contributor would have to - defend claims against the other Contributors related to those - performance claims and warranties, and if a court requires any other - Contributor to pay any damages as a result, the Commercial Contributor - must pay those damages.

- -

5. NO WARRANTY

- -

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS - PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS - OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, - ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY - OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely - responsible for determining the appropriateness of using and - distributing the Program and assumes all risks associated with its - exercise of rights under this Agreement , including but not limited to - the risks and costs of program errors, compliance with applicable laws, - damage to or loss of data, programs or equipment, and unavailability or - interruption of operations.

- -

6. DISCLAIMER OF LIABILITY

- -

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT - NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING - WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR - DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED - HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

- -

7. GENERAL

- -

If any provision of this Agreement is invalid or unenforceable under - applicable law, it shall not affect the validity or enforceability of - the remainder of the terms of this Agreement, and without further action - by the parties hereto, such provision shall be reformed to the minimum - extent necessary to make such provision valid and enforceable.

- -

If Recipient institutes patent litigation against any entity - (including a cross-claim or counterclaim in a lawsuit) alleging that the - Program itself (excluding combinations of the Program with other - software or hardware) infringes such Recipient's patent(s), then such - Recipient's rights granted under Section 2(b) shall terminate as of the - date such litigation is filed.

- -

All Recipient's rights under this Agreement shall terminate if it - fails to comply with any of the material terms or conditions of this - Agreement and does not cure such failure in a reasonable period of time - after becoming aware of such noncompliance. If all Recipient's rights - under this Agreement terminate, Recipient agrees to cease use and - distribution of the Program as soon as reasonably practicable. However, - Recipient's obligations under this Agreement and any licenses granted by - Recipient relating to the Program shall continue and survive.

- -

Everyone is permitted to copy and distribute copies of this - Agreement, but in order to avoid inconsistency the Agreement is - copyrighted and may only be modified in the following manner. The - Agreement Steward reserves the right to publish new versions (including - revisions) of this Agreement from time to time. No one other than the - Agreement Steward has the right to modify this Agreement. The Eclipse - Foundation is the initial Agreement Steward. The Eclipse Foundation may - assign the responsibility to serve as the Agreement Steward to a - suitable separate entity. Each new version of the Agreement will be - given a distinguishing version number. The Program (including - Contributions) may always be distributed subject to the version of the - Agreement under which it was received. In addition, after a new version - of the Agreement is published, Contributor may elect to distribute the - Program (including its Contributions) under the new version. Except as - expressly stated in Sections 2(a) and 2(b) above, Recipient receives no - rights or licenses to the intellectual property of any Contributor under - this Agreement, whether expressly, by implication, estoppel or - otherwise. All rights in the Program not expressly granted under this - Agreement are reserved.

- -

This Agreement is governed by the laws of the State of New York and - the intellectual property laws of the United States of America. No party - to this Agreement will bring a legal action under this Agreement more - than one year after the cause of action arose. Each party waives its - rights to a jury trial in any resulting litigation.

- - - - \ No newline at end of file diff --git a/app/src/main/assets/gpl_3.html b/app/src/main/assets/gpl_3.html deleted file mode 100644 index 7e885a640..000000000 --- a/app/src/main/assets/gpl_3.html +++ /dev/null @@ -1,639 +0,0 @@ - - - - - - GNU General Public License v3.0 - GNU Project - Free Software Foundation (FSF) - - - -

GNU GENERAL PUBLIC LICENSE

-

Version 3, 29 June 2007

- -

Copyright © 2007 Free Software Foundation, Inc. - <http://fsf.org/>

- Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed.

- -

Preamble

- -

The GNU General Public License is a free, copyleft license for -software and other kinds of works.

- -

The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too.

- -

When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things.

- -

To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others.

- -

For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights.

- -

Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it.

- -

For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions.

- -

Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users.

- -

Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free.

- -

The precise terms and conditions for copying, distribution and -modification follow.

- -

TERMS AND CONDITIONS

- -

0. Definitions.

- -

“This License” refers to version 3 of the GNU General Public License.

- -

“Copyright” also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks.

- -

“The Program” refers to any copyrightable work licensed under this -License. Each licensee is addressed as “you”. “Licensees” and -“recipients” may be individuals or organizations.

- -

To “modify” a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a “modified version” of the -earlier work or a work “based on” the earlier work.

- -

A “covered work” means either the unmodified Program or a work based -on the Program.

- -

To “propagate” a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well.

- -

To “convey” a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying.

- -

An interactive user interface displays “Appropriate Legal Notices” -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion.

- -

1. Source Code.

- -

The “source code” for a work means the preferred form of the work -for making modifications to it. “Object code” means any non-source -form of a work.

- -

A “Standard Interface” means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language.

- -

The “System Libraries” of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -“Major Component”, in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it.

- -

The “Corresponding Source” for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work.

- -

The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source.

- -

The Corresponding Source for a work in source code form is that -same work.

- -

2. Basic Permissions.

- -

All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law.

- -

You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you.

- -

Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary.

- -

3. Protecting Users' Legal Rights From Anti-Circumvention Law.

- -

No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures.

- -

When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures.

- -

4. Conveying Verbatim Copies.

- -

You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program.

- -

You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee.

- -

5. Conveying Modified Source Versions.

- -

You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions:

- -
    -
  • a) The work must carry prominent notices stating that you modified - it, and giving a relevant date.
  • - -
  • b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - “keep intact all notices”.
  • - -
  • c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it.
  • - -
  • d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so.
  • -
- -

A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -“aggregate” if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate.

- -

6. Conveying Non-Source Forms.

- -

You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways:

- -
    -
  • a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange.
  • - -
  • b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge.
  • - -
  • c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b.
  • - -
  • d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements.
  • - -
  • e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d.
  • -
- -

A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work.

- -

A “User Product” is either (1) a “consumer product”, which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, “normally used” refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product.

- -

“Installation Information” for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made.

- -

If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM).

- -

The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network.

- -

Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying.

- -

7. Additional Terms.

- -

“Additional permissions” are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions.

- -

When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission.

- -

Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms:

- -
    -
  • a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or
  • - -
  • b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or
  • - -
  • c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or
  • - -
  • d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or
  • - -
  • e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or
  • - -
  • f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors.
  • -
- -

All other non-permissive additional terms are considered “further -restrictions” within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying.

- -

If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms.

- -

Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way.

- -

8. Termination.

- -

You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11).

- -

However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation.

- -

Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice.

- -

Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10.

- -

9. Acceptance Not Required for Having Copies.

- -

You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so.

- -

10. Automatic Licensing of Downstream Recipients.

- -

Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License.

- -

An “entity transaction” is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts.

- -

You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it.

- -

11. Patents.

- -

A “contributor” is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's “contributor version”.

- -

A contributor's “essential patent claims” are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, “control” includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License.

- -

Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version.

- -

In the following three paragraphs, a “patent license” is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To “grant” such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party.

- -

If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. “Knowingly relying” means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid.

- -

If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it.

- -

A patent license is “discriminatory” if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007.

- -

Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law.

- -

12. No Surrender of Others' Freedom.

- -

If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program.

- -

13. Use with the GNU Affero General Public License.

- -

Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such.

- -

14. Revised Versions of this License.

- -

The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns.

- -

Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License “or any later version” applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation.

- -

If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program.

- -

Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version.

- -

15. Disclaimer of Warranty.

- -

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

- -

16. Limitation of Liability.

- -

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES.

- -

17. Interpretation of Sections 15 and 16.

- -

If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee.

- - diff --git a/app/src/main/assets/mit.html b/app/src/main/assets/mit.html deleted file mode 100644 index 909d61acb..000000000 --- a/app/src/main/assets/mit.html +++ /dev/null @@ -1,26 +0,0 @@ - - - -

Copyright (c) <year> <copyright holders>

- -

Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions:

- -

-The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software.

-

-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE.
-NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

- - diff --git a/app/src/main/assets/mpl2.html b/app/src/main/assets/mpl2.html deleted file mode 100644 index 5e988a70c..000000000 --- a/app/src/main/assets/mpl2.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - Mozilla Public License, version 2.0 - - -

Mozilla Public License
Version 2.0

-

1. Definitions

-
-
1.1. “Contributor”
-

means each individual or legal entity that creates, contributes to the creation of, or - owns Covered Software.

-
-
1.2. “Contributor Version”
-

means the combination of the Contributions of others (if any) used by a Contributor and - that particular Contributor’s Contribution.

-
-
1.3. “Contribution”
-

means Covered Software of a particular Contributor.

-
-
1.4. “Covered Software”
-

means Source Code Form to which the initial Contributor has attached the notice in - Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source - Code Form, in each case including portions thereof.

-
-
1.5. “Incompatible With Secondary Licenses”
-

means

-
    -
  1. that the initial Contributor has attached the notice described in Exhibit B to - the Covered Software; or

  2. -
  3. that the Covered Software was made available under the terms of version 1.1 or - earlier of the License, but not also under the terms of a Secondary License.

    -
  4. -
-
-
1.6. “Executable Form”
-

means any form of the work other than Source Code Form.

-
-
1.7. “Larger Work”
-

means a work that combines Covered Software with other material, in a separate file or - files, that is not Covered Software.

-
-
1.8. “License”
-

means this document.

-
-
1.9. “Licensable”
-

means having the right to grant, to the maximum extent possible, whether at the time of - the initial grant or subsequently, any and all of the rights conveyed by this License.

-
-
1.10. “Modifications”
-

means any of the following:

-
    -
  1. any file in Source Code Form that results from an addition to, deletion from, or - modification of the contents of Covered Software; or

  2. -
  3. any new file in Source Code Form that contains any Covered Software.

  4. -
-
-
1.11. “Patent Claims” of a Contributor
-

means any patent claim(s), including without limitation, method, process, and apparatus - claims, in any patent Licensable by such Contributor that would be infringed, but for the - grant of the License, by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version.

-
-
1.12. “Secondary License”
-

means either the GNU General Public License, Version 2.0, the GNU Lesser General Public - License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later - versions of those licenses.

-
-
1.13. “Source Code Form”
-

means the form of the work preferred for making modifications.

-
-
1.14. “You” (or “Your”)
-

means an individual or a legal entity exercising rights under this License. For legal - entities, “You” includes any entity that controls, is controlled by, or is under common - control with You. For purposes of this definition, “control” means (a) the power, direct or - indirect, to cause the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or - beneficial ownership of such entity.

-
-
-

2. License Grants and Conditions

-

2.1. Grants

-

Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:

-
    -
  1. under intellectual property rights (other than patent or trademark) Licensable by such - Contributor to use, reproduce, make available, modify, display, perform, distribute, and - otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and

  2. -
  3. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, - import, and otherwise transfer either its Contributions or its Contributor Version.

  4. -
-

2.2. Effective Date

-

The licenses granted in Section 2.1 with respect to any Contribution become effective for - each Contribution on the date the Contributor first distributes such Contribution.

-

2.3. Limitations on Grant Scope

-

The licenses granted in this Section 2 are the only rights granted under this License. No - additional rights or licenses will be implied from the distribution or licensing of Covered - Software under this License. Notwithstanding Section 2.1(b) above, no patent license is - granted by a Contributor:

-
    -
  1. for any code that a Contributor has removed from Covered Software; or

  2. -
  3. for infringements caused by: (i) Your and any other third party’s modifications of - Covered Software, or (ii) the combination of its Contributions with other software (except - as part of its Contributor Version); or

  4. -
  5. under Patent Claims infringed by Covered Software in the absence of its - Contributions.

  6. -
-

This License does not grant any rights in the trademarks, service marks, or logos of any - Contributor (except as may be necessary to comply with the notice requirements in Section 3.4).

-

2.4. Subsequent Licenses

-

No Contributor makes additional grants as a result of Your choice to distribute the Covered - Software under a subsequent version of this License (see Section 10.2) or under the terms - of a Secondary License (if permitted under the terms of Section 3.3).

-

2.5. Representation

-

Each Contributor represents that the Contributor believes its Contributions are its original - creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by - this License.

-

2.6. Fair Use

-

This License is not intended to limit any rights You have under applicable copyright doctrines of - fair use, fair dealing, or other equivalents.

-

2.7. Conditions

-

Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.

-

3. Responsibilities

-

3.1. Distribution of Source Form

-

All distribution of Covered Software in Source Code Form, including any Modifications that You - create or to which You contribute, must be under the terms of this License. You must inform - recipients that the Source Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form.

-

3.2. Distribution of Executable Form

-

If You distribute Covered Software in Executable Form then:

-
    -
  1. such Covered Software must also be made available in Source Code Form, as described in - Section 3.1, and You must inform recipients of the Executable Form how they can obtain - a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and

  2. -
  3. You may distribute such Executable Form under the terms of this License, or sublicense it - under different terms, provided that the license for the Executable Form does not attempt to - limit or alter the recipients’ rights in the Source Code Form under this License.

  4. -
-

3.3. Distribution of a Larger Work

-

You may create and distribute a Larger Work under terms of Your choice, provided that You also - comply with the requirements of this License for the Covered Software. If the Larger Work is a - combination of Covered Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this License permits You to - additionally distribute such Covered Software under the terms of such Secondary License(s), so - that the recipient of the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary License(s).

-

3.4. Notices

-

You may not remove or alter the substance of any license notices (including copyright notices, - patent notices, disclaimers of warranty, or limitations of liability) contained within the - Source Code Form of the Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies.

-

3.5. Application of Additional Terms

-

You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability - obligations to one or more recipients of Covered Software. However, You may do so only on Your - own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by You alone, and You - hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a - result of warranty, support, indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any jurisdiction.

-

4. Inability to Comply Due to Statute or - Regulation

-

If it is impossible for You to comply with any of the terms of this License with respect to some - or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) - comply with the terms of this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a text file included - with all distributions of the Covered Software under this License. Except to the extent - prohibited by statute or regulation, such description must be sufficiently detailed for a - recipient of ordinary skill to be able to understand it.

-

5. Termination

-

5.1. The rights granted under this License will terminate automatically if You fail to comply - with any of its terms. However, if You become compliant, then the rights granted under this - License from a particular Contributor are reinstated (a) provisionally, unless and until such - Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such - Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days - after You have come back into compliance. Moreover, Your grants from a particular Contributor - are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of non-compliance with - this License from such Contributor, and You become compliant prior to 30 days after Your receipt - of the notice.

-

5.2. If You initiate litigation against any entity by asserting a patent infringement claim - (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a - Contributor Version directly or indirectly infringes any patent, then the rights granted to You - by any and all Contributors for the Covered Software under Section 2.1 of this License - shall terminate.

-

5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license - agreements (excluding distributors and resellers) which have been validly granted by You or Your - distributors under this License prior to termination shall survive termination.

-

6. Disclaimer of Warranty

-

Covered Software is provided under this License on an “as is” basis, without warranty of any - kind, either expressed, implied, or statutory, including, without limitation, warranties that - the Covered Software is free of defects, merchantable, fit for a particular purpose or - non-infringing. The entire risk as to the quality and performance of the Covered Software is - with You. Should any Covered Software prove defective in any respect, You (not any Contributor) - assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty - constitutes an essential part of this License. No use of any Covered Software is authorized - under this License except under this disclaimer.

-

7. Limitation of Liability

-

Under no circumstances and under no legal theory, whether tort (including negligence), - contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as - permitted above, be liable to You for any direct, indirect, special, incidental, or - consequential damages of any character including, without limitation, damages for lost profits, - loss of goodwill, work stoppage, computer failure or malfunction, or any and all other - commercial damages or losses, even if such party shall have been informed of the possibility of - such damages. This limitation of liability shall not apply to liability for death or personal - injury resulting from such party’s negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You.

-

8. Litigation

-

Any litigation relating to this License may be brought only in the courts of a jurisdiction where - the defendant maintains its principal place of business and such litigation shall be governed by - laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this - Section shall prevent a party’s ability to bring cross-claims or counter-claims.

-

9. Miscellaneous

-

This License represents the complete agreement concerning the subject matter hereof. If any - provision of this License is held to be unenforceable, such provision shall be reformed only to - the extent necessary to make it enforceable. Any law or regulation which provides that the - language of a contract shall be construed against the drafter shall not be used to construe this - License against a Contributor.

-

10. Versions of the License

-

10.1. New Versions

-

Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other - than the license steward has the right to modify or publish new versions of this License. Each - version will be given a distinguishing version number.

-

10.2. Effect of New Versions

-

You may distribute the Covered Software under the terms of the version of the License under which - You originally received the Covered Software, or under the terms of any subsequent version - published by the license steward.

-

10.3. Modified Versions

-

If you create software not governed by this License, and you want to create a new license for - such software, you may create and use a modified version of this License if you rename the - license and remove any references to the name of the license steward (except to note that such - modified license differs from this License).

-

10.4. - Distributing Source Code Form that is Incompatible With Secondary Licenses

-

If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under - the terms of this version of the License, the notice described in Exhibit B of this License must - be attached.

-

Exhibit A - Source Code Form License - Notice

-
-

This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a - copy of the MPL was not distributed with this file, You can obtain one at - https://mozilla.org/MPL/2.0/.

-
-

If it is not possible or desirable to put the notice in a particular file, then You may include - the notice in a location (such as a LICENSE file in a relevant directory) where a recipient - would be likely to look for such a notice.

-

You may add additional accurate notices of copyright ownership.

-

Exhibit B - “Incompatible With - Secondary Licenses” Notice

-
-

This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla - Public License, v. 2.0.

-
- - - \ No newline at end of file diff --git a/app/src/main/java/org/schabi/newpipe/about/AboutActivity.kt b/app/src/main/java/org/schabi/newpipe/about/AboutActivity.kt deleted file mode 100644 index ed5951f04..000000000 --- a/app/src/main/java/org/schabi/newpipe/about/AboutActivity.kt +++ /dev/null @@ -1,260 +0,0 @@ -package org.schabi.newpipe.about - -import android.os.Bundle -import android.view.LayoutInflater -import android.view.MenuItem -import android.view.View -import android.view.ViewGroup -import android.widget.Button -import androidx.annotation.StringRes -import androidx.appcompat.app.AppCompatActivity -import androidx.fragment.app.Fragment -import androidx.fragment.app.FragmentActivity -import androidx.viewpager2.adapter.FragmentStateAdapter -import com.google.android.material.tabs.TabLayoutMediator -import org.schabi.newpipe.BuildConfig -import org.schabi.newpipe.R -import org.schabi.newpipe.databinding.ActivityAboutBinding -import org.schabi.newpipe.databinding.FragmentAboutBinding -import org.schabi.newpipe.util.ThemeHelper -import org.schabi.newpipe.util.external_communication.ShareUtils - -class AboutActivity : AppCompatActivity() { - - override fun onCreate(savedInstanceState: Bundle?) { - super.onCreate(savedInstanceState) - ThemeHelper.setTheme(this) - title = getString(R.string.title_activity_about) - - val aboutBinding = ActivityAboutBinding.inflate(layoutInflater) - setContentView(aboutBinding.root) - setSupportActionBar(aboutBinding.aboutToolbar) - supportActionBar?.setDisplayHomeAsUpEnabled(true) - - // Create the adapter that will return a fragment for each of the three - // primary sections of the activity. - val mAboutStateAdapter = AboutStateAdapter(this) - // Set up the ViewPager with the sections adapter. - aboutBinding.aboutViewPager2.adapter = mAboutStateAdapter - TabLayoutMediator( - aboutBinding.aboutTabLayout, - aboutBinding.aboutViewPager2 - ) { tab, position -> - tab.setText(mAboutStateAdapter.getPageTitle(position)) - }.attach() - } - - override fun onOptionsItemSelected(item: MenuItem): Boolean { - if (item.itemId == android.R.id.home) { - finish() - return true - } - return super.onOptionsItemSelected(item) - } - - /** - * A placeholder fragment containing a simple view. - */ - class AboutFragment : Fragment() { - private fun Button.openLink(@StringRes url: Int) { - setOnClickListener { - ShareUtils.openUrlInApp(context, requireContext().getString(url)) - } - } - - override fun onCreateView( - inflater: LayoutInflater, - container: ViewGroup?, - savedInstanceState: Bundle? - ): View { - FragmentAboutBinding.inflate(inflater, container, false).apply { - aboutAppVersion.text = BuildConfig.VERSION_NAME - aboutGithubLink.openLink(R.string.github_url) - aboutDonationLink.openLink(R.string.donation_url) - aboutWebsiteLink.openLink(R.string.website_url) - aboutPrivacyPolicyLink.openLink(R.string.privacy_policy_url) - faqLink.openLink(R.string.faq_url) - return root - } - } - } - - /** - * A [FragmentStateAdapter] that returns a fragment corresponding to - * one of the sections/tabs/pages. - */ - private class AboutStateAdapter(fa: FragmentActivity) : FragmentStateAdapter(fa) { - private val posAbout = 0 - private val posLicense = 1 - private val totalCount = 2 - - override fun createFragment(position: Int): Fragment { - return when (position) { - posAbout -> AboutFragment() - posLicense -> LicenseFragment.newInstance(SOFTWARE_COMPONENTS) - else -> error("Unknown position for ViewPager2") - } - } - - override fun getItemCount(): Int { - // Show 2 total pages. - return totalCount - } - - fun getPageTitle(position: Int): Int { - return when (position) { - posAbout -> R.string.tab_about - posLicense -> R.string.tab_licenses - else -> error("Unknown position for ViewPager2") - } - } - } - - companion object { - /** - * List of all software components. - */ - private val SOFTWARE_COMPONENTS = arrayListOf( - SoftwareComponent( - "ACRA", - "2013", - "Kevin Gaudin", - "https://github.com/ACRA/acra", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "AndroidX", - "2005 - 2011", - "The Android Open Source Project", - "https://developer.android.com/jetpack", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "ExoPlayer", - "2014 - 2020", - "Google, Inc.", - "https://github.com/google/ExoPlayer", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "GigaGet", - "2014 - 2015", - "Peter Cai", - "https://github.com/PaperAirplane-Dev-Team/GigaGet", - StandardLicenses.GPL3 - ), - SoftwareComponent( - "Groupie", - "2016", - "Lisa Wray", - "https://github.com/lisawray/groupie", - StandardLicenses.MIT - ), - SoftwareComponent( - "Android-State", - "2018", - "Evernote", - "https://github.com/Evernote/android-state", - StandardLicenses.EPL1 - ), - SoftwareComponent( - "Bridge", - "2021", - "Livefront", - "https://github.com/livefront/bridge", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "Jsoup", - "2009 - 2020", - "Jonathan Hedley", - "https://github.com/jhy/jsoup", - StandardLicenses.MIT - ), - SoftwareComponent( - "Markwon", - "2019", - "Dimitry Ivanov", - "https://github.com/noties/Markwon", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "Material Components for Android", - "2016 - 2020", - "Google, Inc.", - "https://github.com/material-components/material-components-android", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "NewPipe Extractor", - "2017 - 2020", - "Christian Schabesberger", - "https://github.com/TeamNewPipe/NewPipeExtractor", - StandardLicenses.GPL3 - ), - SoftwareComponent( - "NoNonsense-FilePicker", - "2016", - "Jonas Kalderstam", - "https://github.com/spacecowboy/NoNonsense-FilePicker", - StandardLicenses.MPL2 - ), - SoftwareComponent( - "OkHttp", - "2019", - "Square, Inc.", - "https://square.github.io/okhttp/", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "Coil", - "2023", - "Coil Contributors", - "https://coil-kt.github.io/coil/", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "PrettyTime", - "2012 - 2020", - "Lincoln Baxter, III", - "https://github.com/ocpsoft/prettytime", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "ProcessPhoenix", - "2015", - "Jake Wharton", - "https://github.com/JakeWharton/ProcessPhoenix", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "RxAndroid", - "2015", - "The RxAndroid authors", - "https://github.com/ReactiveX/RxAndroid", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "RxBinding", - "2015", - "Jake Wharton", - "https://github.com/JakeWharton/RxBinding", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "RxJava", - "2016 - 2020", - "RxJava Contributors", - "https://github.com/ReactiveX/RxJava", - StandardLicenses.APACHE2 - ), - SoftwareComponent( - "SearchPreference", - "2018", - "ByteHamster", - "https://github.com/ByteHamster/SearchPreference", - StandardLicenses.MIT - ) - ) - } -} diff --git a/app/src/main/java/org/schabi/newpipe/about/License.kt b/app/src/main/java/org/schabi/newpipe/about/License.kt deleted file mode 100644 index fc50c646d..000000000 --- a/app/src/main/java/org/schabi/newpipe/about/License.kt +++ /dev/null @@ -1,11 +0,0 @@ -package org.schabi.newpipe.about - -import android.os.Parcelable -import java.io.Serializable -import kotlinx.parcelize.Parcelize - -/** - * Class for storing information about a software license. - */ -@Parcelize -class License(val name: String, val abbreviation: String, val filename: String) : Parcelable, Serializable diff --git a/app/src/main/java/org/schabi/newpipe/about/LicenseFragment.kt b/app/src/main/java/org/schabi/newpipe/about/LicenseFragment.kt deleted file mode 100644 index bd0632c13..000000000 --- a/app/src/main/java/org/schabi/newpipe/about/LicenseFragment.kt +++ /dev/null @@ -1,142 +0,0 @@ -package org.schabi.newpipe.about - -import android.os.Bundle -import android.util.Base64 -import android.view.LayoutInflater -import android.view.View -import android.view.ViewGroup -import android.webkit.WebView -import androidx.appcompat.app.AlertDialog -import androidx.core.os.BundleCompat -import androidx.core.os.bundleOf -import androidx.fragment.app.Fragment -import io.reactivex.rxjava3.android.schedulers.AndroidSchedulers -import io.reactivex.rxjava3.core.Observable -import io.reactivex.rxjava3.disposables.CompositeDisposable -import io.reactivex.rxjava3.disposables.Disposable -import io.reactivex.rxjava3.schedulers.Schedulers -import org.schabi.newpipe.BuildConfig -import org.schabi.newpipe.R -import org.schabi.newpipe.databinding.FragmentLicensesBinding -import org.schabi.newpipe.databinding.ItemSoftwareComponentBinding -import org.schabi.newpipe.ktx.parcelableArrayList -import org.schabi.newpipe.util.external_communication.ShareUtils - -/** - * Fragment containing the software licenses. - */ -class LicenseFragment : Fragment() { - private lateinit var softwareComponents: List - private var activeSoftwareComponent: SoftwareComponent? = null - private val compositeDisposable = CompositeDisposable() - - override fun onCreate(savedInstanceState: Bundle?) { - super.onCreate(savedInstanceState) - softwareComponents = arguments?.parcelableArrayList(ARG_COMPONENTS)!! - .sortedBy { it.name } // Sort components by name - activeSoftwareComponent = savedInstanceState?.let { - BundleCompat.getSerializable(it, SOFTWARE_COMPONENT_KEY, SoftwareComponent::class.java) - } - } - - override fun onDestroy() { - compositeDisposable.dispose() - super.onDestroy() - } - - override fun onCreateView( - inflater: LayoutInflater, - container: ViewGroup?, - savedInstanceState: Bundle? - ): View { - val binding = FragmentLicensesBinding.inflate(inflater, container, false) - binding.licensesAppReadLicense.setOnClickListener { - compositeDisposable.add( - showLicense(NEWPIPE_SOFTWARE_COMPONENT) - ) - } - for (component in softwareComponents) { - val componentBinding = ItemSoftwareComponentBinding - .inflate(inflater, container, false) - componentBinding.name.text = component.name - componentBinding.copyright.text = getString( - R.string.copyright, - component.years, - component.copyrightOwner, - component.license.abbreviation - ) - val root: View = componentBinding.root - root.tag = component - root.setOnClickListener { - compositeDisposable.add( - showLicense(component) - ) - } - binding.licensesSoftwareComponents.addView(root) - registerForContextMenu(root) - } - activeSoftwareComponent?.let { compositeDisposable.add(showLicense(it)) } - return binding.root - } - - override fun onSaveInstanceState(savedInstanceState: Bundle) { - super.onSaveInstanceState(savedInstanceState) - activeSoftwareComponent?.let { savedInstanceState.putSerializable(SOFTWARE_COMPONENT_KEY, it) } - } - - private fun showLicense( - softwareComponent: SoftwareComponent - ): Disposable { - return if (context == null) { - Disposable.empty() - } else { - val context = requireContext() - activeSoftwareComponent = softwareComponent - Observable.fromCallable { getFormattedLicense(context, softwareComponent.license) } - .subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe { formattedLicense -> - val webViewData = Base64.encodeToString( - formattedLicense.toByteArray(), - Base64.NO_PADDING - ) - val webView = WebView(context) - webView.loadData(webViewData, "text/html; charset=UTF-8", "base64") - - val builder = AlertDialog.Builder(requireContext()) - .setTitle(softwareComponent.name) - .setView(webView) - .setOnCancelListener { activeSoftwareComponent = null } - .setOnDismissListener { activeSoftwareComponent = null } - .setPositiveButton(R.string.done) { dialog, _ -> dialog.dismiss() } - - if (softwareComponent != NEWPIPE_SOFTWARE_COMPONENT) { - builder.setNeutralButton(R.string.open_website_license) { _, _ -> - ShareUtils.openUrlInApp(requireContext(), softwareComponent.link) - } - } - - builder.show() - } - } - } - - companion object { - private const val ARG_COMPONENTS = "components" - private const val SOFTWARE_COMPONENT_KEY = "ACTIVE_SOFTWARE_COMPONENT" - private val NEWPIPE_SOFTWARE_COMPONENT = SoftwareComponent( - "NewPipe", - "2014-2023", - "Team NewPipe", - "https://newpipe.net/", - StandardLicenses.GPL3, - BuildConfig.VERSION_NAME - ) - - fun newInstance(softwareComponents: ArrayList): LicenseFragment { - val fragment = LicenseFragment() - fragment.arguments = bundleOf(ARG_COMPONENTS to softwareComponents) - return fragment - } - } -} diff --git a/app/src/main/java/org/schabi/newpipe/about/LicenseFragmentHelper.kt b/app/src/main/java/org/schabi/newpipe/about/LicenseFragmentHelper.kt deleted file mode 100644 index 32e4f812f..000000000 --- a/app/src/main/java/org/schabi/newpipe/about/LicenseFragmentHelper.kt +++ /dev/null @@ -1,55 +0,0 @@ -package org.schabi.newpipe.about - -import android.content.Context -import java.io.IOException -import org.schabi.newpipe.R -import org.schabi.newpipe.util.ThemeHelper - -/** - * @param context the context to use - * @param license the license - * @return String which contains a HTML formatted license page - * styled according to the context's theme - */ -fun getFormattedLicense(context: Context, license: License): String { - try { - return context.assets.open(license.filename).bufferedReader().use { it.readText() } - // split the HTML file and insert the stylesheet into the HEAD of the file - .replace("", "") - } catch (e: IOException) { - throw IllegalArgumentException("Could not get license file: ${license.filename}", e) - } -} - -/** - * @param context the Android context - * @return String which is a CSS stylesheet according to the context's theme - */ -fun getLicenseStylesheet(context: Context): String { - val isLightTheme = ThemeHelper.isLightThemeSelected(context) - val licenseBackgroundColor = getHexRGBColor( - context, - if (isLightTheme) R.color.light_license_background_color else R.color.dark_license_background_color - ) - val licenseTextColor = getHexRGBColor( - context, - if (isLightTheme) R.color.light_license_text_color else R.color.dark_license_text_color - ) - val youtubePrimaryColor = getHexRGBColor( - context, - if (isLightTheme) R.color.light_youtube_primary_color else R.color.dark_youtube_primary_color - ) - return "body{padding:12px 15px;margin:0;background:#$licenseBackgroundColor;color:#$licenseTextColor}" + - "a[href]{color:#$youtubePrimaryColor}pre{white-space:pre-wrap}" -} - -/** - * Cast R.color to a hexadecimal color value. - * - * @param context the context to use - * @param color the color number from R.color - * @return a six characters long String with hexadecimal RGB values - */ -fun getHexRGBColor(context: Context, color: Int): String { - return context.getString(color).substring(3) -} diff --git a/app/src/main/java/org/schabi/newpipe/about/SoftwareComponent.kt b/app/src/main/java/org/schabi/newpipe/about/SoftwareComponent.kt deleted file mode 100644 index a43ddfd5e..000000000 --- a/app/src/main/java/org/schabi/newpipe/about/SoftwareComponent.kt +++ /dev/null @@ -1,17 +0,0 @@ -package org.schabi.newpipe.about - -import android.os.Parcelable -import java.io.Serializable -import kotlinx.parcelize.Parcelize - -@Parcelize -class SoftwareComponent -@JvmOverloads -constructor( - val name: String, - val years: String, - val copyrightOwner: String, - val link: String, - val license: License, - val version: String? = null -) : Parcelable, Serializable diff --git a/app/src/main/java/org/schabi/newpipe/about/StandardLicenses.kt b/app/src/main/java/org/schabi/newpipe/about/StandardLicenses.kt deleted file mode 100644 index c5b9618fe..000000000 --- a/app/src/main/java/org/schabi/newpipe/about/StandardLicenses.kt +++ /dev/null @@ -1,21 +0,0 @@ -package org.schabi.newpipe.about - -/** - * Class containing information about standard software licenses. - */ -object StandardLicenses { - @JvmField - val GPL3 = License("GNU General Public License, Version 3.0", "GPLv3", "gpl_3.html") - - @JvmField - val APACHE2 = License("Apache License, Version 2.0", "ALv2", "apache2.html") - - @JvmField - val MPL2 = License("Mozilla Public License, Version 2.0", "MPL 2.0", "mpl2.html") - - @JvmField - val MIT = License("MIT License", "MIT", "mit.html") - - @JvmField - val EPL1 = License("Eclipse Public License, Version 1.0", "EPL 1.0", "epl1.html") -} diff --git a/app/src/main/res/layout/activity_about.xml b/app/src/main/res/layout/activity_about.xml deleted file mode 100644 index 661c4affc..000000000 --- a/app/src/main/res/layout/activity_about.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/fragment_about.xml b/app/src/main/res/layout/fragment_about.xml deleted file mode 100644 index 5e6e11d00..000000000 --- a/app/src/main/res/layout/fragment_about.xml +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - - - - - - - - - - -