mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 15:23:00 +00:00 
			
		
		
		
	Merge branch 'gradle-app-id-suffix' of github.com:Stypox/NewPipe into gradle-app-id-suffix
This commit is contained in:
		| @@ -453,15 +453,9 @@ public class MainActivity extends AppCompatActivity { | ||||
|             NavigationHelper.openMainActivity(this); | ||||
|         } | ||||
|  | ||||
|         if (sharedPreferences.getBoolean(Constants.KEY_ENABLE_WATCH_HISTORY, true)) { | ||||
|             if (DEBUG) Log.d(TAG, "do not show History-menu as its disabled in settings"); | ||||
|             drawerItems.getMenu().findItem(ITEM_ID_HISTORY).setVisible(true); | ||||
|         } | ||||
|  | ||||
|         if (!sharedPreferences.getBoolean(Constants.KEY_ENABLE_WATCH_HISTORY, true)) { | ||||
|             if (DEBUG) Log.d(TAG, "show History-menu as its enabled in settings"); | ||||
|             drawerItems.getMenu().findItem(ITEM_ID_HISTORY).setVisible(false); | ||||
|         } | ||||
|         final boolean isHistoryEnabled = sharedPreferences.getBoolean( | ||||
|                 getString(R.string.enable_watch_history_key), true); | ||||
|         drawerItems.getMenu().findItem(ITEM_ID_HISTORY).setVisible(isHistoryEnabled); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|   | ||||
| @@ -88,13 +88,6 @@ public class AboutActivity extends AppCompatActivity { | ||||
|     } | ||||
|  | ||||
|  | ||||
|     @Override | ||||
|     public boolean onCreateOptionsMenu(Menu menu) { | ||||
|         // Inflate the menu; this adds items to the action bar if it is present. | ||||
|         getMenuInflater().inflate(R.menu.menu_about, menu); | ||||
|         return true; | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public boolean onOptionsItemSelected(MenuItem item) { | ||||
|  | ||||
|   | ||||
| @@ -12,6 +12,7 @@ import android.view.MenuItem; | ||||
| import android.view.ViewTreeObserver; | ||||
|  | ||||
| import org.schabi.newpipe.R; | ||||
| import org.schabi.newpipe.util.NavigationHelper; | ||||
| import org.schabi.newpipe.util.ThemeHelper; | ||||
|  | ||||
| import us.shandian.giga.service.DownloadManagerService; | ||||
| @@ -76,11 +77,9 @@ public class DownloadActivity extends AppCompatActivity { | ||||
|     @Override | ||||
|     public boolean onOptionsItemSelected(MenuItem item) { | ||||
|         switch (item.getItemId()) { | ||||
|             case android.R.id.home: { | ||||
|             case android.R.id.home: | ||||
|                 onBackPressed(); | ||||
|                 return true; | ||||
|             } | ||||
|  | ||||
|             default: | ||||
|                 return super.onOptionsItemSelected(item); | ||||
|         } | ||||
|   | ||||
| @@ -600,22 +600,27 @@ public class VideoDetailFragment | ||||
|  | ||||
|     @Override | ||||
|     public boolean onOptionsItemSelected(MenuItem item) { | ||||
|         if (isLoading.get()) { | ||||
|             // if is still loading block menu | ||||
|         int id = item.getItemId(); | ||||
|         if (id == R.id.action_settings) { | ||||
|             NavigationHelper.openSettings(requireContext()); | ||||
|             return true; | ||||
|         } | ||||
|  | ||||
|         if (isLoading.get()) { | ||||
|             // if still loading, block menu buttons related to video info | ||||
|             return true; | ||||
|         } | ||||
|  | ||||
|         int id = item.getItemId(); | ||||
|         switch (id) { | ||||
|             case R.id.menu_item_share: { | ||||
|                 if (currentInfo != null) { | ||||
|                     ShareUtils.shareUrl(this.getContext(), currentInfo.getName(), currentInfo.getOriginalUrl()); | ||||
|                     ShareUtils.shareUrl(requireContext(), currentInfo.getName(), currentInfo.getOriginalUrl()); | ||||
|                 } | ||||
|                 return true; | ||||
|             } | ||||
|             case R.id.menu_item_openInBrowser: { | ||||
|                 if (currentInfo != null) { | ||||
|                     ShareUtils.openUrlInBrowser(this.getContext(), currentInfo.getOriginalUrl()); | ||||
|                     ShareUtils.openUrlInBrowser(requireContext(), currentInfo.getOriginalUrl()); | ||||
|                 } | ||||
|                 return true; | ||||
|             } | ||||
|   | ||||
| @@ -175,17 +175,20 @@ public class ChannelFragment extends BaseListInfoFragment<ChannelInfo> { | ||||
|     @Override | ||||
|     public boolean onOptionsItemSelected(MenuItem item) { | ||||
|         switch (item.getItemId()) { | ||||
|             case R.id.action_settings: | ||||
|                 NavigationHelper.openSettings(requireContext()); | ||||
|                 break; | ||||
|             case R.id.menu_item_rss: | ||||
|                 openRssFeed(); | ||||
|                 break; | ||||
|             case R.id.menu_item_openInBrowser: | ||||
|                 if (currentInfo != null) { | ||||
|                     ShareUtils.openUrlInBrowser(this.getContext(), currentInfo.getOriginalUrl()); | ||||
|                     ShareUtils.openUrlInBrowser(requireContext(), currentInfo.getOriginalUrl()); | ||||
|                 } | ||||
|                 break; | ||||
|             case R.id.menu_item_share: | ||||
|                 if (currentInfo != null) { | ||||
|                     ShareUtils.shareUrl(this.getContext(), name, currentInfo.getOriginalUrl()); | ||||
|                     ShareUtils.shareUrl(requireContext(), name, currentInfo.getOriginalUrl()); | ||||
|                 } | ||||
|                 break; | ||||
|             default: | ||||
|   | ||||
| @@ -222,11 +222,14 @@ public class PlaylistFragment extends BaseListInfoFragment<PlaylistInfo> { | ||||
|     @Override | ||||
|     public boolean onOptionsItemSelected(MenuItem item) { | ||||
|         switch (item.getItemId()) { | ||||
|             case R.id.action_settings: | ||||
|                 NavigationHelper.openSettings(requireContext()); | ||||
|                 break; | ||||
|             case R.id.menu_item_openInBrowser: | ||||
|                 ShareUtils.openUrlInBrowser(this.getContext(), url); | ||||
|                 ShareUtils.openUrlInBrowser(requireContext(), url); | ||||
|                 break; | ||||
|             case R.id.menu_item_share: | ||||
|                 ShareUtils.shareUrl(this.getContext(), name, url); | ||||
|                 ShareUtils.shareUrl(requireContext(), name, url); | ||||
|                 break; | ||||
|             case R.id.menu_item_bookmark: | ||||
|                 onBookmarkClicked(); | ||||
|   | ||||
| @@ -55,7 +55,13 @@ public final class BackgroundPlayerActivity extends ServicePlayerActivity { | ||||
|                 return true; | ||||
|             } | ||||
|  | ||||
|             return switchTo(PopupVideoPlayer.class); | ||||
|             this.player.setRecovery(); | ||||
|             getApplicationContext().sendBroadcast(getPlayerShutdownIntent()); | ||||
|             getApplicationContext().startService( | ||||
|                 getSwitchIntent(PopupVideoPlayer.class) | ||||
|                     .putExtra(BasePlayer.START_PAUSED, !this.player.isPlaying()) | ||||
|             ); | ||||
|             return true; | ||||
|         } | ||||
|         return false; | ||||
|     } | ||||
|   | ||||
| @@ -48,7 +48,13 @@ public final class PopupVideoPlayerActivity extends ServicePlayerActivity { | ||||
|     @Override | ||||
|     public boolean onPlayerOptionSelected(MenuItem item) { | ||||
|         if (item.getItemId() == R.id.action_switch_background) { | ||||
|             return switchTo(BackgroundPlayer.class); | ||||
|             this.player.setRecovery(); | ||||
|             getApplicationContext().sendBroadcast(getPlayerShutdownIntent()); | ||||
|             getApplicationContext().startService( | ||||
|                 getSwitchIntent(BackgroundPlayer.class) | ||||
|                     .putExtra(BasePlayer.START_PAUSED, !this.player.isPlaying()) | ||||
|             ); | ||||
|             return true; | ||||
|         } | ||||
|         return false; | ||||
|     } | ||||
|   | ||||
| @@ -156,6 +156,9 @@ public abstract class ServicePlayerActivity extends AppCompatActivity | ||||
|             case android.R.id.home: | ||||
|                 finish(); | ||||
|                 return true; | ||||
|             case R.id.action_settings: | ||||
|                 NavigationHelper.openSettings(this); | ||||
|                 return true; | ||||
|             case R.id.action_append_playlist: | ||||
|                 appendAllToPlaylist(); | ||||
|                 return true; | ||||
| @@ -163,7 +166,13 @@ public abstract class ServicePlayerActivity extends AppCompatActivity | ||||
|                 startActivity(new Intent(Settings.ACTION_SOUND_SETTINGS)); | ||||
|                 return true; | ||||
|             case R.id.action_switch_main: | ||||
|                 return switchTo(MainVideoPlayer.class); | ||||
|                 this.player.setRecovery(); | ||||
|                 getApplicationContext().sendBroadcast(getPlayerShutdownIntent()); | ||||
|                 getApplicationContext().startActivity( | ||||
|                     getSwitchIntent(MainVideoPlayer.class) | ||||
|                         .putExtra(BasePlayer.START_PAUSED, !this.player.isPlaying()) | ||||
|                 ); | ||||
|                 return true; | ||||
|         } | ||||
|         return onPlayerOptionSelected(item) || super.onOptionsItemSelected(item); | ||||
|     } | ||||
| @@ -187,14 +196,7 @@ public abstract class ServicePlayerActivity extends AppCompatActivity | ||||
|                 false, | ||||
|                 false | ||||
|         ).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK) | ||||
|         .putExtra(BasePlayer.START_PAUSED, !this.player.isPlaying()); | ||||
|     } | ||||
|  | ||||
|     protected boolean switchTo(final Class clazz) { | ||||
|         this.player.setRecovery(); | ||||
|         getApplicationContext().sendBroadcast(getPlayerShutdownIntent()); | ||||
|         getApplicationContext().startActivity(getSwitchIntent(clazz)); | ||||
|         return true; | ||||
|                 .putExtra(BasePlayer.START_PAUSED, !this.player.isPlaying()); | ||||
|     } | ||||
|  | ||||
|     //////////////////////////////////////////////////////////////////////////// | ||||
|   | ||||
| @@ -7,6 +7,8 @@ import androidx.annotation.NonNull; | ||||
| import androidx.annotation.Nullable; | ||||
| import androidx.fragment.app.DialogFragment; | ||||
| import androidx.appcompat.app.AlertDialog; | ||||
|  | ||||
| import android.preference.PreferenceManager; | ||||
| import android.util.Log; | ||||
| import android.view.View; | ||||
| import android.widget.CheckBox; | ||||
| @@ -219,13 +221,23 @@ public class PlaybackParameterDialog extends DialogFragment { | ||||
|     private void setupHookingControl(@NonNull View rootView) { | ||||
|         unhookingCheckbox = rootView.findViewById(R.id.unhookCheckbox); | ||||
|         if (unhookingCheckbox != null) { | ||||
|             unhookingCheckbox.setChecked(pitch != tempo); | ||||
|             // restore whether pitch and tempo are unhooked or not | ||||
|             unhookingCheckbox.setChecked(PreferenceManager.getDefaultSharedPreferences(getContext()) | ||||
|                     .getBoolean(getString(R.string.playback_unhook_key), true)); | ||||
|  | ||||
|             unhookingCheckbox.setOnCheckedChangeListener((compoundButton, isChecked) -> { | ||||
|                 if (isChecked) return; | ||||
|                 // When unchecked, slide back to the minimum of current tempo or pitch | ||||
|                 final double minimum = Math.min(getCurrentPitch(), getCurrentTempo()); | ||||
|                 setSliders(minimum); | ||||
|                 setCurrentPlaybackParameters(); | ||||
|                 // save whether pitch and tempo are unhooked or not | ||||
|                 PreferenceManager.getDefaultSharedPreferences(getContext()) | ||||
|                         .edit() | ||||
|                         .putBoolean(getString(R.string.playback_unhook_key), isChecked) | ||||
|                         .apply(); | ||||
|  | ||||
|                 if (!isChecked) { | ||||
|                     // when unchecked, slide back to the minimum of current tempo or pitch | ||||
|                     final double minimum = Math.min(getCurrentPitch(), getCurrentTempo()); | ||||
|                     setSliders(minimum); | ||||
|                     setCurrentPlaybackParameters(); | ||||
|                 } | ||||
|             }); | ||||
|         } | ||||
|     } | ||||
|   | ||||
| @@ -11,7 +11,5 @@ public class Constants { | ||||
|     public static final String KEY_THEME_CHANGE = "key_theme_change"; | ||||
|     public static final String KEY_MAIN_PAGE_CHANGE = "key_main_page_change"; | ||||
|  | ||||
|     public static final String KEY_ENABLE_WATCH_HISTORY = "enable_watch_history"; | ||||
|  | ||||
|     public static final int NO_SERVICE_ID = -1; | ||||
| } | ||||
|   | ||||
| @@ -26,5 +26,4 @@ | ||||
|         android:icon="?attr/ic_delete" | ||||
|         android:title="@string/clear_download_history" | ||||
|         app:showAsAction="ifRoom" /> | ||||
|  | ||||
| </menu> | ||||
|   | ||||
| @@ -1,6 +0,0 @@ | ||||
| <menu xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     xmlns:app="http://schemas.android.com/apk/res-auto" | ||||
|     xmlns:tools="http://schemas.android.com/tools" | ||||
|     tools:context="org.schabi.newpipe.about.AboutActivity"> | ||||
|  | ||||
| </menu> | ||||
| @@ -4,11 +4,6 @@ | ||||
|     xmlns:tools="http://schemas.android.com/tools" | ||||
|     tools:context=".fragments.list.impl.ChannelFragment"> | ||||
|  | ||||
|     <item | ||||
|         android:id="@+id/menu_item_openInBrowser" | ||||
|         android:title="@string/open_in_browser" | ||||
|         app:showAsAction="never"/> | ||||
|  | ||||
|     <item | ||||
|         android:id="@+id/menu_item_rss" | ||||
|         android:icon="?attr/rss" | ||||
| @@ -22,4 +17,16 @@ | ||||
|         android:icon="?attr/share" | ||||
|         android:title="@string/share" | ||||
|         app:showAsAction="ifRoom"/> | ||||
|  | ||||
|     <item | ||||
|         android:id="@+id/action_settings" | ||||
|         android:orderInCategory="1" | ||||
|         android:title="@string/settings" | ||||
|         app:showAsAction="never"/> | ||||
|  | ||||
|     <item | ||||
|         android:id="@+id/menu_item_openInBrowser" | ||||
|         android:orderInCategory="2" | ||||
|         android:title="@string/open_in_browser" | ||||
|         app:showAsAction="never"/> | ||||
| </menu> | ||||
|   | ||||
| @@ -10,13 +10,18 @@ | ||||
|         android:visible="true" | ||||
|         app:showAsAction="ifRoom"/> | ||||
|  | ||||
|     <item android:id="@+id/action_settings" | ||||
|         android:orderInCategory="1" | ||||
|         android:title="@string/settings" | ||||
|         app:showAsAction="never"/> | ||||
|  | ||||
|     <item android:id="@+id/action_system_audio" | ||||
|         android:orderInCategory="996" | ||||
|         android:orderInCategory="2" | ||||
|         android:title="@string/play_queue_audio_settings" | ||||
|         app:showAsAction="never"/> | ||||
|  | ||||
|     <item android:id="@+id/action_switch_main" | ||||
|         android:orderInCategory="999" | ||||
|         android:orderInCategory="3" | ||||
|         android:title="@string/switch_to_main" | ||||
|         app:showAsAction="never"/> | ||||
| </menu> | ||||
|   | ||||
| @@ -3,11 +3,6 @@ | ||||
|     xmlns:app="http://schemas.android.com/apk/res-auto" | ||||
|     xmlns:tools="http://schemas.android.com/tools"> | ||||
|  | ||||
|     <item | ||||
|         android:id="@+id/menu_item_openInBrowser" | ||||
|         android:title="@string/open_in_browser" | ||||
|         app:showAsAction="never"/> | ||||
|  | ||||
|     <item | ||||
|         android:id="@+id/menu_item_share" | ||||
|         android:icon="?attr/share" | ||||
| @@ -21,4 +16,16 @@ | ||||
|         android:visible="true" | ||||
|         app:showAsAction="ifRoom" | ||||
|         tools:visible="true"/> | ||||
|  | ||||
|     <item | ||||
|         android:id="@+id/action_settings" | ||||
|         android:orderInCategory="1" | ||||
|         android:title="@string/settings" | ||||
|         app:showAsAction="never"/> | ||||
|  | ||||
|     <item | ||||
|         android:id="@+id/menu_item_openInBrowser" | ||||
|         android:orderInCategory="2" | ||||
|         android:title="@string/open_in_browser" | ||||
|         app:showAsAction="never"/> | ||||
| </menu> | ||||
| @@ -14,8 +14,15 @@ | ||||
|         android:title="@string/share" | ||||
|         app:showAsAction="ifRoom"/> | ||||
|  | ||||
|     <item | ||||
|         android:id="@+id/action_settings" | ||||
|         android:orderInCategory="1" | ||||
|         android:title="@string/settings" | ||||
|         app:showAsAction="never"/> | ||||
|  | ||||
|     <item | ||||
|         android:id="@+id/menu_item_openInBrowser" | ||||
|         android:orderInCategory="2" | ||||
|         android:title="@string/open_in_browser" | ||||
|         app:showAsAction="never"/> | ||||
| </menu> | ||||
|   | ||||
| @@ -175,6 +175,7 @@ | ||||
|     <string name="main_page_content_key" translatable="false">main_page_content</string> | ||||
|     <string name="enable_playback_resume_key" translatable="false">enable_playback_resume</string> | ||||
|     <string name="enable_playback_state_lists_key" translatable="false">enable_playback_state_lists</string> | ||||
|     <string name="playback_unhook_key" translatable="false">playback_unhook_key</string> | ||||
|  | ||||
|     <string name="app_language_key" translatable="false">app_language_key</string> | ||||
|     <string name="enable_lock_screen_video_thumbnail_key" translatable="false">enable_lock_screen_video_thumbnail</string> | ||||
|   | ||||
| @@ -491,7 +491,7 @@ | ||||
|     <string name="playback_speed_control">Playback Speed Controls</string> | ||||
|     <string name="playback_tempo">Tempo</string> | ||||
|     <string name="playback_pitch">Pitch</string> | ||||
|     <string name="unhook_checkbox">Unlink (may cause distortion)</string> | ||||
|     <string name="unhook_checkbox">Unhook (may cause distortion)</string> | ||||
|     <string name="skip_silence_checkbox">Fast-forward during silence</string> | ||||
|     <string name="playback_step">Step</string> | ||||
|     <string name="playback_reset">Reset</string> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Stypox
					Stypox