├── .github ├── CONTRIBUTING.md ├── DISCUSSION_TEMPLATE │ └── questions.yml ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── changed-lines-count-labeler.yml ├── images │ ├── preview01.gif │ └── preview02.gif ├── scripts │ └── brave-new-pipe-releast-actions.sh └── workflows │ ├── build-release-apk.yml │ ├── ci.yml │ ├── image-minimizer.js │ ├── image-minimizer.yml │ ├── no-response.yml │ ├── pr-labeler.yml │ └── release.yml ├── .gitignore ├── .idea └── icon.svg ├── LICENSE ├── README.md ├── app ├── build.gradle ├── proguard-rules.pro ├── replace-newpipe-with-bravenewpipe-strings.gradle ├── sampledata │ └── channels.json ├── schemas │ └── org.schabi.newpipe.database.AppDatabase │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── 6.json │ │ ├── 7.json │ │ ├── 8.json │ │ └── 9.json └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── schabi │ │ └── newpipe │ │ ├── database │ │ ├── DatabaseMigrationTest.kt │ │ └── FeedDAOTest.kt │ │ ├── error │ │ └── ErrorInfoTest.java │ │ ├── local │ │ ├── history │ │ │ └── HistoryRecordManagerTest.kt │ │ ├── playlist │ │ │ └── LocalPlaylistManagerTest.kt │ │ └── subscription │ │ │ └── SubscriptionManagerTest.java │ │ ├── testUtil │ │ ├── TestDatabase.kt │ │ └── TrampolineSchedulerRule.kt │ │ └── util │ │ └── StreamItemAdapterTest.kt │ ├── brave │ ├── java │ │ └── org │ │ │ └── schabi │ │ │ └── newpipe │ │ │ ├── BraveApp.java │ │ │ └── settings │ │ │ └── BraveVideoAudioSettingsBaseFragment.java │ └── res │ │ ├── drawable-anydpi-v24 │ │ ├── ic_newpipe_triangle_white.xml │ │ └── ic_newpipe_update.xml │ │ ├── drawable-hdpi │ │ ├── ic_newpipe_triangle_white.png │ │ └── ic_newpipe_update.png │ │ ├── drawable-mdpi │ │ ├── ic_newpipe_triangle_white.png │ │ └── ic_newpipe_update.png │ │ ├── drawable-nodpi │ │ └── newpipe_logo_nude_shadow.png │ │ ├── drawable-xhdpi │ │ ├── ic_newpipe_triangle_white.png │ │ └── ic_newpipe_update.png │ │ ├── drawable-xxhdpi │ │ ├── ic_newpipe_triangle_white.png │ │ └── ic_newpipe_update.png │ │ ├── drawable │ │ ├── background_oval_white_transparent.xml │ │ ├── brave_copy_icon.xml │ │ ├── brave_link_icon.xml │ │ ├── progress_circular_grey.xml │ │ └── splash_foreground.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── newpipe_tv_banner.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-lv │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-zh │ │ └── strings.xml │ │ ├── values │ │ ├── settings_keys.xml │ │ ├── strings.xml │ │ ├── styles_services.xml │ │ └── styles_transparent.xml │ │ └── xml │ │ └── brave_settings.xml │ ├── braveConscrypt │ └── java │ │ └── org │ │ └── schabi │ │ └── newpipe │ │ ├── BraveApp.java │ │ └── settings │ │ └── BraveVideoAudioSettingsBaseFragment.java │ ├── braveLegacy │ ├── AndroidManifest.xml │ ├── assets │ │ ├── es6-promise.auto.min.js │ │ └── po_token.html │ ├── java │ │ ├── org │ │ │ └── schabi │ │ │ │ └── newpipe │ │ │ │ ├── BraveApp.java │ │ │ │ ├── DownloaderImpl.java │ │ │ │ ├── ExitActivity.java │ │ │ │ ├── PanicResponderActivity.java │ │ │ │ ├── error │ │ │ │ ├── ErrorUtil.kt │ │ │ │ └── ReCaptchaActivity.java │ │ │ │ ├── fragments │ │ │ │ ├── detail │ │ │ │ │ └── VideoDetailFragment.java │ │ │ │ └── list │ │ │ │ │ └── search │ │ │ │ │ ├── SearchFragment.java │ │ │ │ │ └── filter │ │ │ │ │ └── SearchFilterDialogGenerator.java │ │ │ │ ├── local │ │ │ │ └── subscription │ │ │ │ │ └── dialog │ │ │ │ │ └── FeedGroupDialog.kt │ │ │ │ ├── player │ │ │ │ └── ui │ │ │ │ │ └── MainPlayerUi.java │ │ │ │ ├── settings │ │ │ │ ├── BraveVideoAudioSettingsBaseFragment.java │ │ │ │ ├── DownloadSettingsFragment.java │ │ │ │ ├── NewPipeSettings.java │ │ │ │ ├── NotificationSettingsFragment.kt │ │ │ │ ├── PlayerNotificationSettingsFragment.kt │ │ │ │ ├── migration │ │ │ │ │ └── SettingMigrations.java │ │ │ │ └── preferencesearch │ │ │ │ │ └── PreferenceSearchResultHighlighter.java │ │ │ │ ├── streams │ │ │ │ └── io │ │ │ │ │ ├── BraveStoredDirectoryHelper.java │ │ │ │ │ ├── StoredDirectoryHelper.java │ │ │ │ │ └── StoredFileHelper.java │ │ │ │ ├── util │ │ │ │ ├── BraveDeviceUtils.kt │ │ │ │ ├── BraveOkHttpTlsHelper.java │ │ │ │ ├── BraveTLSSocketFactory.java │ │ │ │ ├── BraveTrustManagerFactoryHelper.java │ │ │ │ ├── DeviceUtils.java │ │ │ │ ├── PermissionHelper.java │ │ │ │ └── external_communication │ │ │ │ │ └── ShareUtils.java │ │ │ │ └── views │ │ │ │ ├── CollapsibleView.java │ │ │ │ ├── ExpandableSurfaceView.java │ │ │ │ └── FocusAwareCoordinator.java │ │ └── us │ │ │ └── shandian │ │ │ └── giga │ │ │ ├── get │ │ │ └── DownloadMission.java │ │ │ ├── service │ │ │ └── DownloadManagerService.java │ │ │ └── ui │ │ │ └── adapter │ │ │ └── MissionAdapter.java │ └── res │ │ ├── raw │ │ ├── ca_digicert_global_g2 │ │ └── ca_lets_encrypt_root │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-az │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-ckb │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-eu │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-gl │ │ └── strings.xml │ │ ├── values-he │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-lv │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pa │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sc │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-so │ │ └── strings.xml │ │ ├── values-sq │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rHK │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ └── values │ │ ├── settings_keys.xml │ │ └── strings.xml │ ├── debug │ ├── AndroidManifest.xml │ └── java │ │ └── org │ │ └── schabi │ │ └── newpipe │ │ ├── DebugApp.kt │ │ └── settings │ │ └── DebugSettingsBVDLeakCanary.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── apache2.html │ │ ├── epl1.html │ │ ├── gpl_3.html │ │ ├── mit.html │ │ ├── mpl2.html │ │ └── po_token.html │ ├── java │ │ ├── androidx │ │ │ └── fragment │ │ │ │ └── app │ │ │ │ └── FragmentStatePagerAdapterMenuWorkaround.java │ │ ├── com │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── material │ │ │ │ └── appbar │ │ │ │ └── FlingBehavior.java │ │ ├── org │ │ │ ├── apache │ │ │ │ └── commons │ │ │ │ │ └── text │ │ │ │ │ └── similarity │ │ │ │ │ └── FuzzyScore.java │ │ │ └── schabi │ │ │ │ └── newpipe │ │ │ │ ├── App.java │ │ │ │ ├── BaseFragment.java │ │ │ │ ├── BraveCommonApp.java │ │ │ │ ├── BraveDownloaderImplUtils.java │ │ │ │ ├── BraveExtractorSettings.java │ │ │ │ ├── BraveHostInterceptor.java │ │ │ │ ├── BraveMainActivityHelper.java │ │ │ │ ├── BraveNewVersionWorkerHelper.java │ │ │ │ ├── BraveTag.java │ │ │ │ ├── BraveTimeoutInterceptor.java │ │ │ │ ├── BraveUpgradeActivity.java │ │ │ │ ├── BraveUpgradeInfo.kt │ │ │ │ ├── DownloaderImpl.java │ │ │ │ ├── ExitActivity.java │ │ │ │ ├── LocalPlayerActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── NewPipeDatabase.java │ │ │ │ ├── NewVersionWorker.kt │ │ │ │ ├── PanicResponderActivity.java │ │ │ │ ├── QueueItemMenuUtil.java │ │ │ │ ├── RouterActivity.java │ │ │ │ ├── about │ │ │ │ ├── AboutActivity.kt │ │ │ │ ├── BraveAboutFragment.kt │ │ │ │ ├── License.kt │ │ │ │ ├── LicenseFragment.kt │ │ │ │ ├── LicenseFragmentHelper.kt │ │ │ │ ├── SoftwareComponent.kt │ │ │ │ └── StandardLicenses.kt │ │ │ │ ├── brave │ │ │ │ ├── BraveConstants.java │ │ │ │ ├── bus │ │ │ │ │ ├── BraveBus.java │ │ │ │ │ ├── BraveSharedPrefsListenerToEventsBridge.java │ │ │ │ │ └── events │ │ │ │ │ │ └── BraveEvents.java │ │ │ │ ├── fragments │ │ │ │ │ ├── BraveBackStackFragment.java │ │ │ │ │ ├── BraveEventBusBaseListInfoFragment.java │ │ │ │ │ └── BraveHostFragment.java │ │ │ │ ├── tip │ │ │ │ │ ├── BraveTipActivity.kt │ │ │ │ │ ├── BraveTipComponent.kt │ │ │ │ │ └── BraveTipFragment.kt │ │ │ │ └── views │ │ │ │ │ └── BraveInterceptTouchRelativeLayout.java │ │ │ │ ├── database │ │ │ │ ├── AppDatabase.java │ │ │ │ ├── BasicDAO.java │ │ │ │ ├── Converters.kt │ │ │ │ ├── LocalItem.java │ │ │ │ ├── Migrations.java │ │ │ │ ├── feed │ │ │ │ │ ├── dao │ │ │ │ │ │ ├── FeedDAO.kt │ │ │ │ │ │ └── FeedGroupDAO.kt │ │ │ │ │ └── model │ │ │ │ │ │ ├── FeedEntity.kt │ │ │ │ │ │ ├── FeedGroupEntity.kt │ │ │ │ │ │ ├── FeedGroupSubscriptionEntity.kt │ │ │ │ │ │ └── FeedLastUpdatedEntity.kt │ │ │ │ ├── history │ │ │ │ │ ├── dao │ │ │ │ │ │ ├── HistoryDAO.java │ │ │ │ │ │ ├── SearchHistoryDAO.java │ │ │ │ │ │ └── StreamHistoryDAO.java │ │ │ │ │ └── model │ │ │ │ │ │ ├── SearchHistoryEntry.kt │ │ │ │ │ │ ├── StreamHistoryEntity.java │ │ │ │ │ │ └── StreamHistoryEntry.kt │ │ │ │ ├── playlist │ │ │ │ │ ├── PlaylistDuplicatesEntry.java │ │ │ │ │ ├── PlaylistLocalItem.java │ │ │ │ │ ├── PlaylistMetadataEntry.java │ │ │ │ │ ├── PlaylistStreamEntry.kt │ │ │ │ │ ├── dao │ │ │ │ │ │ ├── PlaylistDAO.java │ │ │ │ │ │ ├── PlaylistRemoteDAO.java │ │ │ │ │ │ └── PlaylistStreamDAO.java │ │ │ │ │ └── model │ │ │ │ │ │ ├── PlaylistEntity.java │ │ │ │ │ │ ├── PlaylistRemoteEntity.java │ │ │ │ │ │ └── PlaylistStreamEntity.java │ │ │ │ ├── stream │ │ │ │ │ ├── StreamStatisticsEntry.kt │ │ │ │ │ ├── StreamWithState.kt │ │ │ │ │ ├── dao │ │ │ │ │ │ ├── StreamDAO.kt │ │ │ │ │ │ └── StreamStateDAO.java │ │ │ │ │ └── model │ │ │ │ │ │ ├── StreamEntity.kt │ │ │ │ │ │ └── StreamStateEntity.java │ │ │ │ └── subscription │ │ │ │ │ ├── NotificationMode.java │ │ │ │ │ ├── SubscriptionDAO.kt │ │ │ │ │ └── SubscriptionEntity.java │ │ │ │ ├── download │ │ │ │ ├── BraveDownloadDialog.java │ │ │ │ ├── DownloadActivity.java │ │ │ │ ├── DownloadDialog.java │ │ │ │ └── LoadingDialog.java │ │ │ │ ├── error │ │ │ │ ├── AcraReportSender.java │ │ │ │ ├── AcraReportSenderFactory.java │ │ │ │ ├── BraveErrorActivityHelper.java │ │ │ │ ├── BraveErrorInfoTracesParceler.kt │ │ │ │ ├── ErrorActivity.java │ │ │ │ ├── ErrorInfo.kt │ │ │ │ ├── ErrorPanelHelper.kt │ │ │ │ ├── ErrorUtil.kt │ │ │ │ ├── ReCaptchaActivity.java │ │ │ │ └── UserAction.java │ │ │ │ ├── fragments │ │ │ │ ├── BackPressable.java │ │ │ │ ├── BaseStateFragment.java │ │ │ │ ├── BlankFragment.java │ │ │ │ ├── EmptyFragment.java │ │ │ │ ├── MainFragment.java │ │ │ │ ├── OnScrollBelowItemsListener.java │ │ │ │ ├── ViewContract.java │ │ │ │ ├── detail │ │ │ │ │ ├── BaseDescriptionFragment.java │ │ │ │ │ ├── BraveDescriptionFragment.java │ │ │ │ │ ├── BraveVideoDetailFragment.java │ │ │ │ │ ├── DescriptionFragment.java │ │ │ │ │ ├── StackItem.java │ │ │ │ │ ├── TabAdapter.java │ │ │ │ │ ├── VideoDetailFragment.java │ │ │ │ │ └── VideoDetailPlayerCrasher.java │ │ │ │ └── list │ │ │ │ │ ├── BaseListFragment.java │ │ │ │ │ ├── BaseListInfoFragment.java │ │ │ │ │ ├── ListViewContract.java │ │ │ │ │ ├── channel │ │ │ │ │ ├── ChannelAboutFragment.java │ │ │ │ │ ├── ChannelFragment.java │ │ │ │ │ └── ChannelTabFragment.java │ │ │ │ │ ├── comments │ │ │ │ │ ├── BraveCommentRepliesFragment.java │ │ │ │ │ ├── CommentRepliesFragment.java │ │ │ │ │ ├── CommentRepliesInfo.java │ │ │ │ │ └── CommentsFragment.java │ │ │ │ │ ├── kiosk │ │ │ │ │ ├── DefaultKioskFragment.java │ │ │ │ │ └── KioskFragment.java │ │ │ │ │ ├── playlist │ │ │ │ │ ├── PlaylistControlViewHolder.java │ │ │ │ │ └── PlaylistFragment.java │ │ │ │ │ ├── search │ │ │ │ │ ├── SearchFragment.java │ │ │ │ │ ├── SearchFragmentLegacy.java │ │ │ │ │ ├── SearchViewModel.kt │ │ │ │ │ ├── SuggestionItem.java │ │ │ │ │ ├── SuggestionListAdapter.java │ │ │ │ │ └── filter │ │ │ │ │ │ ├── BaseCreateSearchFilterUI.java │ │ │ │ │ │ ├── BaseItemWrapper.java │ │ │ │ │ │ ├── BaseSearchFilterDialogFragment.java │ │ │ │ │ │ ├── BaseSearchFilterUiDialogGenerator.java │ │ │ │ │ │ ├── BaseSearchFilterUiGenerator.java │ │ │ │ │ │ ├── BaseUiItemWrapper.java │ │ │ │ │ │ ├── InjectFilterItem.java │ │ │ │ │ │ ├── SearchFilterChipDialogFragment.java │ │ │ │ │ │ ├── SearchFilterChipDialogGenerator.java │ │ │ │ │ │ ├── SearchFilterDialogFragment.java │ │ │ │ │ │ ├── SearchFilterDialogGenerator.java │ │ │ │ │ │ ├── SearchFilterDialogSpinnerAdapter.java │ │ │ │ │ │ ├── SearchFilterLogic.java │ │ │ │ │ │ ├── SearchFilterOptionMenuAlikeDialogFragment.java │ │ │ │ │ │ ├── SearchFilterOptionMenuAlikeDialogGenerator.java │ │ │ │ │ │ ├── SearchFilterUIOptionMenu.java │ │ │ │ │ │ └── UiItemWrapperViews.java │ │ │ │ │ └── videos │ │ │ │ │ ├── RelatedItemsFragment.java │ │ │ │ │ └── RelatedItemsInfo.java │ │ │ │ ├── info_list │ │ │ │ ├── InfoItemBuilder.java │ │ │ │ ├── InfoListAdapter.java │ │ │ │ ├── ItemViewMode.java │ │ │ │ ├── StreamSegmentAdapter.kt │ │ │ │ ├── StreamSegmentItem.kt │ │ │ │ ├── dialog │ │ │ │ │ ├── InfoItemDialog.java │ │ │ │ │ ├── StreamDialogDefaultEntry.java │ │ │ │ │ └── StreamDialogEntry.java │ │ │ │ └── holder │ │ │ │ │ ├── ChannelCardInfoItemHolder.java │ │ │ │ │ ├── ChannelGridInfoItemHolder.java │ │ │ │ │ ├── ChannelInfoItemHolder.java │ │ │ │ │ ├── ChannelMiniInfoItemHolder.java │ │ │ │ │ ├── CommentInfoItemHolder.java │ │ │ │ │ ├── InfoItemHolder.java │ │ │ │ │ ├── PlaylistCardInfoItemHolder.java │ │ │ │ │ ├── PlaylistGridInfoItemHolder.java │ │ │ │ │ ├── PlaylistInfoItemHolder.java │ │ │ │ │ ├── PlaylistMiniInfoItemHolder.java │ │ │ │ │ ├── StreamCardInfoItemHolder.java │ │ │ │ │ ├── StreamGridInfoItemHolder.java │ │ │ │ │ ├── StreamInfoItemHolder.java │ │ │ │ │ └── StreamMiniInfoItemHolder.java │ │ │ │ ├── ktx │ │ │ │ ├── Bundle.kt │ │ │ │ ├── SharedPreferences.kt │ │ │ │ ├── TextView.kt │ │ │ │ ├── Throwable.kt │ │ │ │ └── View.kt │ │ │ │ ├── local │ │ │ │ ├── BaseLocalListFragment.java │ │ │ │ ├── HeaderFooterHolder.java │ │ │ │ ├── LocalItemBuilder.java │ │ │ │ ├── LocalItemListAdapter.java │ │ │ │ ├── bookmark │ │ │ │ │ ├── BookmarkFragment.java │ │ │ │ │ └── MergedPlaylistManager.java │ │ │ │ ├── dialog │ │ │ │ │ ├── PlaylistAppendDialog.java │ │ │ │ │ ├── PlaylistCreationDialog.java │ │ │ │ │ └── PlaylistDialog.java │ │ │ │ ├── feed │ │ │ │ │ ├── FeedDatabaseManager.kt │ │ │ │ │ ├── FeedFragment.kt │ │ │ │ │ ├── FeedState.kt │ │ │ │ │ ├── FeedViewModel.kt │ │ │ │ │ ├── item │ │ │ │ │ │ └── StreamItem.kt │ │ │ │ │ ├── notifications │ │ │ │ │ │ ├── NotificationHelper.kt │ │ │ │ │ │ ├── NotificationWorker.kt │ │ │ │ │ │ └── ScheduleOptions.kt │ │ │ │ │ └── service │ │ │ │ │ │ ├── FeedEventManager.kt │ │ │ │ │ │ ├── FeedLoadManager.kt │ │ │ │ │ │ ├── FeedLoadService.kt │ │ │ │ │ │ ├── FeedLoadState.kt │ │ │ │ │ │ ├── FeedResultsHolder.kt │ │ │ │ │ │ └── FeedUpdateInfo.kt │ │ │ │ ├── history │ │ │ │ │ ├── HistoryEntryAdapter.java │ │ │ │ │ ├── HistoryRecordManager.java │ │ │ │ │ └── StatisticsPlaylistFragment.java │ │ │ │ ├── holder │ │ │ │ │ ├── LocalBookmarkPlaylistItemHolder.java │ │ │ │ │ ├── LocalItemHolder.java │ │ │ │ │ ├── LocalPlaylistCardItemHolder.java │ │ │ │ │ ├── LocalPlaylistGridItemHolder.java │ │ │ │ │ ├── LocalPlaylistItemHolder.java │ │ │ │ │ ├── LocalPlaylistStreamCardItemHolder.java │ │ │ │ │ ├── LocalPlaylistStreamGridItemHolder.java │ │ │ │ │ ├── LocalPlaylistStreamItemHolder.java │ │ │ │ │ ├── LocalStatisticStreamCardItemHolder.java │ │ │ │ │ ├── LocalStatisticStreamGridItemHolder.java │ │ │ │ │ ├── LocalStatisticStreamItemHolder.java │ │ │ │ │ ├── PlaylistItemHolder.java │ │ │ │ │ ├── RemoteBookmarkPlaylistItemHolder.java │ │ │ │ │ ├── RemotePlaylistCardItemHolder.java │ │ │ │ │ ├── RemotePlaylistGridItemHolder.java │ │ │ │ │ └── RemotePlaylistItemHolder.java │ │ │ │ ├── playlist │ │ │ │ │ ├── ExportPlaylist.kt │ │ │ │ │ ├── LocalPlaylistFragment.java │ │ │ │ │ ├── LocalPlaylistManager.java │ │ │ │ │ ├── PlayListShareMode.java │ │ │ │ │ └── RemotePlaylistManager.java │ │ │ │ └── subscription │ │ │ │ │ ├── FeedGroupIcon.kt │ │ │ │ │ ├── ImportConfirmationDialog.java │ │ │ │ │ ├── SubscriptionFragment.kt │ │ │ │ │ ├── SubscriptionManager.kt │ │ │ │ │ ├── SubscriptionViewModel.kt │ │ │ │ │ ├── SubscriptionsImportFragment.java │ │ │ │ │ ├── dialog │ │ │ │ │ ├── FeedGroupDialog.kt │ │ │ │ │ ├── FeedGroupDialogViewModel.kt │ │ │ │ │ ├── FeedGroupReorderDialog.kt │ │ │ │ │ └── FeedGroupReorderDialogViewModel.kt │ │ │ │ │ ├── item │ │ │ │ │ ├── ChannelItem.kt │ │ │ │ │ ├── FeedGroupAddNewGridItem.kt │ │ │ │ │ ├── FeedGroupAddNewItem.kt │ │ │ │ │ ├── FeedGroupCardGridItem.kt │ │ │ │ │ ├── FeedGroupCardItem.kt │ │ │ │ │ ├── FeedGroupCarouselItem.kt │ │ │ │ │ ├── FeedGroupReorderItem.kt │ │ │ │ │ ├── GroupsHeader.kt │ │ │ │ │ ├── Header.kt │ │ │ │ │ ├── ImportSubscriptionsHintPlaceholderItem.kt │ │ │ │ │ ├── PickerIconItem.kt │ │ │ │ │ └── PickerSubscriptionItem.kt │ │ │ │ │ └── services │ │ │ │ │ ├── BaseImportExportService.java │ │ │ │ │ ├── ImportExportEventListener.java │ │ │ │ │ ├── ImportExportJsonHelper.java │ │ │ │ │ ├── SubscriptionsExportService.java │ │ │ │ │ └── SubscriptionsImportService.java │ │ │ │ ├── player │ │ │ │ ├── AudioServiceLeakFix.java │ │ │ │ ├── LocalPlayer.java │ │ │ │ ├── LocalPlayerListener.java │ │ │ │ ├── PlayQueueActivity.java │ │ │ │ ├── Player.java │ │ │ │ ├── PlayerService.java │ │ │ │ ├── PlayerType.java │ │ │ │ ├── datasource │ │ │ │ │ ├── NonUriHlsDataSourceFactory.java │ │ │ │ │ └── YoutubeHttpDataSource.java │ │ │ │ ├── event │ │ │ │ │ ├── OnKeyDownListener.java │ │ │ │ │ ├── PlayerEventListener.java │ │ │ │ │ ├── PlayerServiceEventListener.java │ │ │ │ │ └── PlayerServiceExtendedEventListener.java │ │ │ │ ├── gesture │ │ │ │ │ ├── BasePlayerGestureListener.kt │ │ │ │ │ ├── BraveMainPlayerGestureListenerHelper.kt │ │ │ │ │ ├── CustomBottomSheetBehavior.java │ │ │ │ │ ├── DisplayPortion.kt │ │ │ │ │ ├── DoubleTapListener.kt │ │ │ │ │ ├── MainPlayerGestureListener.kt │ │ │ │ │ └── PopupPlayerGestureListener.kt │ │ │ │ ├── helper │ │ │ │ │ ├── AudioReactor.java │ │ │ │ │ ├── BraveAudioReactor.java │ │ │ │ │ ├── CacheFactory.java │ │ │ │ │ ├── CustomMediaCodecVideoRenderer.java │ │ │ │ │ ├── CustomRenderersFactory.java │ │ │ │ │ ├── LoadController.java │ │ │ │ │ ├── LockManager.java │ │ │ │ │ ├── PlaybackParameterDialog.java │ │ │ │ │ ├── PlayerDataSource.java │ │ │ │ │ ├── PlayerHelper.java │ │ │ │ │ ├── PlayerHolder.java │ │ │ │ │ └── PlayerSemitoneHelper.java │ │ │ │ ├── mediabrowser │ │ │ │ │ ├── MediaBrowserCommon.kt │ │ │ │ │ ├── MediaBrowserImpl.kt │ │ │ │ │ ├── MediaBrowserPlaybackPreparer.kt │ │ │ │ │ └── PackageValidator.kt │ │ │ │ ├── mediaitem │ │ │ │ │ ├── ExceptionTag.java │ │ │ │ │ ├── MediaItemTag.java │ │ │ │ │ ├── PlaceholderTag.java │ │ │ │ │ └── StreamInfoTag.java │ │ │ │ ├── mediasession │ │ │ │ │ ├── MediaSessionPlayerUi.java │ │ │ │ │ ├── PlayQueueNavigator.java │ │ │ │ │ └── SessionConnectorActionProvider.java │ │ │ │ ├── mediasource │ │ │ │ │ ├── FailedMediaSource.java │ │ │ │ │ ├── LoadedMediaSource.java │ │ │ │ │ ├── ManagedMediaSource.java │ │ │ │ │ ├── ManagedMediaSourcePlaylist.java │ │ │ │ │ └── PlaceholderMediaSource.java │ │ │ │ ├── notification │ │ │ │ │ ├── NotificationActionData.java │ │ │ │ │ ├── NotificationConstants.java │ │ │ │ │ ├── NotificationPlayerUi.java │ │ │ │ │ └── NotificationUtil.java │ │ │ │ ├── playback │ │ │ │ │ ├── MediaSourceManager.java │ │ │ │ │ ├── PlaybackListener.java │ │ │ │ │ └── SurfaceHolderCallback.java │ │ │ │ ├── playqueue │ │ │ │ │ ├── AbstractInfoPlayQueue.java │ │ │ │ │ ├── ChannelTabPlayQueue.java │ │ │ │ │ ├── PlayQueue.java │ │ │ │ │ ├── PlayQueueAdapter.java │ │ │ │ │ ├── PlayQueueItem.java │ │ │ │ │ ├── PlayQueueItemBuilder.java │ │ │ │ │ ├── PlayQueueItemHolder.java │ │ │ │ │ ├── PlayQueueItemTouchCallback.java │ │ │ │ │ ├── PlaylistPlayQueue.java │ │ │ │ │ ├── SinglePlayQueue.java │ │ │ │ │ └── events │ │ │ │ │ │ ├── AppendEvent.java │ │ │ │ │ │ ├── ErrorEvent.java │ │ │ │ │ │ ├── InitEvent.java │ │ │ │ │ │ ├── MoveEvent.java │ │ │ │ │ │ ├── PlayQueueEvent.java │ │ │ │ │ │ ├── PlayQueueEventType.java │ │ │ │ │ │ ├── RecoveryEvent.java │ │ │ │ │ │ ├── RemoveEvent.java │ │ │ │ │ │ ├── ReorderEvent.java │ │ │ │ │ │ └── SelectEvent.java │ │ │ │ ├── resolver │ │ │ │ │ ├── AudioPlaybackResolver.java │ │ │ │ │ ├── BraveVideoPlaybackResolver.java │ │ │ │ │ ├── PlaybackResolver.java │ │ │ │ │ ├── Resolver.java │ │ │ │ │ └── VideoPlaybackResolver.java │ │ │ │ ├── seekbarpreview │ │ │ │ │ ├── SeekbarPreviewThumbnailHelper.java │ │ │ │ │ └── SeekbarPreviewThumbnailHolder.java │ │ │ │ └── ui │ │ │ │ │ ├── MainPlayerUi.java │ │ │ │ │ ├── PlayerUi.java │ │ │ │ │ ├── PlayerUiList.java │ │ │ │ │ ├── PopupPlayerUi.java │ │ │ │ │ └── VideoPlayerUi.java │ │ │ │ ├── settings │ │ │ │ ├── AppearanceSettingsFragment.java │ │ │ │ ├── BackupRestoreSettingsFragment.java │ │ │ │ ├── BasePreferenceFragment.java │ │ │ │ ├── BraveBasePreferenceFragment.java │ │ │ │ ├── BraveSettingsFragment.java │ │ │ │ ├── ContentSettingsFragment.java │ │ │ │ ├── DebugSettingsFragment.java │ │ │ │ ├── DownloadSettingsFragment.java │ │ │ │ ├── ExoPlayerSettingsFragment.java │ │ │ │ ├── ExtraSettingsFragment.java │ │ │ │ ├── HistorySettingsFragment.java │ │ │ │ ├── MainSettingsFragment.java │ │ │ │ ├── NewPipeSettings.java │ │ │ │ ├── NotificationSettingsFragment.kt │ │ │ │ ├── NotificationsSettingsFragment.kt │ │ │ │ ├── PeertubeInstanceListFragment.java │ │ │ │ ├── PlayerNotificationSettingsFragment.kt │ │ │ │ ├── SelectChannelFragment.java │ │ │ │ ├── SelectFeedGroupFragment.java │ │ │ │ ├── SelectKioskFragment.java │ │ │ │ ├── SelectPlaylistFragment.java │ │ │ │ ├── SettingsActivity.java │ │ │ │ ├── SettingsResourceRegistry.java │ │ │ │ ├── SponsorBlockCategoriesSettingsFragment.java │ │ │ │ ├── SponsorBlockSettingsFragment.java │ │ │ │ ├── UpdateSettingsFragment.java │ │ │ │ ├── VideoAudioSettingsFragment.java │ │ │ │ ├── custom │ │ │ │ │ ├── DurationListPreference.kt │ │ │ │ │ ├── EditColorPreference.java │ │ │ │ │ ├── NotificationActionsPreference.java │ │ │ │ │ ├── NotificationSlot.java │ │ │ │ │ └── SponsorBlockApiUrlPreference.java │ │ │ │ ├── export │ │ │ │ │ ├── BackupFileLocator.kt │ │ │ │ │ ├── ImportExportManager.kt │ │ │ │ │ └── PreferencesObjectInputStream.java │ │ │ │ ├── migration │ │ │ │ │ ├── MigrationManager.java │ │ │ │ │ └── SettingMigrations.java │ │ │ │ ├── notifications │ │ │ │ │ ├── NotificationModeConfigAdapter.kt │ │ │ │ │ └── NotificationModeConfigFragment.kt │ │ │ │ ├── preferencesearch │ │ │ │ │ ├── PreferenceFuzzySearchFunction.java │ │ │ │ │ ├── PreferenceParser.java │ │ │ │ │ ├── PreferenceSearchAdapter.java │ │ │ │ │ ├── PreferenceSearchConfiguration.java │ │ │ │ │ ├── PreferenceSearchFragment.java │ │ │ │ │ ├── PreferenceSearchItem.java │ │ │ │ │ ├── PreferenceSearchResultHighlighter.java │ │ │ │ │ ├── PreferenceSearchResultListener.java │ │ │ │ │ ├── PreferenceSearcher.java │ │ │ │ │ └── package-info.java │ │ │ │ └── tabs │ │ │ │ │ ├── AddTabDialog.java │ │ │ │ │ ├── ChooseTabsFragment.java │ │ │ │ │ ├── Tab.java │ │ │ │ │ ├── TabsJsonHelper.java │ │ │ │ │ └── TabsManager.java │ │ │ │ ├── streams │ │ │ │ ├── DataReader.java │ │ │ │ ├── Mp4DashReader.java │ │ │ │ ├── Mp4FromDashWriter.java │ │ │ │ ├── OggFromWebMWriter.java │ │ │ │ ├── SrtFromTtmlWriter.java │ │ │ │ ├── WebMReader.java │ │ │ │ ├── WebMWriter.java │ │ │ │ └── io │ │ │ │ │ ├── NoFileManagerSafeGuard.java │ │ │ │ │ ├── SharpInputStream.java │ │ │ │ │ ├── SharpOutputStream.java │ │ │ │ │ ├── SharpStream.java │ │ │ │ │ ├── StoredDirectoryHelper.java │ │ │ │ │ └── StoredFileHelper.java │ │ │ │ ├── util │ │ │ │ ├── AudioTrackAdapter.java │ │ │ │ ├── BraveListHelper.java │ │ │ │ ├── BraveStreamInfoWrapperHelper.java │ │ │ │ ├── BridgeStateSaverInitializer.java │ │ │ │ ├── ChannelTabHelper.java │ │ │ │ ├── Constants.kt │ │ │ │ ├── DependentPreferenceHelper.java │ │ │ │ ├── DeviceUtils.java │ │ │ │ ├── ExtractorHelper.java │ │ │ │ ├── FallbackViewHolder.java │ │ │ │ ├── FilePickerActivityHelper.java │ │ │ │ ├── FilenameUtils.java │ │ │ │ ├── InfoCache.java │ │ │ │ ├── KeyboardUtil.java │ │ │ │ ├── KioskTranslator.java │ │ │ │ ├── ListHelper.java │ │ │ │ ├── Localization.java │ │ │ │ ├── NavigationHelper.java │ │ │ │ ├── NewPipeTextViewHelper.java │ │ │ │ ├── OnClickGesture.java │ │ │ │ ├── PeertubeHelper.java │ │ │ │ ├── PermissionHelper.java │ │ │ │ ├── PlayButtonHelper.java │ │ │ │ ├── ReleaseVersionUtil.kt │ │ │ │ ├── ReturnYouTubeDislikeUtils.java │ │ │ │ ├── SavedState.kt │ │ │ │ ├── SecondaryStreamHelper.java │ │ │ │ ├── SerializedCache.java │ │ │ │ ├── ServiceHelper.java │ │ │ │ ├── SimpleOnSeekBarChangeListener.kt │ │ │ │ ├── SliderStrategy.java │ │ │ │ ├── SparseItemUtil.java │ │ │ │ ├── SponsorBlockMode.java │ │ │ │ ├── SponsorBlockUtils.java │ │ │ │ ├── StateSaver.java │ │ │ │ ├── StreamItemAdapter.java │ │ │ │ ├── StreamTypeUtil.java │ │ │ │ ├── ThemeHelper.java │ │ │ │ ├── Version.java │ │ │ │ ├── VideoSegment.java │ │ │ │ ├── ZipHelper.java │ │ │ │ ├── debounce │ │ │ │ │ ├── DebounceSavable.java │ │ │ │ │ └── DebounceSaver.java │ │ │ │ ├── external_communication │ │ │ │ │ ├── KoreUtils.java │ │ │ │ │ └── ShareUtils.java │ │ │ │ ├── image │ │ │ │ │ ├── ImageStrategy.java │ │ │ │ │ ├── PicassoHelper.java │ │ │ │ │ └── PreferredImageQuality.java │ │ │ │ ├── potoken │ │ │ │ │ ├── JavaScriptUtil.kt │ │ │ │ │ ├── PoTokenException.kt │ │ │ │ │ ├── PoTokenGenerator.kt │ │ │ │ │ ├── PoTokenProviderImpl.kt │ │ │ │ │ └── PoTokenWebView.kt │ │ │ │ ├── text │ │ │ │ │ ├── HashtagLongPressClickableSpan.java │ │ │ │ │ ├── InternalUrlsHandler.java │ │ │ │ │ ├── LongPressClickableSpan.java │ │ │ │ │ ├── LongPressLinkMovementMethod.java │ │ │ │ │ ├── TextEllipsizer.java │ │ │ │ │ ├── TextLinkifier.java │ │ │ │ │ ├── TimestampExtractor.java │ │ │ │ │ ├── TimestampLongPressClickableSpan.java │ │ │ │ │ ├── TouchUtils.java │ │ │ │ │ └── UrlLongPressClickableSpan.java │ │ │ │ └── urlfinder │ │ │ │ │ ├── PatternsCompat.java │ │ │ │ │ └── UrlFinder.kt │ │ │ │ └── views │ │ │ │ ├── AnimatedProgressBar.java │ │ │ │ ├── CollapsibleView.java │ │ │ │ ├── CustomCollapsingToolbarLayout.java │ │ │ │ ├── ExpandableSurfaceView.java │ │ │ │ ├── FocusAwareCoordinator.java │ │ │ │ ├── FocusAwareDrawerLayout.java │ │ │ │ ├── FocusAwareSeekBar.java │ │ │ │ ├── FocusOverlayView.java │ │ │ │ ├── MarkableSeekBar.java │ │ │ │ ├── NewPipeEditText.java │ │ │ │ ├── NewPipeRecyclerView.java │ │ │ │ ├── NewPipeTextView.java │ │ │ │ ├── ScrollableTabLayout.java │ │ │ │ ├── SeekBarMarker.java │ │ │ │ ├── SuperScrollLayoutManager.java │ │ │ │ └── player │ │ │ │ ├── CircleClipTapView.kt │ │ │ │ ├── PlayerFastSeekOverlay.kt │ │ │ │ └── SecondsView.kt │ │ └── us │ │ │ └── shandian │ │ │ └── giga │ │ │ ├── get │ │ │ ├── DownloadInitializer.java │ │ │ ├── DownloadMission.java │ │ │ ├── DownloadMissionRecover.java │ │ │ ├── DownloadRunnable.java │ │ │ ├── DownloadRunnableFallback.java │ │ │ ├── FinishedMission.java │ │ │ ├── Mission.java │ │ │ ├── MissionRecoveryInfo.kt │ │ │ └── sqlite │ │ │ │ └── FinishedMissionStore.java │ │ │ ├── io │ │ │ ├── ChunkFileInputStream.java │ │ │ ├── CircularFileWriter.java │ │ │ ├── FileStream.java │ │ │ ├── FileStreamSAF.java │ │ │ └── ProgressReport.java │ │ │ ├── postprocessing │ │ │ ├── BraveFromHlsRemuxer.java │ │ │ ├── M4aNoDash.java │ │ │ ├── Mp4FromDashMuxer.java │ │ │ ├── OggFromWebmDemuxer.java │ │ │ ├── Postprocessing.java │ │ │ ├── TtmlConverter.java │ │ │ └── WebMMuxer.java │ │ │ ├── preprocessing │ │ │ ├── BraveHlsPreProcessor.java │ │ │ └── BravePreprocessing.java │ │ │ ├── service │ │ │ ├── BraveDownloadManagerService.java │ │ │ ├── DownloadManager.java │ │ │ ├── DownloadManagerService.java │ │ │ └── MissionState.java │ │ │ ├── ui │ │ │ ├── adapter │ │ │ │ └── MissionAdapter.java │ │ │ ├── common │ │ │ │ ├── Deleter.java │ │ │ │ ├── ProgressDrawable.java │ │ │ │ └── ToolbarActivity.java │ │ │ └── fragment │ │ │ │ └── MissionsFragment.java │ │ │ └── util │ │ │ └── Utility.java │ └── res │ │ ├── animator │ │ ├── custom_fade_in.xml │ │ └── custom_fade_out.xml │ │ ├── color │ │ └── mtrl_search_filter_chip_background_color.xml │ │ ├── drawable-hdpi │ │ ├── ic_newpipe_triangle_white.png │ │ └── ic_newpipe_update.png │ │ ├── drawable-mdpi │ │ ├── ic_newpipe_triangle_white.png │ │ ├── ic_newpipe_update.png │ │ └── volunteer_activism_ic.xml │ │ ├── drawable-night-v23 │ │ └── splash_background.xml │ │ ├── drawable-night │ │ ├── ic_heart.xml │ │ ├── ic_sponsor_block_disable.xml │ │ ├── ic_sponsor_block_enable.xml │ │ ├── ic_sponsor_block_exclude.xml │ │ └── splash_background.xml │ │ ├── drawable-nodpi │ │ ├── background_header.png │ │ └── placeholder_channel_banner.png │ │ ├── drawable-v23 │ │ └── splash_background.xml │ │ ├── drawable-xhdpi │ │ ├── ic_newpipe_triangle_white.png │ │ └── ic_newpipe_update.png │ │ ├── drawable-xxhdpi │ │ ├── ic_newpipe_triangle_white.png │ │ └── ic_newpipe_update.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_newpipe_triangle_white.png │ │ └── ic_newpipe_update.png │ │ ├── drawable │ │ ├── background_oval_black_transparent.xml │ │ ├── dashed_border_black.xml │ │ ├── dashed_border_dark.xml │ │ ├── dashed_border_light.xml │ │ ├── drawer_header_bottom_background.xml │ │ ├── ic_add.xml │ │ ├── ic_add_circle_outline.xml │ │ ├── ic_apps.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_arrow_drop_down.xml │ │ ├── ic_arrow_drop_up.xml │ │ ├── ic_art_track.xml │ │ ├── ic_asterisk.xml │ │ ├── ic_attach_money.xml │ │ ├── ic_backup.xml │ │ ├── ic_bookmark.xml │ │ ├── ic_bookmark_white.xml │ │ ├── ic_brave_settings.xml │ │ ├── ic_brightness_high.xml │ │ ├── ic_brightness_low.xml │ │ ├── ic_brightness_medium.xml │ │ ├── ic_bug_report.xml │ │ ├── ic_campaign.xml │ │ ├── ic_cast.xml │ │ ├── ic_checklist.xml │ │ ├── ic_child_care.xml │ │ ├── ic_circle.xml │ │ ├── ic_close.xml │ │ ├── ic_cloud.xml │ │ ├── ic_cloud_download.xml │ │ ├── ic_comment.xml │ │ ├── ic_computer.xml │ │ ├── ic_crop_portrait.xml │ │ ├── ic_delete.xml │ │ ├── ic_description.xml │ │ ├── ic_directions_bike.xml │ │ ├── ic_directions_car.xml │ │ ├── ic_done.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_expand_more.xml │ │ ├── ic_explore.xml │ │ ├── ic_fastfood.xml │ │ ├── ic_favorite.xml │ │ ├── ic_file_download.xml │ │ ├── ic_filter_list.xml │ │ ├── ic_fitness_center.xml │ │ ├── ic_fullscreen.xml │ │ ├── ic_fullscreen_exit.xml │ │ ├── ic_headset.xml │ │ ├── ic_headset_shadow.xml │ │ ├── ic_heart.xml │ │ ├── ic_help.xml │ │ ├── ic_history.xml │ │ ├── ic_history_white.xml │ │ ├── ic_home.xml │ │ ├── ic_hourglass_top.xml │ │ ├── ic_info_outline.xml │ │ ├── ic_insert_emoticon.xml │ │ ├── ic_language.xml │ │ ├── ic_list.xml │ │ ├── ic_live_tv.xml │ │ ├── ic_menu_book.xml │ │ ├── ic_mic.xml │ │ ├── ic_more_vert.xml │ │ ├── ic_motorcycle.xml │ │ ├── ic_movie.xml │ │ ├── ic_music_note.xml │ │ ├── ic_next.xml │ │ ├── ic_notifications.xml │ │ ├── ic_palette.xml │ │ ├── ic_pause.xml │ │ ├── ic_people.xml │ │ ├── ic_person.xml │ │ ├── ic_pets.xml │ │ ├── ic_picture_in_picture.xml │ │ ├── ic_pin.xml │ │ ├── ic_placeholder_bandcamp.xml │ │ ├── ic_placeholder_bitchute.xml │ │ ├── ic_placeholder_media_ccc.xml │ │ ├── ic_placeholder_peertube.xml │ │ ├── ic_placeholder_rumble.xml │ │ ├── ic_play_arrow.xml │ │ ├── ic_play_arrow_shadow.xml │ │ ├── ic_play_seek_triangle.xml │ │ ├── ic_playlist_add.xml │ │ ├── ic_playlist_add_check.xml │ │ ├── ic_playlist_play.xml │ │ ├── ic_podcasts.xml │ │ ├── ic_previous.xml │ │ ├── ic_public.xml │ │ ├── ic_radio.xml │ │ ├── ic_refresh.xml │ │ ├── ic_repeat.xml │ │ ├── ic_replay.xml │ │ ├── ic_restaurant.xml │ │ ├── ic_rss_feed.xml │ │ ├── ic_save.xml │ │ ├── ic_school.xml │ │ ├── ic_search.xml │ │ ├── ic_search_add.xml │ │ ├── ic_select_all.xml │ │ ├── ic_settings.xml │ │ ├── ic_settings_backup_restore.xml │ │ ├── ic_share.xml │ │ ├── ic_shopping_cart.xml │ │ ├── ic_shuffle.xml │ │ ├── ic_smart_display.xml │ │ ├── ic_sort.xml │ │ ├── ic_sponsor_block_disable.xml │ │ ├── ic_sponsor_block_enable.xml │ │ ├── ic_sponsor_block_exclude.xml │ │ ├── ic_stars.xml │ │ ├── ic_subscriptions.xml │ │ ├── ic_subtitles.xml │ │ ├── ic_telescope.xml │ │ ├── ic_thumb_down.xml │ │ ├── ic_thumb_up.xml │ │ ├── ic_trending_up.xml │ │ ├── ic_tv.xml │ │ ├── ic_videogame_asset.xml │ │ ├── ic_visibility_on.xml │ │ ├── ic_volume_down.xml │ │ ├── ic_volume_mute.xml │ │ ├── ic_volume_off.xml │ │ ├── ic_volume_up.xml │ │ ├── ic_watch_later.xml │ │ ├── ic_wb_sunny.xml │ │ ├── ic_whatshot.xml │ │ ├── ic_work.xml │ │ ├── not_available_monkey.xml │ │ ├── placeholder_person.xml │ │ ├── placeholder_thumbnail_playlist.xml │ │ ├── placeholder_thumbnail_video.xml │ │ ├── player_controls_background.xml │ │ ├── player_controls_top_background.xml │ │ ├── progress_circular_white.xml │ │ ├── progress_soundcloud_horizontal_dark.xml │ │ ├── progress_soundcloud_horizontal_light.xml │ │ ├── progress_youtube_horizontal_dark.xml │ │ ├── progress_youtube_horizontal_light.xml │ │ ├── selector_checked_dark.xml │ │ ├── selector_checked_light.xml │ │ ├── selector_dark.xml │ │ ├── selector_focused_dark.xml │ │ ├── selector_focused_light.xml │ │ ├── selector_light.xml │ │ ├── splash_background.xml │ │ ├── splash_foreground.xml │ │ ├── toolbar_shadow_dark.xml │ │ └── toolbar_shadow_light.xml │ │ ├── layout-land │ │ ├── activity_player_queue_control.xml │ │ └── list_stream_card_item.xml │ │ ├── layout-large-land │ │ └── fragment_video_detail.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_brave_tip.xml │ │ ├── activity_downloader.xml │ │ ├── activity_error.xml │ │ ├── activity_local_player.xml │ │ ├── activity_main.xml │ │ ├── activity_player_queue_control.xml │ │ ├── activity_recaptcha.xml │ │ ├── brave_host_fragment.xml │ │ ├── brave_item_tip_component.xml │ │ ├── brave_replies_main_header.xml │ │ ├── chip.xml │ │ ├── chip_search_filter.xml │ │ ├── comment_replies_header.xml │ │ ├── dialog_edit_text.xml │ │ ├── dialog_feed_group_create.xml │ │ ├── dialog_feed_group_reorder.xml │ │ ├── dialog_playback_parameter.xml │ │ ├── dialog_playlists.xml │ │ ├── dialog_sponsor_block_api_url.xml │ │ ├── dialog_sponsor_block_api_url_help.xml │ │ ├── dialog_title.xml │ │ ├── download_dialog.xml │ │ ├── download_loading_dialog.xml │ │ ├── drawer_header.xml │ │ ├── drawer_layout.xml │ │ ├── error_panel.xml │ │ ├── feed_group_add_new_grid_item.xml │ │ ├── feed_group_add_new_item.xml │ │ ├── feed_group_card_grid_item.xml │ │ ├── feed_group_card_item.xml │ │ ├── feed_group_reorder_item.xml │ │ ├── feed_item_carousel.xml │ │ ├── fragment_about.xml │ │ ├── fragment_blank.xml │ │ ├── fragment_bookmarks.xml │ │ ├── fragment_brave_tip.xml │ │ ├── fragment_channel.xml │ │ ├── fragment_channel_tab.xml │ │ ├── fragment_channel_videos.xml │ │ ├── fragment_channels_notifications.xml │ │ ├── fragment_choose_tabs.xml │ │ ├── fragment_comments.xml │ │ ├── fragment_description.xml │ │ ├── fragment_empty.xml │ │ ├── fragment_feed.xml │ │ ├── fragment_import.xml │ │ ├── fragment_instance_list.xml │ │ ├── fragment_kiosk.xml │ │ ├── fragment_licenses.xml │ │ ├── fragment_main.xml │ │ ├── fragment_playlist.xml │ │ ├── fragment_related_items.xml │ │ ├── fragment_search.xml │ │ ├── fragment_subscription.xml │ │ ├── fragment_video_detail.xml │ │ ├── include_brave_about.xml │ │ ├── include_brave_more.xml │ │ ├── include_brave_player_ext.xml │ │ ├── instance_spinner_item.xml │ │ ├── instance_spinner_layout.xml │ │ ├── item_instance.xml │ │ ├── item_metadata.xml │ │ ├── item_metadata_tags.xml │ │ ├── item_notification_config.xml │ │ ├── item_search_suggestion.xml │ │ ├── item_software_component.xml │ │ ├── item_stream_segment.xml │ │ ├── list_channel_card_item.xml │ │ ├── list_channel_grid_item.xml │ │ ├── list_channel_item.xml │ │ ├── list_channel_mini_item.xml │ │ ├── list_choose_tabs.xml │ │ ├── list_choose_tabs_dialog.xml │ │ ├── list_comment_item.xml │ │ ├── list_empty_view.xml │ │ ├── list_empty_view_subscriptions.xml │ │ ├── list_playlist_bookmark_item.xml │ │ ├── list_playlist_card_item.xml │ │ ├── list_playlist_grid_item.xml │ │ ├── list_playlist_item.xml │ │ ├── list_playlist_mini_item.xml │ │ ├── list_radio_icon_item.xml │ │ ├── list_stream_card_item.xml │ │ ├── list_stream_grid_item.xml │ │ ├── list_stream_item.xml │ │ ├── list_stream_mini_item.xml │ │ ├── list_stream_playlist_card_item.xml │ │ ├── list_stream_playlist_grid_item.xml │ │ ├── list_stream_playlist_item.xml │ │ ├── local_playlist_header.xml │ │ ├── main_bg.xml │ │ ├── mission_item.xml │ │ ├── mission_item_linear.xml │ │ ├── missions.xml │ │ ├── missions_header.xml │ │ ├── picker_icon_item.xml │ │ ├── picker_subscription_item.xml │ │ ├── pignate_footer.xml │ │ ├── play_queue_item.xml │ │ ├── player.xml │ │ ├── player_fast_seek_overlay.xml │ │ ├── player_fast_seek_seconds_view.xml │ │ ├── player_popup_close_overlay.xml │ │ ├── playlist_control.xml │ │ ├── playlist_header.xml │ │ ├── preference_edit_color.xml │ │ ├── related_items_header.xml │ │ ├── search_filter_dialog_fragment.xml │ │ ├── search_filter_option_menu_alike_dialog_fragment.xml │ │ ├── select_channel_fragment.xml │ │ ├── select_channel_item.xml │ │ ├── select_feed_group_fragment.xml │ │ ├── select_feed_group_item.xml │ │ ├── select_kiosk_fragment.xml │ │ ├── select_kiosk_item.xml │ │ ├── select_playlist_fragment.xml │ │ ├── settings_category_header_layout.xml │ │ ├── settings_category_header_title.xml │ │ ├── settings_layout.xml │ │ ├── settings_notification.xml │ │ ├── settings_notification_action.xml │ │ ├── settings_preferencesearch_fragment.xml │ │ ├── settings_preferencesearch_list_item_result.xml │ │ ├── single_choice_dialog_view.xml │ │ ├── statistic_playlist_control.xml │ │ ├── stream_quality_item.xml │ │ ├── subscription_groups_header.xml │ │ ├── subscription_header.xml │ │ ├── toolbar_layout.xml │ │ └── toolbar_search_layout.xml │ │ ├── menu │ │ ├── dialog_url.xml │ │ ├── download_menu.xml │ │ ├── drawer_items.xml │ │ ├── error_menu.xml │ │ ├── menu_channel.xml │ │ ├── menu_chooser_fragment.xml │ │ ├── menu_feed_fragment.xml │ │ ├── menu_feed_group_dialog.xml │ │ ├── menu_history.xml │ │ ├── menu_local_playlist.xml │ │ ├── menu_main_fragment.xml │ │ ├── menu_notifications_channels.xml │ │ ├── menu_play_queue.xml │ │ ├── menu_play_queue_bg.xml │ │ ├── menu_play_queue_item.xml │ │ ├── menu_playlist.xml │ │ ├── menu_recaptcha.xml │ │ ├── menu_search_filter_dialog_fragment.xml │ │ ├── menu_search_fragment.xml │ │ ├── menu_settings_main_fragment.xml │ │ └── mission.xml │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── newpipe_tv_banner.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── resources.properties │ │ ├── values-ace │ │ └── strings.xml │ │ ├── values-aeb │ │ └── strings.xml │ │ ├── values-af │ │ └── strings.xml │ │ ├── values-ang │ │ └── strings.xml │ │ ├── values-ar-rLY │ │ └── strings.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-ars │ │ └── strings.xml │ │ ├── values-as │ │ └── strings.xml │ │ ├── values-ay │ │ └── strings.xml │ │ ├── values-ayc │ │ └── strings.xml │ │ ├── values-az │ │ └── strings.xml │ │ ├── values-azb │ │ └── strings.xml │ │ ├── values-b+ast │ │ └── strings.xml │ │ ├── values-b+uz+Latn │ │ └── strings.xml │ │ ├── values-bar │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-ber │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-bm │ │ └── strings.xml │ │ ├── values-bn-rBD │ │ └── strings.xml │ │ ├── values-bn-rIN │ │ └── strings.xml │ │ ├── values-bn │ │ └── strings.xml │ │ ├── values-bqi │ │ └── strings.xml │ │ ├── values-br │ │ └── strings.xml │ │ ├── values-bs │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-ckb │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-cy │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-dum │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-en-rGB │ │ └── strings.xml │ │ ├── values-enm │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-eu │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fil │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-frc │ │ └── strings.xml │ │ ├── values-gl │ │ └── strings.xml │ │ ├── values-gu │ │ └── strings.xml │ │ ├── values-he │ │ └── strings.xml │ │ ├── values-hi │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-hy │ │ └── strings.xml │ │ ├── values-ia │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-is │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-jv │ │ └── strings.xml │ │ ├── values-ka │ │ └── strings.xml │ │ ├── values-kab │ │ └── strings.xml │ │ ├── values-kk │ │ └── strings.xml │ │ ├── values-kmr │ │ └── strings.xml │ │ ├── values-kn │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-ks │ │ └── strings.xml │ │ ├── values-ku │ │ └── strings.xml │ │ ├── values-la │ │ └── strings.xml │ │ ├── values-land │ │ └── dimens.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-lv │ │ └── strings.xml │ │ ├── values-mk │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-mn │ │ └── strings.xml │ │ ├── values-mr │ │ └── strings.xml │ │ ├── values-ms │ │ └── strings.xml │ │ ├── values-my │ │ └── strings.xml │ │ ├── values-nap │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nds │ │ └── strings.xml │ │ ├── values-ne │ │ └── strings.xml │ │ ├── values-night │ │ ├── colors.xml │ │ └── styles.xml │ │ ├── values-nl-rBE │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-nn │ │ └── strings.xml │ │ ├── values-nqo │ │ └── strings.xml │ │ ├── values-oc │ │ └── strings.xml │ │ ├── values-or │ │ └── strings.xml │ │ ├── values-pa-rPK │ │ └── strings.xml │ │ ├── values-pa │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-ryu │ │ └── strings.xml │ │ ├── values-sat │ │ └── strings.xml │ │ ├── values-sc │ │ └── strings.xml │ │ ├── values-scn │ │ └── strings.xml │ │ ├── values-si │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-so │ │ └── strings.xml │ │ ├── values-sq │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-sw │ │ └── strings.xml │ │ ├── values-sw600dp-land │ │ └── dimens.xml │ │ ├── values-sw600dp │ │ └── dimens.xml │ │ ├── values-ta │ │ └── strings.xml │ │ ├── values-te │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-ti │ │ └── strings.xml │ │ ├── values-tl │ │ └── strings.xml │ │ ├── values-tok │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-tt │ │ └── strings.xml │ │ ├── values-tzm │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-und │ │ └── strings.xml │ │ ├── values-ur │ │ └── strings.xml │ │ ├── values-v27 │ │ └── styles.xml │ │ ├── values-v29 │ │ └── styles.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-vmf │ │ └── strings.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rHK │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── bools.xml │ │ ├── brave_searchui_settings_keys.xml │ │ ├── colors.xml │ │ ├── colors_services.xml │ │ ├── dimens.xml │ │ ├── donottranslate.xml │ │ ├── settings_keys.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── styles_misc.xml │ │ └── styles_services.xml │ │ └── xml │ │ ├── appearance_settings.xml │ │ ├── automotive_app_desc.xml │ │ ├── backup_restore_settings.xml │ │ ├── content_settings.xml │ │ ├── debug_settings.xml │ │ ├── download_settings.xml │ │ ├── exoplayer_settings.xml │ │ ├── extra_settings.xml │ │ ├── history_settings.xml │ │ ├── main_settings.xml │ │ ├── notifications_settings.xml │ │ ├── player_notification_settings.xml │ │ ├── sponsor_block_category_settings.xml │ │ ├── sponsor_block_settings.xml │ │ ├── update_settings.xml │ │ └── video_audio_settings.xml │ ├── sponsorblock │ └── res │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-so │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ └── values │ │ └── strings.xml │ └── test │ ├── java │ └── org │ │ └── schabi │ │ └── newpipe │ │ ├── NewVersionManagerTest.kt │ │ ├── database │ │ └── playlist │ │ │ └── PlaylistLocalItemTest.java │ │ ├── error │ │ └── ReCaptchaActivityTest.kt │ │ ├── filter │ │ ├── InjectFilterItemTest.java │ │ └── SearchFilterLogicAndUiGeneratorTest.java │ │ ├── ktx │ │ └── ThrowableExtensionsTest.kt │ │ ├── local │ │ ├── playlist │ │ │ └── ExportPlaylistTest.kt │ │ └── subscription │ │ │ ├── FeedGroupIconTest.kt │ │ │ └── services │ │ │ └── ImportExportJsonHelperTest.java │ │ ├── player │ │ └── playqueue │ │ │ ├── PlayQueueItemTest.java │ │ │ └── PlayQueueTest.java │ │ ├── settings │ │ ├── ImportAllCombinationsTest.kt │ │ ├── ImportExportManagerTest.kt │ │ └── tabs │ │ │ ├── TabTest.java │ │ │ └── TabsJsonHelperTest.java │ │ └── util │ │ ├── ListHelperTest.java │ │ ├── LocalizationTest.kt │ │ ├── QuadraticSliderStrategyTest.java │ │ ├── external_communication │ │ └── TimestampExtractorTest.java │ │ ├── image │ │ └── ImageStrategyTest.java │ │ └── urlfinder │ │ └── UrlFinderTest.kt │ └── resources │ ├── import_export_test.json │ └── settings │ ├── README.md │ ├── db_noser_json.zip │ ├── db_noser_nojson.zip │ ├── db_ser_json.zip │ ├── db_ser_nojson.zip │ ├── db_vulnser_json.zip │ ├── db_vulnser_nojson.zip │ ├── newpipe.db │ ├── nodb_noser_json.zip │ ├── nodb_noser_nojson.zip │ ├── nodb_ser_json.zip │ ├── nodb_ser_nojson.zip │ ├── nodb_vulnser_json.zip │ └── nodb_vulnser_nojson.zip ├── assets ├── BETA_new_pipe_icon_5.svg ├── NP logo v2.svg ├── NewPipe_background_just1.svg ├── android-tv-banner.svg ├── bitcoin_qr_code.png ├── bountysource_qr_code.png ├── budy.svg ├── channel_banner_desktop.svg ├── channel_banner_mobild.svg ├── dummi_thumbnail.svg ├── dummi_thumbnail_backup.svg ├── dummi_thumbnail_playlist.svg ├── dummi_thumbnail_playlist_background.svg ├── dummy_thumbnail.svg ├── dummy_thumbnail_playlist.svg ├── ic_play_circle_transparent.svg ├── ic_play_circle_transparent_80px.svg ├── icon_5.png ├── liberapay_donate_button.svg ├── liberapay_qr_code.png ├── media_gadse.svg ├── new_pipe_icon_4.svg ├── new_pipe_icon_5.png ├── new_pipe_icon_5.svg ├── new_pipe_icon_5_beta2.svg ├── new_play_arrow.svg ├── not_available_monkey.svg ├── pure_logo.svg ├── service.svg └── thumbs_up.png ├── checkstyle ├── checkstyle.xml └── suppressions.xml ├── doc ├── README.ar.md ├── README.asm.md ├── README.de.md ├── README.es.md ├── README.fr.md ├── README.hi.md ├── README.it.md ├── README.ja.md ├── README.ko.md ├── README.pa.md ├── README.pl.md ├── README.pt_BR.md ├── README.ro.md ├── README.ru.md ├── README.ryu.md ├── README.so.md ├── README.sr.md ├── README.tr.md ├── README.zh_TW.md └── gradle.md ├── fastlane └── metadata │ └── android │ ├── ar │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ar_LY │ ├── changelogs │ │ ├── 63.txt │ │ └── 64.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ast │ ├── full_description.txt │ └── short_description.txt │ ├── az │ ├── changelogs │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 991.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── azb │ └── short_description.txt │ ├── bar │ └── short_description.txt │ ├── be │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ └── 992.txt │ ├── full_description.txt │ └── short_description.txt │ ├── bg │ ├── changelogs │ │ ├── 63.txt │ │ └── 64.txt │ ├── full_description.txt │ └── short_description.txt │ ├── bm │ └── short_description.txt │ ├── bn │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 730.txt │ │ ├── 770.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 850.txt │ │ ├── 953.txt │ │ ├── 956.txt │ │ ├── 962.txt │ │ └── 963.txt │ ├── full_description.txt │ └── short_description.txt │ ├── bn_BD │ ├── changelogs │ │ ├── 63.txt │ │ └── 64.txt │ ├── full_description.txt │ └── short_description.txt │ ├── bs │ ├── changelogs │ │ └── 63.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ca │ ├── full_description.txt │ └── short_description.txt │ ├── ckb │ ├── changelogs │ │ └── 960.txt │ └── short_description.txt │ ├── cs │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── cy │ ├── changelogs │ │ └── 63.txt │ ├── full_description.txt │ └── short_description.txt │ ├── da │ ├── changelogs │ │ └── 63.txt │ ├── full_description.txt │ └── short_description.txt │ ├── de │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── el │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 730.txt │ │ ├── 770.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 850.txt │ │ ├── 910.txt │ │ ├── 950.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 996.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── en-US │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 00.png │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ ├── 07.png │ │ │ └── 08.png │ │ └── tenInchScreenshots │ │ │ ├── 09.png │ │ │ └── 10.png │ └── short_description.txt │ ├── en_GB │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ └── 1004.txt │ ├── full_description.txt │ └── short_description.txt │ ├── eo │ ├── changelogs │ │ └── 63.txt │ ├── full_description.txt │ └── short_description.txt │ ├── es │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── et │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 962.txt │ │ ├── 967.txt │ │ ├── 969.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── eu │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 910.txt │ │ ├── 950.txt │ │ ├── 953.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 964.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 992.txt │ │ └── 997.txt │ ├── full_description.txt │ └── short_description.txt │ ├── fa │ ├── changelogs │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 730.txt │ │ ├── 770.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 850.txt │ │ ├── 870.txt │ │ ├── 910.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 985.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── fi │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 830.txt │ │ ├── 957.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ └── 975.txt │ ├── full_description.txt │ └── short_description.txt │ ├── fil │ ├── changelogs │ │ ├── 63.txt │ │ └── 64.txt │ ├── full_description.txt │ └── short_description.txt │ ├── fr │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── gl │ ├── full_description.txt │ └── short_description.txt │ ├── he │ ├── changelogs │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 973.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 988.txt │ │ ├── 995.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── hi │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── hr │ ├── full_description.txt │ └── short_description.txt │ ├── hu │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ia │ └── short_description.txt │ ├── id │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── is │ ├── changelogs │ │ └── 997.txt │ ├── full_description.txt │ └── short_description.txt │ ├── it │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ja │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ └── 960.txt │ ├── full_description.txt │ └── short_description.txt │ ├── jv │ ├── changelogs │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 850.txt │ │ └── 860.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ka │ ├── changelogs │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 66.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── kab │ └── short_description.txt │ ├── kk │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ └── 65.txt │ ├── full_description.txt │ └── short_description.txt │ ├── kn-IN │ ├── changelogs │ │ ├── 830.txt │ │ └── 850.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ko │ ├── changelogs │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ku │ └── short_description.txt │ ├── lt │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 820.txt │ │ └── 830.txt │ ├── full_description.txt │ └── short_description.txt │ ├── lv │ ├── changelogs │ │ ├── 1001.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 730.txt │ │ ├── 770.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 950.txt │ │ ├── 963.txt │ │ ├── 989.txt │ │ ├── 996.txt │ │ └── 998.txt │ ├── full_description.txt │ └── short_description.txt │ ├── mk │ ├── changelogs │ │ ├── 1001.txt │ │ ├── 850.txt │ │ └── 982.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ml │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ └── 968.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ms │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 790.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ └── 954.txt │ ├── full_description.txt │ └── short_description.txt │ ├── nb-NO │ ├── changelogs │ │ ├── 954.txt │ │ ├── 956.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 962.txt │ │ ├── 964.txt │ │ ├── 986.txt │ │ └── 992.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ne │ └── short_description.txt │ ├── nl-BE │ ├── changelogs │ │ ├── 63.txt │ │ ├── 730.txt │ │ ├── 770.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 850.txt │ │ ├── 910.txt │ │ ├── 950.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ └── 957.txt │ ├── full_description.txt │ └── short_description.txt │ ├── nl │ ├── changelogs │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 770.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 950.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 985.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── nqo │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ └── 68.txt │ ├── full_description.txt │ └── short_description.txt │ ├── or │ ├── full_description.txt │ └── short_description.txt │ ├── pa-PK │ └── short_description.txt │ ├── pa │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── pl │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 730.txt │ │ ├── 770.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 950.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ └── 997.txt │ ├── full_description.txt │ └── short_description.txt │ ├── pt-BR │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 978.txt │ │ ├── 982.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 989.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── pt-PT │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── pt │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ro │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 770.txt │ │ └── 953.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ru │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── sc │ ├── changelogs │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 959.txt │ │ └── 960.txt │ ├── full_description.txt │ └── short_description.txt │ ├── si │ ├── full_description.txt │ └── short_description.txt │ ├── sk │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── sl │ ├── changelogs │ │ └── 991.txt │ └── short_description.txt │ ├── so │ ├── full_description.txt │ └── short_description.txt │ ├── sq │ └── short_description.txt │ ├── sr │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 956.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ └── 996.txt │ ├── full_description.txt │ └── short_description.txt │ ├── sv │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ta │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── te │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ └── 65.txt │ ├── full_description.txt │ └── short_description.txt │ ├── ti │ ├── changelogs │ │ └── 850.txt │ ├── full_description.txt │ └── short_description.txt │ ├── tl │ └── short_description.txt │ ├── tok │ ├── full_description.txt │ └── short_description.txt │ ├── tr │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 910.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 982.txt │ │ ├── 985.txt │ │ ├── 987.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── uk │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 1005.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── und │ ├── full_description.txt │ └── short_description.txt │ ├── ur │ ├── changelogs │ │ ├── 63.txt │ │ └── 956.txt │ ├── full_description.txt │ └── short_description.txt │ ├── uz-Latn │ ├── changelogs │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 730.txt │ │ ├── 770.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ └── 957.txt │ ├── full_description.txt │ └── short_description.txt │ ├── vi │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 950.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 994.txt │ │ ├── 995.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── zh-Hans │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 66.txt │ │ ├── 68.txt │ │ ├── 69.txt │ │ ├── 70.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 740.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 963.txt │ │ ├── 964.txt │ │ ├── 965.txt │ │ ├── 966.txt │ │ ├── 967.txt │ │ ├── 968.txt │ │ ├── 969.txt │ │ ├── 970.txt │ │ ├── 971.txt │ │ ├── 972.txt │ │ ├── 973.txt │ │ ├── 974.txt │ │ ├── 975.txt │ │ ├── 976.txt │ │ ├── 977.txt │ │ ├── 978.txt │ │ ├── 979.txt │ │ ├── 980.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 983.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ ├── zh-Hant │ ├── changelogs │ │ ├── 1000.txt │ │ ├── 1001.txt │ │ ├── 1002.txt │ │ ├── 1003.txt │ │ ├── 1004.txt │ │ ├── 63.txt │ │ ├── 64.txt │ │ ├── 65.txt │ │ ├── 71.txt │ │ ├── 730.txt │ │ ├── 750.txt │ │ ├── 760.txt │ │ ├── 770.txt │ │ ├── 780.txt │ │ ├── 790.txt │ │ ├── 800.txt │ │ ├── 810.txt │ │ ├── 820.txt │ │ ├── 830.txt │ │ ├── 840.txt │ │ ├── 850.txt │ │ ├── 860.txt │ │ ├── 870.txt │ │ ├── 900.txt │ │ ├── 910.txt │ │ ├── 920.txt │ │ ├── 930.txt │ │ ├── 940.txt │ │ ├── 950.txt │ │ ├── 951.txt │ │ ├── 952.txt │ │ ├── 953.txt │ │ ├── 954.txt │ │ ├── 955.txt │ │ ├── 956.txt │ │ ├── 957.txt │ │ ├── 958.txt │ │ ├── 959.txt │ │ ├── 960.txt │ │ ├── 961.txt │ │ ├── 962.txt │ │ ├── 964.txt │ │ ├── 981.txt │ │ ├── 982.txt │ │ ├── 984.txt │ │ ├── 985.txt │ │ ├── 986.txt │ │ ├── 987.txt │ │ ├── 988.txt │ │ ├── 989.txt │ │ ├── 990.txt │ │ ├── 991.txt │ │ ├── 992.txt │ │ ├── 993.txt │ │ ├── 996.txt │ │ ├── 997.txt │ │ ├── 998.txt │ │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt │ └── zh_Hant_HK │ ├── changelogs │ ├── 1000.txt │ ├── 1001.txt │ ├── 1002.txt │ ├── 1003.txt │ ├── 1004.txt │ ├── 63.txt │ ├── 981.txt │ ├── 983.txt │ ├── 984.txt │ ├── 985.txt │ ├── 986.txt │ ├── 987.txt │ ├── 988.txt │ ├── 989.txt │ ├── 990.txt │ ├── 991.txt │ ├── 992.txt │ ├── 993.txt │ ├── 994.txt │ ├── 995.txt │ ├── 996.txt │ ├── 997.txt │ ├── 998.txt │ └── 999.txt │ ├── full_description.txt │ └── short_description.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── scripts └── diffs_for_BraveNewPipeLEGACY.sh ├── settings.gradle └── support.md /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/questions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/DISCUSSION_TEMPLATE/questions.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/changed-lines-count-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/changed-lines-count-labeler.yml -------------------------------------------------------------------------------- /.github/images/preview01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/images/preview01.gif -------------------------------------------------------------------------------- /.github/images/preview02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/images/preview02.gif -------------------------------------------------------------------------------- /.github/workflows/build-release-apk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/workflows/build-release-apk.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/image-minimizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/workflows/image-minimizer.js -------------------------------------------------------------------------------- /.github/workflows/image-minimizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/workflows/image-minimizer.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/.idea/icon.svg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/sampledata/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/sampledata/channels.json -------------------------------------------------------------------------------- /app/src/brave/res/drawable/brave_copy_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/drawable/brave_copy_icon.xml -------------------------------------------------------------------------------- /app/src/brave/res/drawable/brave_link_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/drawable/brave_link_icon.xml -------------------------------------------------------------------------------- /app/src/brave/res/drawable/splash_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/drawable/splash_foreground.xml -------------------------------------------------------------------------------- /app/src/brave/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/brave/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/brave/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/brave/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/brave/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/brave/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-bg/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-da/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-et/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-fi/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-hu/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-lt/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-lv/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-sk/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-sl/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values/settings_keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values/settings_keys.xml -------------------------------------------------------------------------------- /app/src/brave/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/brave/res/values/styles_services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values/styles_services.xml -------------------------------------------------------------------------------- /app/src/brave/res/values/styles_transparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/values/styles_transparent.xml -------------------------------------------------------------------------------- /app/src/brave/res/xml/brave_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/brave/res/xml/brave_settings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/assets/po_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/assets/po_token.html -------------------------------------------------------------------------------- /app/src/braveLegacy/res/raw/ca_lets_encrypt_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/raw/ca_lets_encrypt_root -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-az/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-az/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-ckb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-ckb/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-et/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-eu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-eu/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-fa/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-fi/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-gl/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-he/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-he/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-hr/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-hu/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-lt/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-lv/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-ml/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-pa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-pa/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-sc/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-sc/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-sk/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-so/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-so/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-sq/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-sq/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-sr/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values-vi/strings.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values/settings_keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values/settings_keys.xml -------------------------------------------------------------------------------- /app/src/braveLegacy/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/braveLegacy/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/apache2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/assets/apache2.html -------------------------------------------------------------------------------- /app/src/main/assets/epl1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/assets/epl1.html -------------------------------------------------------------------------------- /app/src/main/assets/gpl_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/assets/gpl_3.html -------------------------------------------------------------------------------- /app/src/main/assets/mit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/assets/mit.html -------------------------------------------------------------------------------- /app/src/main/assets/mpl2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/assets/mpl2.html -------------------------------------------------------------------------------- /app/src/main/assets/po_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/assets/po_token.html -------------------------------------------------------------------------------- /app/src/main/java/org/schabi/newpipe/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/java/org/schabi/newpipe/App.java -------------------------------------------------------------------------------- /app/src/main/java/org/schabi/newpipe/ktx/View.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/java/org/schabi/newpipe/ktx/View.kt -------------------------------------------------------------------------------- /app/src/main/res/animator/custom_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/animator/custom_fade_in.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/custom_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/animator/custom_fade_out.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable-night/ic_heart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/dashed_border_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/dashed_border_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_apps.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_drop_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_arrow_drop_down.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_drop_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_arrow_drop_up.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_art_track.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_art_track.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_asterisk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_asterisk.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_attach_money.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_attach_money.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_backup.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bookmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_bookmark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bookmark_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_bookmark_white.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brave_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_brave_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brightness_high.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_brightness_high.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brightness_low.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_brightness_low.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bug_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_bug_report.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_campaign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_campaign.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_cast.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_checklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_checklist.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_child_care.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_child_care.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_cloud.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cloud_download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_cloud_download.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_comment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_comment.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_computer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_computer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_crop_portrait.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_crop_portrait.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_description.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_directions_bike.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_directions_bike.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_directions_car.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_directions_car.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_done.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_done.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_drag_handle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_drag_handle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_expand_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_expand_more.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_explore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_explore.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_fastfood.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_fastfood.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_favorite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_favorite.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_file_download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_file_download.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_filter_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_filter_list.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_fitness_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_fitness_center.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_fullscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_fullscreen.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_fullscreen_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_fullscreen_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_headset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_headset.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_headset_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_headset_shadow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_heart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_history.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_history_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_history_white.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_home.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_hourglass_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_hourglass_top.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_info_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_info_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_insert_emoticon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_insert_emoticon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_language.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_list.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_live_tv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_live_tv.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_menu_book.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_mic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_mic.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_more_vert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_more_vert.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_motorcycle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_motorcycle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_movie.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_music_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_music_note.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_next.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_notifications.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_palette.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_pause.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_people.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_people.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_person.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_person.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_pets.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_pin.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_play_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_play_arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_playlist_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_playlist_add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_playlist_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_playlist_play.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_podcasts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_podcasts.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_previous.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_previous.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_public.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_radio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_radio.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_repeat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_repeat.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_replay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_replay.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_restaurant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_restaurant.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_rss_feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_rss_feed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_save.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_school.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_school.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_search_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_search_add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_select_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_select_all.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_shopping_cart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_shopping_cart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_shuffle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_shuffle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_smart_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_smart_display.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_sort.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_stars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_stars.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_subscriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_subscriptions.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_subtitles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_subtitles.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_telescope.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_telescope.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_thumb_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_thumb_down.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_thumb_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_thumb_up.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_trending_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_trending_up.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_tv.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_videogame_asset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_videogame_asset.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_visibility_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_visibility_on.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_volume_down.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_mute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_volume_mute.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_volume_off.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_volume_up.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_watch_later.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_watch_later.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_wb_sunny.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_wb_sunny.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_whatshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_whatshot.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_work.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/ic_work.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/placeholder_person.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/placeholder_person.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/selector_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/selector_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/splash_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/drawable/splash_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/activity_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_brave_tip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/activity_brave_tip.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_downloader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/activity_downloader.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/activity_error.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_recaptcha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/activity_recaptcha.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/brave_host_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/brave_host_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/chip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/chip.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/chip_search_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/chip_search_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_edit_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/dialog_edit_text.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_playlists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/dialog_playlists.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/dialog_title.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/download_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/download_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/drawer_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/drawer_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/drawer_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/drawer_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/error_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/error_panel.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/feed_group_card_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/feed_group_card_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/feed_item_carousel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/feed_item_carousel.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_blank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_blank.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_bookmarks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_bookmarks.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_brave_tip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_brave_tip.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_channel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_channel.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_channel_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_channel_tab.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_choose_tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_choose_tabs.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_comments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_comments.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_description.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_empty.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_feed.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_import.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_kiosk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_kiosk.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_licenses.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_playlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_playlist.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/fragment_search.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/include_brave_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/include_brave_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/include_brave_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/include_brave_more.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/item_instance.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/item_metadata.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_metadata_tags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/item_metadata_tags.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_stream_segment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/item_stream_segment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_channel_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/list_channel_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_choose_tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/list_choose_tabs.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_comment_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/list_comment_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_empty_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/list_empty_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_playlist_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/list_playlist_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_radio_icon_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/list_radio_icon_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_stream_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/list_stream_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/main_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/main_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/mission_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/mission_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/mission_item_linear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/mission_item_linear.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/missions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/missions.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/missions_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/missions_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/picker_icon_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/picker_icon_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/pignate_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/pignate_footer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/play_queue_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/play_queue_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/player.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/playlist_control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/playlist_control.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/playlist_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/playlist_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/related_items_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/related_items_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/select_channel_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/select_channel_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/select_kiosk_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/select_kiosk_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/settings_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/settings_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/stream_quality_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/stream_quality_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/subscription_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/subscription_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/toolbar_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/layout/toolbar_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/dialog_url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/dialog_url.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/download_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/download_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/drawer_items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/drawer_items.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/error_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/error_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_channel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_channel.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_chooser_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_chooser_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_feed_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_feed_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_feed_group_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_feed_group_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_history.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_local_playlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_local_playlist.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_main_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_play_queue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_play_queue.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_play_queue_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_play_queue_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_play_queue_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_play_queue_item.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_playlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_playlist.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_recaptcha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_recaptcha.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_search_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/menu_search_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/mission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/menu/mission.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/resources.properties: -------------------------------------------------------------------------------- 1 | unqualifiedResLocale=en-US 2 | -------------------------------------------------------------------------------- /app/src/main/res/values-ace/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ace/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-aeb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-aeb/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-af/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ang/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ang/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ar-rLY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ar-rLY/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ars/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ars/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-as/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-as/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ay/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ay/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ayc/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ayc/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-az/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-az/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-azb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-azb/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-b+ast/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-b+ast/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-b+uz+Latn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-b+uz+Latn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-bar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-be/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ber/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ber/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bm/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-bm/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-bn-rBD/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bn-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-bn-rIN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-bn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bqi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-bqi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-br/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-br/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ckb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ckb/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-cy/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-dum/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-dum/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-enm/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-enm/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-eo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-eo/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-eu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-eu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-fa/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fil/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-fil/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-frc/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-frc/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-gl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-gu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-he/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-he/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-hi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-hy/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ia/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ia/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-is/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-is/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iw: -------------------------------------------------------------------------------- 1 | values-he/ -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-jv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-jv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ka/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ka/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-kab/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-kab/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-kk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-kk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-kmr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-kmr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-kn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ks/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ks/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ku/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ku/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-la/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-la/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-land/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-mk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-mk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ml/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-mn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-mn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-mr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ms/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-my/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-my/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nap/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-nap/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nds/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-nds/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ne/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ne/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl-rBE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-nl-rBE/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-nn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nqo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-nqo/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-oc/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-oc/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-or/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-or/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pa-rPK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-pa-rPK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-pa/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ryu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ryu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sat/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-sat/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sc/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-sc/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-scn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-scn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-si/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-so/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-so/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sq/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-sq/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-sw/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sw600dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-sw600dp-land/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-te/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-te/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ti/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ti/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-tl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tok/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-tok/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-tt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tzm/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-tzm/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-und/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-und/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ur/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-ur/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v27/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-v27/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v29/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-v29/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vmf/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-vmf/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/bools.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors_services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/colors_services.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/donottranslate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/donottranslate.xml -------------------------------------------------------------------------------- /app/src/main/res/values/settings_keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/settings_keys.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles_misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/styles_misc.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles_services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/values/styles_services.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/appearance_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/appearance_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/automotive_app_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/automotive_app_desc.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_restore_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/backup_restore_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/content_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/content_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/debug_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/debug_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/download_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/download_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/exoplayer_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/exoplayer_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/extra_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/extra_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/history_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/history_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/main_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/main_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/notifications_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/notifications_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/sponsor_block_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/sponsor_block_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/update_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/update_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/video_audio_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/main/res/xml/video_audio_settings.xml -------------------------------------------------------------------------------- /app/src/sponsorblock/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/sponsorblock/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/sponsorblock/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/sponsorblock/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/sponsorblock/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/sponsorblock/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/sponsorblock/res/values-so/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/sponsorblock/res/values-so/strings.xml -------------------------------------------------------------------------------- /app/src/sponsorblock/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/sponsorblock/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/test/resources/import_export_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/test/resources/import_export_test.json -------------------------------------------------------------------------------- /app/src/test/resources/settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/test/resources/settings/README.md -------------------------------------------------------------------------------- /app/src/test/resources/settings/db_ser_json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/test/resources/settings/db_ser_json.zip -------------------------------------------------------------------------------- /app/src/test/resources/settings/newpipe.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/app/src/test/resources/settings/newpipe.db -------------------------------------------------------------------------------- /assets/BETA_new_pipe_icon_5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/BETA_new_pipe_icon_5.svg -------------------------------------------------------------------------------- /assets/NP logo v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/NP logo v2.svg -------------------------------------------------------------------------------- /assets/NewPipe_background_just1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/NewPipe_background_just1.svg -------------------------------------------------------------------------------- /assets/android-tv-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/android-tv-banner.svg -------------------------------------------------------------------------------- /assets/bitcoin_qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/bitcoin_qr_code.png -------------------------------------------------------------------------------- /assets/bountysource_qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/bountysource_qr_code.png -------------------------------------------------------------------------------- /assets/budy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/budy.svg -------------------------------------------------------------------------------- /assets/channel_banner_desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/channel_banner_desktop.svg -------------------------------------------------------------------------------- /assets/channel_banner_mobild.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/channel_banner_mobild.svg -------------------------------------------------------------------------------- /assets/dummi_thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/dummi_thumbnail.svg -------------------------------------------------------------------------------- /assets/dummi_thumbnail_backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/dummi_thumbnail_backup.svg -------------------------------------------------------------------------------- /assets/dummi_thumbnail_playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/dummi_thumbnail_playlist.svg -------------------------------------------------------------------------------- /assets/dummi_thumbnail_playlist_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/dummi_thumbnail_playlist_background.svg -------------------------------------------------------------------------------- /assets/dummy_thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/dummy_thumbnail.svg -------------------------------------------------------------------------------- /assets/dummy_thumbnail_playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/dummy_thumbnail_playlist.svg -------------------------------------------------------------------------------- /assets/ic_play_circle_transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/ic_play_circle_transparent.svg -------------------------------------------------------------------------------- /assets/ic_play_circle_transparent_80px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/ic_play_circle_transparent_80px.svg -------------------------------------------------------------------------------- /assets/icon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/icon_5.png -------------------------------------------------------------------------------- /assets/liberapay_donate_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/liberapay_donate_button.svg -------------------------------------------------------------------------------- /assets/liberapay_qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/liberapay_qr_code.png -------------------------------------------------------------------------------- /assets/media_gadse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/media_gadse.svg -------------------------------------------------------------------------------- /assets/new_pipe_icon_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/new_pipe_icon_4.svg -------------------------------------------------------------------------------- /assets/new_pipe_icon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/new_pipe_icon_5.png -------------------------------------------------------------------------------- /assets/new_pipe_icon_5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/new_pipe_icon_5.svg -------------------------------------------------------------------------------- /assets/new_pipe_icon_5_beta2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/new_pipe_icon_5_beta2.svg -------------------------------------------------------------------------------- /assets/new_play_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/new_play_arrow.svg -------------------------------------------------------------------------------- /assets/not_available_monkey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/not_available_monkey.svg -------------------------------------------------------------------------------- /assets/pure_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/pure_logo.svg -------------------------------------------------------------------------------- /assets/service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/service.svg -------------------------------------------------------------------------------- /assets/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/assets/thumbs_up.png -------------------------------------------------------------------------------- /checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /checkstyle/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/checkstyle/suppressions.xml -------------------------------------------------------------------------------- /doc/README.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.ar.md -------------------------------------------------------------------------------- /doc/README.asm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.asm.md -------------------------------------------------------------------------------- /doc/README.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.de.md -------------------------------------------------------------------------------- /doc/README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.es.md -------------------------------------------------------------------------------- /doc/README.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.fr.md -------------------------------------------------------------------------------- /doc/README.hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.hi.md -------------------------------------------------------------------------------- /doc/README.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.it.md -------------------------------------------------------------------------------- /doc/README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.ja.md -------------------------------------------------------------------------------- /doc/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.ko.md -------------------------------------------------------------------------------- /doc/README.pa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.pa.md -------------------------------------------------------------------------------- /doc/README.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.pl.md -------------------------------------------------------------------------------- /doc/README.pt_BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.pt_BR.md -------------------------------------------------------------------------------- /doc/README.ro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.ro.md -------------------------------------------------------------------------------- /doc/README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.ru.md -------------------------------------------------------------------------------- /doc/README.ryu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.ryu.md -------------------------------------------------------------------------------- /doc/README.so.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.so.md -------------------------------------------------------------------------------- /doc/README.sr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.sr.md -------------------------------------------------------------------------------- /doc/README.tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.tr.md -------------------------------------------------------------------------------- /doc/README.zh_TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/README.zh_TW.md -------------------------------------------------------------------------------- /doc/gradle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/doc/gradle.md -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/1000.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/1001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/1001.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/1002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/1002.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/1003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/1003.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/1004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/1004.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/1005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/1005.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/63.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/64.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/65.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/66.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/66.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/68.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/69.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/69.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/70.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/70.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/71.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/71.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/730.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/730.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/740.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/740.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/750.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/750.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/760.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/760.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/770.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/770.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/780.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/780.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/790.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/790.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/800.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/800.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/810.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/810.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/820.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/820.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/830.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/830.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/840.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/840.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/850.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/850.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/860.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/860.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/870.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/870.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/900.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/900.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/910.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/910.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/920.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/920.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/930.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/930.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/940.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/940.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/950.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/951.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/952.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/953.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/953.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/954.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/954.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/955.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/955.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/956.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/956.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/957.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/957.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/958.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/958.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/959.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/959.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/960.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/960.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/changelogs/961.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/fastlane/metadata/android/ar/changelogs/961.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/az/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | YouTube-un heç bir yayım oynatmaması düzəldildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/az/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | YouTube-un heç bir yayım oynatmaması düzəldildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/az/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | YouTube-un heç bir yayım oynatmaması düzəldildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/az/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Sabit kanalın davamı 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/az/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | YouTube-un heç bir yayım oynatmaması düzəldildi. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/az/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | YouTube-un heç bir yayım oynatmaması düzəldildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/az/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | YouTube-un heç bir yayım oynatmaması düzəldildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/az/changelogs/999.txt: -------------------------------------------------------------------------------- 1 | YouTube-un heç bir yayım oynatmaması düzəldildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/az/short_description.txt: -------------------------------------------------------------------------------- 1 | Android üçün pulsuz və yüngül YouTube müştərisi. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/bar/short_description.txt: -------------------------------------------------------------------------------- 1 | A fraie, schmoiche YouTube-Abb füa Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/changelogs/730.txt: -------------------------------------------------------------------------------- 1 | # Fixed 2 | - Znovu opravte chybu funkce dešifrování. 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/changelogs/820.txt: -------------------------------------------------------------------------------- 1 | Opraven regex názvu dešifrovací funkce, který znemožňuje použití služby YouTube. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/changelogs/953.txt: -------------------------------------------------------------------------------- 1 | Oprava extrakce dešifrovací funkce YouTube. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | - [YouTube] Opraveno pokračování kanálu 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Opraveno nepřehrávání jakéhokoli streamu ve službě YouTube. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Opraveno nepřehrávání jakéhokoli streamu ve službě YouTube 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/short_description.txt: -------------------------------------------------------------------------------- 1 | Svobodný a nenáročný YouTube frontend pro Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/da/short_description.txt: -------------------------------------------------------------------------------- 1 | En gratis let klient til YouTube på Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/730.txt: -------------------------------------------------------------------------------- 1 | # Behoben 2 | - erneuter Hotfix des Entschlüsselungsfunktionsfehlers. 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Absturz beim Laden eines Videos behoben 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Fortsetzung des Kanals korrigiert 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Behoben, dass YouTube keinen Stream abspielte. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Behoben, dass YouTube keinen Stream abspielte 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/short_description.txt: -------------------------------------------------------------------------------- 1 | Eine freie, leichte YouTube-App für Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/730.txt: -------------------------------------------------------------------------------- 1 | # Fixed 2 | - Hot fix decrypt function error again. 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | Changes in 0.17.2 2 | 3 | Fix 4 | • Fix no video was available 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/820.txt: -------------------------------------------------------------------------------- 1 | Fixed decrypt function name regex making YouTube unusable. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Fixed crash when loading any video 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Fixed channel continuation 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Fixed YouTube not playing any stream. -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Fixed YouTube not playing any stream -------------------------------------------------------------------------------- /fastlane/metadata/android/es/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | Arreglo en YouTube no reproduciendo flujos 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | Arreglo en YouTube no reproduciendo flujos 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | Arreglo en YouTube no reproduciendo flujos 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/changelogs/820.txt: -------------------------------------------------------------------------------- 1 | Corregida la función "regex" que hacia a YouTube inusable. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Arregló la continuación de canal 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Arreglado el fallo por el cuál YouTube no reproducía ningún stream. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Arreglo en YouTube no reproduciendo flujos 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/short_description.txt: -------------------------------------------------------------------------------- 1 | Un cliente de YouTube gratuito y ligero para Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/et/short_description.txt: -------------------------------------------------------------------------------- 1 | Tasuta ja lihtne rakendus YouTube'i vaatamiseks. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/eu/changelogs/953.txt: -------------------------------------------------------------------------------- 1 | YouTube-ren deszifratze funtzioaren erauzketa konpondu da. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/eu/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Hutsegitea edozein bideo irekitzean konponduta 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | مشکل عدم نمایش پخش‌زنده برطرف شد 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | مشکل عدم نمایش پخش‌زنده برطرف شد 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | مشکل عدم نمایش پخش‌زنده برطرف شد 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/730.txt: -------------------------------------------------------------------------------- 1 | # رفع شده 2 | - Hot fix decrypt function error again. 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | Changes in 0.17.2 2 | 3 | تعمیر 4 | • Fix no video was available 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [یوتوب] Fixed crash when loading any video 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [یوتوب] Fixed channel continuation 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | مشکل عدم نمایش پخش‌زنده برطرف شد. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | مشکل عدم نمایش پخش‌زنده برطرف شد 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | مشکل عدم نمایش پخش‌زنده برطرف شد 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fa/changelogs/999.txt: -------------------------------------------------------------------------------- 1 | مشکل عدم نمایش پخش‌زنده برطرف شد 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fi/short_description.txt: -------------------------------------------------------------------------------- 1 | Vapaa kevyt YouTube-katseluohjelma Androidille. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fil/short_description.txt: -------------------------------------------------------------------------------- 1 | Libre't magaang YouTube frontend para sa Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | Correction de YouTube qui ne lisait aucun média 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | Changements 0.17.2 2 | 3 | Correction 4 | - Aucune vidéo n'était disponible 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] rétablissement des flux 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Correction de YouTube qui ne lisait aucun média. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Correction de YouTube qui ne lisait aucun média 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/short_description.txt: -------------------------------------------------------------------------------- 1 | Une interface YouTube libre et légère pour Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/gl/short_description.txt: -------------------------------------------------------------------------------- 1 | Un cliente de YouTube gratuíto e livián para Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/he/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] תוקנה המשכיות ערוץ 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/short_description.txt: -------------------------------------------------------------------------------- 1 | Jednostavno i besplatno YouTube sučelje za Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu/changelogs/820.txt: -------------------------------------------------------------------------------- 1 | Regex név feloldás funkció használhatatlanná teszi a Youtube-ot 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu/changelogs/830.txt: -------------------------------------------------------------------------------- 1 | SoundCloud client_id frissítése. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Bármely videó betöltésnél okozott összeomlás javítása 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Csatorna folytatás fixálása 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | A YouTube immáron lejátszik minden videót. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Immáron minden YouTube videó lejátszásra kerül 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu/short_description.txt: -------------------------------------------------------------------------------- 1 | Egy ingyenes, könnyű YouTube felület Androidra. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | Memperbaiki YouTube yang tidak memutar streaming apa pun 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | Memperbaiki YouTube yang tidak memutar streaming apa pun 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | Memperbaiki YouTube yang tidak memutar streaming apa pun 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | Perubahan di 0.17.2 2 | 3 | Fix 4 | • Fix no video was available 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [Youtube] Diperbaiki crash ketika memuat video apapun 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Diperbaiki lanjut putar kanal 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Memperbaiki YouTube yang tidak memutar streaming apa pun. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Memperbaiki YouTube yang tidak memutar streaming apa pun 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | Memperbaiki YouTube yang tidak memutar streaming apa pun 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/changelogs/999.txt: -------------------------------------------------------------------------------- 1 | Memperbaiki YouTube yang tidak memutar streaming apa pun 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/short_description.txt: -------------------------------------------------------------------------------- 1 | Sebuah klien YouTube gratis dan ringan untuk Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/is/short_description.txt: -------------------------------------------------------------------------------- 1 | Frjáls og létt birtingarmynd YouTube fyrir Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | Modifiche su 0.17.2 2 | 3 | Correzioni 4 | • Risolto il problema con nessun video disponibile 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Corretta continuazione del canale 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja/changelogs/953.txt: -------------------------------------------------------------------------------- 1 | YouTubeの復号化機能の展開を修正。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja/short_description.txt: -------------------------------------------------------------------------------- 1 | Androidの無料で軽量なYouTubeアプリ。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/kab/short_description.txt: -------------------------------------------------------------------------------- 1 | Imeɣri aget midya ilelli, afessas i Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | YouTube에서 스트림을 재생하지 않는 문제 수정 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | YouTube에서 스트림을 재생하지 않는 문제 수정 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | YouTube에서 스트림을 재생하지 않는 문제 수정 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/730.txt: -------------------------------------------------------------------------------- 1 | # 고정 2 | - 핫픽스 복호화 기능 오류가 다시 발생했습니다. 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | 0.17.2의 변경 사항 2 | 3 | 고치다 4 | • 사용할 수 있는 동영상이 없는 문제 수정 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/820.txt: -------------------------------------------------------------------------------- 1 | YouTube를 사용할 수 없게 만드는 복호화 함수 이름 정규식을 수정했습니다. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/953.txt: -------------------------------------------------------------------------------- 1 | 유튜브의 복호화 추출 기능 수정. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [유튜브] 비디오 로딩시의 충돌 수정 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] 채널 이어가기 수정 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | YouTube에서 스트림이 재생되지 않는 문제를 해결했습니다. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | YouTube에서 스트림을 재생하지 않는 문제 수정 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/short_description.txt: -------------------------------------------------------------------------------- 1 | 무료이면서 가볍게 동작하는 안드로이드용 유튜브 앱. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/lt/short_description.txt: -------------------------------------------------------------------------------- 1 | Nemokama ir lengva YouTube sąsaja, skirta Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/lv/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | Izmaiņas 0.17.2 versijā 2 | 3 | Salabots 4 | • Novērsta problēma, ka videoklips bija nepieejams 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/lv/changelogs/910.txt: -------------------------------------------------------------------------------- 1 | Salabota datu bāzes migrācija, kas retos gadījumos neļāva NewPipe palaisties. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/lv/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Salabots kanāla turpinājums 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/lv/short_description.txt: -------------------------------------------------------------------------------- 1 | Viegla, bezmaksas YouTube Android lietotne. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ms/short_description.txt: -------------------------------------------------------------------------------- 1 | Satu aplikasi seiras YouTube yang percuma dan ringan untuk Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Fikset krasj ved innlasting av vilkårlig video 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/short_description.txt: -------------------------------------------------------------------------------- 1 | En fri og lett YouTube-skjermflate for Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-BE/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | Veranderingen in 0.17.2 2 | 3 | Opgelost 4 | • Geen video beschikbaar 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-BE/changelogs/953.txt: -------------------------------------------------------------------------------- 1 | Fix extractie van Youtube's decrypteerfunctie. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-BE/short_description.txt: -------------------------------------------------------------------------------- 1 | Een vrije en lichte Youtube frontend voor Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | YouTube speelt geen stream af opgelost 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | YouTube speelt geen stream af opgelost 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | YouTube speelt geen stream af opgelost 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | Veranderingen in 0.17.2 2 | 3 | Opgelost 4 | • Er was geen video beschikbaar 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Verbetering van vaste kanalen 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Opgelost: YouTube speelt geen stream af. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | YouTube speelt geen stream af opgelost 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nl/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | YouTube speelt geen stream af opgelost 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/changelogs/953.txt: -------------------------------------------------------------------------------- 1 | Naprawiono wyodrębnianie funkcji deszyfrowania YouTube. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Naprawiono błąd występujący podczas ładowania innego materiału wideo 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/short_description.txt: -------------------------------------------------------------------------------- 1 | Darmowa, lekka aplikacja YouTube dla systemu Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir qualquer transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir qualquer transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir qualquer transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Corrigido o crash ao carregar qualquer vídeo 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Corrigido continuação de canal 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir qualquer transmissão. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir qualquer transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir qualquer transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/999.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir qualquer transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Um frontend gratuito e leve do YouTube para Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Corrigida falha ao carregar qualquer vídeo 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Corrigido continuação do canal 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/changelogs/999.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- 1 | Um reprodutor Youtube para Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Corrigida falha ao carregar qualquer vídeo 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Corrigido continuação do canal 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Corrigido YouTube não reproduzir nenhuma transmissão 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/short_description.txt: -------------------------------------------------------------------------------- 1 | Um frontend gratuito e leve do YouTube para Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/short_description.txt: -------------------------------------------------------------------------------- 1 | O interfață YouTube lejeră și gratuită pentru Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sc/short_description.txt: -------------------------------------------------------------------------------- 1 | Unu leghidore multimediale de YouTube pro Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | Fixed YouTube not playing any stream 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | Fixed YouTube not playing any stream 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/changelogs/730.txt: -------------------------------------------------------------------------------- 1 | # Fixed 2 | - Hot fix decrypt function error again. 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | Changes in 0.17.2 2 | 3 | Fix 4 | • Fix no video was available 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/changelogs/820.txt: -------------------------------------------------------------------------------- 1 | Fixed decrypt function name regex making YouTube unusable. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Fixed crash when loading any video 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Fixed channel continuation 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Fixed YouTube not playing any stream. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Fixed YouTube not playing any stream 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/short_description.txt: -------------------------------------------------------------------------------- 1 | Brezplačen in enostaven YouTube "frontend" za Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sq/short_description.txt: -------------------------------------------------------------------------------- 1 | Një frontend i lehtë i YouTube falas për Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Fixade krasch vid laddning av en video 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Fixade kanal fortsättning 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Fixade att YouTube inte spelade någon stream. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Åtgärdat att YouTube inte spelar någon stream 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tok/full_description.txt: -------------------------------------------------------------------------------- 1 | ilo Papisin 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | YouTube'un herhangi bir akışı oynatmaması düzeltildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | YouTube'un herhangi bir akışı oynatmaması düzeltildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | YouTube'un herhangi bir akışı oynatmaması düzeltildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/730.txt: -------------------------------------------------------------------------------- 1 | # Sabit 2 | - Şifre çözme işlevi hatasını tekrar düzeltin. 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/953.txt: -------------------------------------------------------------------------------- 1 | YouTube şifre çözme işlevini ayıklama hatası giderildi. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Herhangi bir videoyu yüklerken oluşan çökme düzeltildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Kanal devam ettirme düzeltildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | YouTube'un herhangi bir akışı oynatmaması düzeltildi. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | YouTube'un herhangi bir akışı oynatmaması düzeltildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | YouTube'un herhangi bir akışı oynatmaması düzeltildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/changelogs/999.txt: -------------------------------------------------------------------------------- 1 | YouTube'un herhangi bir akışı oynatmaması düzeltildi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/short_description.txt: -------------------------------------------------------------------------------- 1 | Android için Bedava ve hafif bir YouTube istemcisi. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/und/short_description.txt: -------------------------------------------------------------------------------- 1 | Cum ca Android* dar free light-wetit Youtube fotu'end 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uz-Latn/changelogs/730.txt: -------------------------------------------------------------------------------- 1 | # Ruxsat etilgan 2 | - Funktsiyaning xatosini yana tezkor hal qilish. 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uz-Latn/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | 0.17.2-dagi o'zgarishlar 2 | 3 | Tuzatish 4 | • Hech qanday video mavjud emasligini aniqlang 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uz-Latn/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Har qanday videoni yuklashda nosozlik aniqlandi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uz-Latn/short_description.txt: -------------------------------------------------------------------------------- 1 | Android uchun bepul yangi YouTube frontend. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/vi/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | Đã sửa lỗi YouTube không phát bất kỳ luồng nào 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/vi/changelogs/953.txt: -------------------------------------------------------------------------------- 1 | Sửa phần trích xuất của hàm giải mã link YouTube. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/vi/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] Sửa lỗi crash khi mở bất kì video nào 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/vi/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] Sửa lỗi tiếp nối kênh (channel continuation) 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/vi/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | Sửa lỗi YouTube không phát bất kỳ luồng nào. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/vi/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | Đã sửa lỗi YouTube không phát bất kỳ luồng nào 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/vi/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | Đã sửa lỗi YouTube không phát bất kỳ luồng nào 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/vi/changelogs/999.txt: -------------------------------------------------------------------------------- 1 | Đã sửa lỗi YouTube không phát bất kỳ luồng nào 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/vi/short_description.txt: -------------------------------------------------------------------------------- 1 | Một giao diện người dùng YouTube nhẹ miễn phí dành cho Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | 修复YouTube无法播放任何视频 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | 修复YouTube无法播放任何视频 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | 修复YouTube无法播放任何视频 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/730.txt: -------------------------------------------------------------------------------- 1 | #修复 2 | - 再次热修复解密功能错误。 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | 0.17.2 更改 2 | 3 | 修复 4 | •修复没有视频可用 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/820.txt: -------------------------------------------------------------------------------- 1 | 修正了导致YouTube不可用的解密函数名正则表达式。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/910.txt: -------------------------------------------------------------------------------- 1 | 修复了一个数据库迁移问题,在罕见情况下,该问题会阻碍 NewPipe 的启动。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/953.txt: -------------------------------------------------------------------------------- 1 | 修复YouTube解密功能提取 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube]修复加载任意视频时崩溃 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/963.txt: -------------------------------------------------------------------------------- 1 | • [YouTube] 修复频道连续 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/967.txt: -------------------------------------------------------------------------------- 1 | 修正了YouTube在欧盟国家无法正常使用的问题; 2 | 由于新的cookie和隐私系统, 需要NewPipe同意并保存一个cookie 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/979.txt: -------------------------------------------------------------------------------- 1 | - 修复 恢复播放 2 | - 改进 确保Newpipe是否应检查新版本的检查的服务不在后台启动 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | 修复YouTube无法播放任何视频 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | 修复YouTube无法播放任何视频 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | 修复YouTube无法播放任何视频 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/changelogs/999.txt: -------------------------------------------------------------------------------- 1 | 修复YouTube无法播放任何视频 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hans/short_description.txt: -------------------------------------------------------------------------------- 1 | 一个轻量级的自由 Android YouTube 前端。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | 修正 YouTube 無法播放任何串流 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | 修正 YouTube 無法播放任何串流 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | 修正 YouTube 無法播放任何串流 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/730.txt: -------------------------------------------------------------------------------- 1 | # 修正 2 | - 再次修補解密函式錯誤。 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/770.txt: -------------------------------------------------------------------------------- 1 | 0.17.2 中的變更 2 | 3 | 修復 4 | • 修復無影片可用的問題 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/820.txt: -------------------------------------------------------------------------------- 1 | 修復解密函式名稱正規表達式讓 YouTube 無法使用的問題。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/910.txt: -------------------------------------------------------------------------------- 1 | 修復在極少數情況下會阻止 NewPipe 啟動的資料庫遷移。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/953.txt: -------------------------------------------------------------------------------- 1 | 修復 YouTube 解密功能擷取。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/956.txt: -------------------------------------------------------------------------------- 1 | [YouTube] 修正載入任何影片時的崩潰 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/982.txt: -------------------------------------------------------------------------------- 1 | 修復 YouTube 不會播放任何影片。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | 修正 YouTube 無法播放任何串流 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/996.txt: -------------------------------------------------------------------------------- 1 | 修正在 media.ccc.de 開啟頻道/會議時的 NullPointerException。 2 | 鬼靈精試圖破壞我們送給您的聖誕禮物,但我們修好了。 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | 修正 YouTube 無法播放任何串流 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/changelogs/999.txt: -------------------------------------------------------------------------------- 1 | 修正 YouTube 無法播放任何串流 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-Hant/short_description.txt: -------------------------------------------------------------------------------- 1 | 自由的輕量級 Android YouTube 前端。 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh_Hant_HK/changelogs/1002.txt: -------------------------------------------------------------------------------- 1 | 修正咗 YouTube 乜嘢實況串流都播唔到嘅問題 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh_Hant_HK/changelogs/1003.txt: -------------------------------------------------------------------------------- 1 | 修正咗 YouTube 乜嘢實況串流都播唔到嘅問題 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh_Hant_HK/changelogs/1004.txt: -------------------------------------------------------------------------------- 1 | 修正咗 YouTube 乜嘢實況串流都播唔到嘅問題 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh_Hant_HK/changelogs/985.txt: -------------------------------------------------------------------------------- 1 | 修正咗 YouTube 乜嘢實況串流都播唔到嘅問題 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh_Hant_HK/changelogs/996.txt: -------------------------------------------------------------------------------- 1 | 修正開啟 media.ccc.de 嘅頻道/會議時發生 NullPointerException 失卻指標錯誤。 2 | 柳煙輕愜夜,俊緒留江影。謝謝您陪我哋跑完悲歡離合嘅一年。 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh_Hant_HK/changelogs/998.txt: -------------------------------------------------------------------------------- 1 | 修正咗 YouTube 乜嘢實況串流都播唔到嘅問題 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh_Hant_HK/changelogs/999.txt: -------------------------------------------------------------------------------- 1 | 修正咗 YouTube 乜嘢實況串流都播唔到嘅問題 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh_Hant_HK/short_description.txt: -------------------------------------------------------------------------------- 1 | 適用於Android嘅免費,自由、輕量級同具有前瞻性嘅YouTube。 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/gradlew.bat -------------------------------------------------------------------------------- /scripts/diffs_for_BraveNewPipeLEGACY.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/scripts/diffs_for_BraveNewPipeLEGACY.sh -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/settings.gradle -------------------------------------------------------------------------------- /support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravepipeproject/BravePipe/HEAD/support.md --------------------------------------------------------------------------------