-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Merge dev into refactor #13445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+69
−253
Merged
Merge dev into refactor #13445
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
4effcad
libs: Update checkstyle to latest release and fix violations
theimpulson 2682f23
libs: Update kotlinx.serialization to latest release
theimpulson 7a3d1d9
libs: Bump minSdk to API 23
theimpulson aa094bc
libs: Bump all libs stuck due to minSdk to latest release
theimpulson 5836f3a
Merge pull request #13425 from TeamNewPipe/depUpdate
Stypox c4a6bdd
Remove non-required API M version checks
theimpulson 0533326
Merge pull request #13441 from TeamNewPipe/apiMChanges
theimpulson a719b89
Fix playback not working after player enters idle state
priomsrb 936d5d2
Merge pull request #13390 from priomsrb/fix-playback-after-idle
TobiGr bdebc92
Update extractor
TobiGr ec81b6b
Remove proguard rules for optional jsoup classes
TobiGr c169232
Merge pull request #13444 from TobiGr/extractor
theimpulson bfefd43
Merge branch 'dev' into refactor
theimpulson 49354a3
fixup! Relocate toml lint task to buildSrc and extend against default…
theimpulson c992b85
libs: Update compose-related libraries to latest release
theimpulson 43f40c4
gradle: Build with JDK 21
theimpulson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,8 @@ | ||
| /* | ||
| * SPDX-FileCopyrightText: 2017-2024 NewPipe contributors <https://newpipe.net> | ||
| * 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. | ||
| * <p> | ||
| * Copyright (C) Christian Schabesberger 2017 <[email protected]> | ||
| * KioskFragment.java is part of NewPipe. | ||
| * </p> | ||
| * <p> | ||
| * 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. | ||
| * </p> | ||
| * <p> | ||
| * 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. | ||
| * </p> | ||
| * <p> | ||
| * You should have received a copy of the GNU General Public License | ||
| * along with NewPipe. If not, see <http://www.gnu.org/licenses/>. | ||
| * </p> | ||
| */ | ||
|
|
||
| public class KioskFragment extends BaseListInfoFragment<StreamInfoItem, KioskInfo> { | ||
| @State | ||
| String kioskId = ""; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,8 @@ | ||
| /* | ||
| * SPDX-FileCopyrightText: 2016-2026 NewPipe contributors <https://newpipe.net> | ||
| * 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. | ||
| * <p> | ||
| * Copyright (C) Christian Schabesberger 2016 <[email protected]> | ||
| * InfoListAdapter.java is part of NewPipe. | ||
| * </p> | ||
| * <p> | ||
| * 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. | ||
| * </p> | ||
| * <p> | ||
| * 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. | ||
| * </p> | ||
| * <p> | ||
| * You should have received a copy of the GNU General Public License | ||
| * along with NewPipe. If not, see <http://www.gnu.org/licenses/>. | ||
| * </p> | ||
| */ | ||
|
|
||
| public class PlayQueueAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> { | ||
| private static final String TAG = PlayQueueAdapter.class.toString(); | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,8 @@ | ||
| /* | ||
| * SPDX-FileCopyrightText: 2016-2021 NewPipe contributors <https://newpipe.net> | ||
| * 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. | ||
| * <p> | ||
| * Copyright (C) Christian Schabesberger 2016 <[email protected]> | ||
| * StreamInfoItemHolder.java is part of NewPipe. | ||
| * </p> | ||
| * <p> | ||
| * 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. | ||
| * </p> | ||
| * <p> | ||
| * 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. | ||
| * </p> | ||
| * <p> | ||
| * You should have received a copy of the GNU General Public License | ||
| * along with NewPipe. If not, see <http://www.gnu.org/licenses/>. | ||
| * </p> | ||
| */ | ||
|
|
||
| public class PlayQueueItemHolder extends RecyclerView.ViewHolder { | ||
| public final TextView itemVideoTitleView; | ||
| public final TextView itemDurationView; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.