-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 0.21.9 #6840
Release 0.21.9 #6840
Commits on Jun 8, 2021
-
Configuration menu - View commit details
-
Copy full SHA for f47ae36 - Browse repository at this point
Copy the full SHA f47ae36View commit details -
Configuration menu - View commit details
-
Copy full SHA for 060f09f - Browse repository at this point
Copy the full SHA 060f09fView commit details
Commits on Jun 9, 2021
-
Use SwitchCompat to make switch uniform across versions
Also just use colorControlActivated in the base V19 theme, instead of using the prefix android: in each V21 service theme
Configuration menu - View commit details
-
Copy full SHA for 6ab4787 - Browse repository at this point
Copy the full SHA 6ab4787View commit details -
Configuration menu - View commit details
-
Copy full SHA for 272d589 - Browse repository at this point
Copy the full SHA 272d589View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa1d7ff - Browse repository at this point
Copy the full SHA fa1d7ffView commit details
Commits on Jun 13, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 40a2df8 - Browse repository at this point
Copy the full SHA 40a2df8View commit details
Commits on Jun 20, 2021
-
Remove option to immediately commit pref changes on import
System is now not restarted with `System.exit(0)`. Instead it is done properly by finishing the activity and restarting the activity. This allows preference changes which are queued up asynchronously through `apply` to be applied.
Configuration menu - View commit details
-
Copy full SHA for 9767e98 - Browse repository at this point
Copy the full SHA 9767e98View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0bdf8de - Browse repository at this point
Copy the full SHA 0bdf8deView commit details -
Remove variable ContentSettingsFragment.lastImportExportDataUri
Instead pass the value through the methods as parameter
Configuration menu - View commit details
-
Copy full SHA for 785c037 - Browse repository at this point
Copy the full SHA 785c037View commit details -
Configuration menu - View commit details
-
Copy full SHA for 72d305b - Browse repository at this point
Copy the full SHA 72d305bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e5a1438 - Browse repository at this point
Copy the full SHA e5a1438View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae39b31 - Browse repository at this point
Copy the full SHA ae39b31View commit details -
Configuration menu - View commit details
-
Copy full SHA for 02b0909 - Browse repository at this point
Copy the full SHA 02b0909View commit details -
Configuration menu - View commit details
-
Copy full SHA for 08d4651 - Browse repository at this point
Copy the full SHA 08d4651View commit details -
Configuration menu - View commit details
-
Copy full SHA for afe06b3 - Browse repository at this point
Copy the full SHA afe06b3View commit details
Commits on Jun 22, 2021
-
#6081: Disable feed click handlers during refresh
This patch changes click handlers for feed (Whats new) so that they do nothing while the feed is refreshing and the items being clicked are not visible.
1Configuration menu - View commit details
-
Copy full SHA for cb1a138 - Browse repository at this point
Copy the full SHA cb1a138View commit details
Commits on Jun 24, 2021
-
service.onDestroy() should only be called from the system and not man…
…ually instead use service.stopService() which inturn calls stopSelf() and triggers hopefully onDestroy() to be called. Eventually we have to make sure that all ServiceConnections are closed to successfully stop the service now! Cleanup within stopService() and not only onDestroy() So we make sure that all listeners can react to onServiceStopped() and close their ServiceConnections. Afterwards the android framework is ready to stop the Service.
Configuration menu - View commit details
-
Copy full SHA for aaa3e20 - Browse repository at this point
Copy the full SHA aaa3e20View commit details
Commits on Jul 6, 2021
-
move null checks for player and playerService to helper methods
- code is easier to read - duplication of code reduced
Configuration menu - View commit details
-
Copy full SHA for 22a4a4b - Browse repository at this point
Copy the full SHA 22a4a4bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e30a552 - Browse repository at this point
Copy the full SHA e30a552View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4358133 - Browse repository at this point
Copy the full SHA 4358133View commit details -
convert PlayerHolder to Singleton, handle context within, bugfix Serv…
…iceConnection leak - bugfix: have ServiceConnection created only once! - select the context within the PlayerHolder to start, stop, bind or unbind the service -> we have to make sure the Service is started AND stopped within the same context -> so let PlayerHolder be the one to select the context - remove removeListener() and replace the call with setListener(null) - Compatibility: use ContextCompat.startForegroundService instead of startService()
Configuration menu - View commit details
-
Copy full SHA for 48c2c15 - Browse repository at this point
Copy the full SHA 48c2c15View commit details -
Prevent error msg: 'Unrecoverable player error occurred' while playin…
…g video during rotation (#6502) Playing a video in VideoDetailFragment and rotating the screen to landscape (back and forth more often) can trigger this error message. Especially if rotation for whatever reason takes long or playing a high resolution (1080p) video. The underlying logcat error messages: 05-12 16:38:38.251 24920 26037 E Surface : getSlotFromBufferLocked: unknown buffer: 0x923fc810 05-12 16:38:38.251 24920 26037 W ACodec : [OMX.qcom.video.decoder.avc] can not return buffer 35 to native window The problem is that that Exoplayer is trying to write to our -- during rotation -- no longer existant (VideoDetailFragment) SurfaceView. Solution: Implementing SurfaceHolder.Callback and using DummySurface we can now handle the lifecycle of the Surface. How?: In case we are no longer able to write to the Surface eg. through rotation/putting in background we can set a DummySurface. Although it only works on API >= 23. Result: we get a little video interruption (audio is still fine) but we won't get the 'Unrecoverable player error occurred' error message. This implementation is based on and more background information: 'ExoPlayer stuck in buffering after re-adding the surface view a few time 2703' -> exoplayer fix suggestion link google/ExoPlayer#2703 (comment)
Configuration menu - View commit details
-
Copy full SHA for f78d2a5 - Browse repository at this point
Copy the full SHA f78d2a5View commit details -
Specify emulator-build version in CI job
This is a workaround for the emulator bug ReactiveCircus/android-emulator-runner#160
Configuration menu - View commit details
-
Copy full SHA for 9c636f5 - Browse repository at this point
Copy the full SHA 9c636f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 573839c - Browse repository at this point
Copy the full SHA 573839cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 85e864a - Browse repository at this point
Copy the full SHA 85e864aView commit details
Commits on Jul 10, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 6711dae - Browse repository at this point
Copy the full SHA 6711daeView commit details
Commits on Jul 11, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 2e053ea - Browse repository at this point
Copy the full SHA 2e053eaView commit details
Commits on Jul 12, 2021
-
Configuration menu - View commit details
-
Copy full SHA for e9b008e - Browse repository at this point
Copy the full SHA e9b008eView commit details -
Merge pull request #6540 from TacoTheDank/library-bumps
Update some libraries
Configuration menu - View commit details
-
Copy full SHA for 85d813a - Browse repository at this point
Copy the full SHA 85d813aView commit details -
Merge pull request #6560 from TeamNewPipe/fix_ci_emulator
Specify emulator-build version in CI job
Configuration menu - View commit details
-
Copy full SHA for 4d5b687 - Browse repository at this point
Copy the full SHA 4d5b687View commit details -
Merge pull request #6616 from litetex/fix-minimized-player-thumbnail
Made the thumbnail in the minimized player visible again
Configuration menu - View commit details
-
Copy full SHA for 64efb89 - Browse repository at this point
Copy the full SHA 64efb89View commit details -
Merge pull request #6463 from Stypox/metadata-tags
Improved metadata layout, better tags accessibility
Configuration menu - View commit details
-
Copy full SHA for 96f5cd9 - Browse repository at this point
Copy the full SHA 96f5cd9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 56ea526 - Browse repository at this point
Copy the full SHA 56ea526View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2aa5f68 - Browse repository at this point
Copy the full SHA 2aa5f68View commit details
Commits on Jul 13, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 403e336 - Browse repository at this point
Copy the full SHA 403e336View commit details
Commits on Jul 14, 2021
-
Merge pull request #6566 from evermind-zz/various-fixes-for-upstream
Convert PlayerHolder to Singleton; cleanup in VideoDetailFragment; Player/MainPlayer do not call onDestroy() directly
Configuration menu - View commit details
-
Copy full SHA for 14dab85 - Browse repository at this point
Copy the full SHA 14dab85View commit details -
Merge pull request #6531 from XiangRongLin/immediat_pref_commit
Remove option to immediately commit pref changes on import
Configuration menu - View commit details
-
Copy full SHA for 1584028 - Browse repository at this point
Copy the full SHA 1584028View commit details -
Merge pull request #6503 from evermind-zz/fixes-for-upstream
Prevent error msg: 'Unrecoverable player error occurred' while playin…
Configuration menu - View commit details
-
Copy full SHA for dfa941a - Browse repository at this point
Copy the full SHA dfa941aView commit details -
Added a Kotlin section in CONTRIBUTING.md
Core team does not want to convert to Kotlin yet and sees Java as the easier to learn and more well adopted language. This stance might of course change in the future. For example it could be reasonable to do a complete transition to Kotlin once it is decides that the minSdk is raised to 21 or higher, as we then could use Jetpack particularly Lifecycle and Compose.
Configuration menu - View commit details
-
Copy full SHA for 6e576a1 - Browse repository at this point
Copy the full SHA 6e576a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for a2eb810 - Browse repository at this point
Copy the full SHA a2eb810View commit details
Commits on Jul 16, 2021
-
Configuration menu - View commit details
-
Copy full SHA for d3375a9 - Browse repository at this point
Copy the full SHA d3375a9View commit details -
Merge pull request #6678 from TeamNewPipe/XiangRongLin-patch-1
Remove api level 29 from android ci tests
Configuration menu - View commit details
-
Copy full SHA for e7f339a - Browse repository at this point
Copy the full SHA e7f339aView commit details -
Removed updateRelativeTimeViews when the activity is paused
We don't need to call ``updateRelativeTimeViews`` when the activity is paused, because the user likely won't notice it. Despite that onResume already calls ``updateRelativeTimeViews`` so there is no need to do that twice.
Configuration menu - View commit details
-
Copy full SHA for 08d5dfa - Browse repository at this point
Copy the full SHA 08d5dfaView commit details -
Configuration menu - View commit details
-
Copy full SHA for f4e2eca - Browse repository at this point
Copy the full SHA f4e2ecaView commit details
Commits on Jul 17, 2021
-
Merge pull request #6637 from Isira-Seneviratne/Use_GestureDetectorCo…
…mpat Use GestureDetectorCompat.
Configuration menu - View commit details
-
Copy full SHA for a932bc2 - Browse repository at this point
Copy the full SHA a932bc2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 81107df - Browse repository at this point
Copy the full SHA 81107dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 75a8edf - Browse repository at this point
Copy the full SHA 75a8edfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 36c198f - Browse repository at this point
Copy the full SHA 36c198fView commit details -
Merge pull request #6483 from litetex/addDisabledComments
Added comments disabled functionallity
Configuration menu - View commit details
-
Copy full SHA for e7d5011 - Browse repository at this point
Copy the full SHA e7d5011View commit details -
Merge pull request #5531 from XiangRongLin/tests
Add instrumented tests for LocalPlaylistManager.createPlaylist
Configuration menu - View commit details
-
Copy full SHA for eef568b - Browse repository at this point
Copy the full SHA eef568bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 43133df - Browse repository at this point
Copy the full SHA 43133dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e2dbaf - Browse repository at this point
Copy the full SHA 2e2dbafView commit details -
Configuration menu - View commit details
-
Copy full SHA for 253526e - Browse repository at this point
Copy the full SHA 253526eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 384d964 - Browse repository at this point
Copy the full SHA 384d964View commit details -
Configuration menu - View commit details
-
Copy full SHA for c5f2eb1 - Browse repository at this point
Copy the full SHA c5f2eb1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 88c4195 - Browse repository at this point
Copy the full SHA 88c4195View commit details -
Moved seekbar preview up a bit, so the finger is not obstructing the view
Configuration menu - View commit details
-
Copy full SHA for 2a24532 - Browse repository at this point
Copy the full SHA 2a24532View commit details -
Configuration menu - View commit details
-
Copy full SHA for a9b5ef3 - Browse repository at this point
Copy the full SHA a9b5ef3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b2629e - Browse repository at this point
Copy the full SHA 0b2629eView commit details -
Configuration menu - View commit details
-
Copy full SHA for efd038a - Browse repository at this point
Copy the full SHA efd038aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 621af8d - Browse repository at this point
Copy the full SHA 621af8dView commit details
Commits on Jul 18, 2021
-
Configuration menu - View commit details
-
Copy full SHA for e2b044d - Browse repository at this point
Copy the full SHA e2b044dView commit details -
Merge pull request #6536 from TacoTheDank/moar-onactivityresult
More onActivityResult deprecation fixes
Configuration menu - View commit details
-
Copy full SHA for baa12c7 - Browse repository at this point
Copy the full SHA baa12c7View commit details -
Merge pull request #6456 from TeamNewPipe/feature/switch-theme
Apply theme to switches
Configuration menu - View commit details
-
Copy full SHA for 6c25ce5 - Browse repository at this point
Copy the full SHA 6c25ce5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 35e005c - Browse repository at this point
Copy the full SHA 35e005cView commit details
Commits on Jul 19, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 8f55996 - Browse repository at this point
Copy the full SHA 8f55996View commit details -
Merge pull request #6654 from Isira-Seneviratne/Bump_compileSdk
Bump compileSdkVersion to 30.
Configuration menu - View commit details
-
Copy full SHA for 3167ab3 - Browse repository at this point
Copy the full SHA 3167ab3View commit details -
Merge pull request #6434 from litetex/playerSeekbarPreview
Player seekbar thumbnail preview
Configuration menu - View commit details
-
Copy full SHA for d57bfde - Browse repository at this point
Copy the full SHA d57bfdeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1721817 - Browse repository at this point
Copy the full SHA 1721817View commit details -
Configuration menu - View commit details
-
Copy full SHA for c7b8bd3 - Browse repository at this point
Copy the full SHA c7b8bd3View commit details -
Merge pull request #6688 from litetex/fix-some-build-warnings
Fix some build warnings
Configuration menu - View commit details
-
Copy full SHA for 46e7da4 - Browse repository at this point
Copy the full SHA 46e7da4View commit details -
Merge pull request #6659 from TeamNewPipe/Redirion-kotlin-section
Added a Kotlin section in CONTRIBUTING.md
Configuration menu - View commit details
-
Copy full SHA for bec8512 - Browse repository at this point
Copy the full SHA bec8512View commit details -
Merge pull request #6702 from Isira-Seneviratne/Update_AppCompat_to_1…
….3.0 Update AppCompat to 1.3.0.
Configuration menu - View commit details
-
Copy full SHA for 0cde08c - Browse repository at this point
Copy the full SHA 0cde08cView commit details -
Merge pull request #6675 from Isira-Seneviratne/Use_Kotlin_methods
Use Kotlin methods in LicenseFragment.
Configuration menu - View commit details
-
Copy full SHA for ca282f2 - Browse repository at this point
Copy the full SHA ca282f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ba3ef0 - Browse repository at this point
Copy the full SHA 5ba3ef0View commit details -
Fix format of some kotlin files
so that it doesn't annoy people that are building this repo ;)
Configuration menu - View commit details
-
Copy full SHA for f02c6be - Browse repository at this point
Copy the full SHA f02c6beView commit details -
Configuration menu - View commit details
-
Copy full SHA for f6923e0 - Browse repository at this point
Copy the full SHA f6923e0View commit details -
Merge pull request #6707 from litetex/use-correct-extractor-dependency
Use the correct extractor dependency
Configuration menu - View commit details
-
Copy full SHA for d8f442c - Browse repository at this point
Copy the full SHA d8f442cView commit details -
Merge pull request #6689 from Isira-Seneviratne/Use_WindowInsetsCompa…
…t_getInsets Use WindowInsetsCompat's getInsets() method.
Configuration menu - View commit details
-
Copy full SHA for 4a242e4 - Browse repository at this point
Copy the full SHA 4a242e4View commit details -
Merge pull request #6706 from litetex/fix-format-of-some-kotlin-files
Fix format of some kotlin files
Configuration menu - View commit details
-
Copy full SHA for cebcaf4 - Browse repository at this point
Copy the full SHA cebcaf4View commit details -
Merge pull request #6701 from Stypox/dismiss-download-dialog
Dismiss download dialog correctly
Configuration menu - View commit details
-
Copy full SHA for 9e2ece7 - Browse repository at this point
Copy the full SHA 9e2ece7View commit details -
Merge pull request #6705 from Stypox/big-text-info-items
Fix grid span count calculation
Configuration menu - View commit details
-
Copy full SHA for 63fdc10 - Browse repository at this point
Copy the full SHA 63fdc10View commit details
Commits on Jul 20, 2021
-
Readd api level 29 to android CI tests
The action got fixed and released https://github.com/ReactiveCircus/android-emulator-runner/releases/tag/v2.19.1
Configuration menu - View commit details
-
Copy full SHA for c422f65 - Browse repository at this point
Copy the full SHA c422f65View commit details -
Configuration menu - View commit details
-
Copy full SHA for 420f050 - Browse repository at this point
Copy the full SHA 420f050View commit details -
Merge pull request #6715 from TeamNewPipe/readd_api_29
Readd api level 29 to android CI tests
Configuration menu - View commit details
-
Copy full SHA for fd4e1b8 - Browse repository at this point
Copy the full SHA fd4e1b8View commit details
Commits on Jul 21, 2021
-
1
Configuration menu - View commit details
-
Copy full SHA for a9e21a3 - Browse repository at this point
Copy the full SHA a9e21a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a2bd7b - Browse repository at this point
Copy the full SHA 4a2bd7bView commit details -
Use url comparison between queue items when disabling preloading
From #4562: Disable player stream preloading only if the current stream is going to be replaced for sure (see this). equals() was implemented for PlayQueueItems, so that (only) the url is compared when checking them.
Configuration menu - View commit details
-
Copy full SHA for fa8630d - Browse repository at this point
Copy the full SHA fa8630dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 736cefe - Browse repository at this point
Copy the full SHA 736cefeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1d85661 - Browse repository at this point
Copy the full SHA 1d85661View commit details
Commits on Jul 22, 2021
-
Prevent recaptcha webview from keeping youtube loaded in background
After the cookies are extracted from the recaptcha webview make it load an empty page to prevent youtube being loaded unecessarily in the background.
Configuration menu - View commit details
-
Copy full SHA for cd86ed3 - Browse repository at this point
Copy the full SHA cd86ed3View commit details -
Use loadUrl instead of loadData
Co-authored-by: Stypox <stypox@pm.me>
Configuration menu - View commit details
-
Copy full SHA for 52c1364 - Browse repository at this point
Copy the full SHA 52c1364View commit details -
Merge pull request #6712 from Stypox/fix-duplicate-items-queue
Fix duplicate items in queue causing endless buffering
Configuration menu - View commit details
-
Copy full SHA for 1f9ad12 - Browse repository at this point
Copy the full SHA 1f9ad12View commit details -
Merge pull request #6721 from Stypox/pending-mission-crash
Delete pending missions with invalid storage
Configuration menu - View commit details
-
Copy full SHA for 39722a5 - Browse repository at this point
Copy the full SHA 39722a5View commit details
Commits on Jul 23, 2021
-
Added support for showing when a comment has received a heart from th…
…e creator of a video.
Configuration menu - View commit details
-
Copy full SHA for 3874e16 - Browse repository at this point
Copy the full SHA 3874e16View commit details -
Change heart color to be red, add else clause for non hearted comment…
…s, and apply some code style suggestions.
Configuration menu - View commit details
-
Copy full SHA for 7417331 - Browse repository at this point
Copy the full SHA 7417331View commit details
Commits on Jul 26, 2021
-
The toolbarSearchTheme was accidently broken with #6456, see #6456 (comment) for details. This commit restores the old behavior
Configuration menu - View commit details
-
Copy full SHA for f709ac1 - Browse repository at this point
Copy the full SHA f709ac1View commit details
Commits on Jul 27, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 7fd2ebc - Browse repository at this point
Copy the full SHA 7fd2ebcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1822d21 - Browse repository at this point
Copy the full SHA 1822d21View commit details -
Merge pull request #6733 from Douile/fix/recaptcha-webview-background…
…-activity Prevent recaptcha webview from keeping youtube loaded in background
Configuration menu - View commit details
-
Copy full SHA for 0cb8011 - Browse repository at this point
Copy the full SHA 0cb8011View commit details -
Merge pull request #6771 from litetex/fix-ToolbarSearchInputTheme
Fixed the ToolbarSearchTheme
Configuration menu - View commit details
-
Copy full SHA for 7ceea2c - Browse repository at this point
Copy the full SHA 7ceea2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2aebf6c - Browse repository at this point
Copy the full SHA 2aebf6cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 50f3b08 - Browse repository at this point
Copy the full SHA 50f3b08View commit details -
Configuration menu - View commit details
-
Copy full SHA for e2791cd - Browse repository at this point
Copy the full SHA e2791cdView commit details -
Merge pull request #6720 from TacoTheDank/alertdialog-edittext
Consolidate edittext alert dialogs into one common layout
Configuration menu - View commit details
-
Copy full SHA for 5ceec31 - Browse repository at this point
Copy the full SHA 5ceec31View commit details -
Merge pull request #6782 from TacoTheDank/fix-fill-parent
Fix deprecated fill_parent attributes
Configuration menu - View commit details
-
Copy full SHA for 5924edb - Browse repository at this point
Copy the full SHA 5924edbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b41f71 - Browse repository at this point
Copy the full SHA 2b41f71View commit details -
Configuration menu - View commit details
-
Copy full SHA for bfac73b - Browse repository at this point
Copy the full SHA bfac73bView commit details -
Configuration menu - View commit details
-
Copy full SHA for f451bdb - Browse repository at this point
Copy the full SHA f451bdbView commit details -
Fetch the stream info via a network request if no duration is found w…
…hen attempting to mark as watched.
Configuration menu - View commit details
-
Copy full SHA for 4c63281 - Browse repository at this point
Copy the full SHA 4c63281View commit details
Commits on Jul 28, 2021
-
Configuration menu - View commit details
-
Copy full SHA for bdd16e0 - Browse repository at this point
Copy the full SHA bdd16e0View commit details -
Merge pull request #6778 from Stypox/invalid-storage-npe
Fix NullPointerException when checking if storage exists
Configuration menu - View commit details
-
Copy full SHA for cd713db - Browse repository at this point
Copy the full SHA cd713dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9032960 - Browse repository at this point
Copy the full SHA 9032960View commit details
Commits on Jul 30, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 0e12cde - Browse repository at this point
Copy the full SHA 0e12cdeView commit details
Commits on Jul 31, 2021
-
Merge pull request #6808 from litetex/ci-run-format-ktlin-before-buil…
…ding Check formatting of kotlin files in CI
Configuration menu - View commit details
-
Copy full SHA for a25bb26 - Browse repository at this point
Copy the full SHA a25bb26View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6443961 - Browse repository at this point
Copy the full SHA 6443961View commit details -
Configuration menu - View commit details
-
Copy full SHA for dc0a28b - Browse repository at this point
Copy the full SHA dc0a28bView commit details
Commits on Aug 1, 2021
-
Merge pull request #6773 from nschulzke/mark-as-played
Add ability to mark an item as played
Configuration menu - View commit details
-
Copy full SHA for 551e8df - Browse repository at this point
Copy the full SHA 551e8dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 398007c - Browse repository at this point
Copy the full SHA 398007cView commit details -
Merge pull request #6741 from KalleStruik/comment-hearts
Show hearts in comments
Configuration menu - View commit details
-
Copy full SHA for d42a534 - Browse repository at this point
Copy the full SHA d42a534View commit details -
Merge pull request #6719 from TacoTheDank/core-lifecycle-bump
Update some AndroidX libraries
Configuration menu - View commit details
-
Copy full SHA for 896aec5 - Browse repository at this point
Copy the full SHA 896aec5View commit details -
Configuration menu - View commit details
-
Copy full SHA for d324502 - Browse repository at this point
Copy the full SHA d324502View commit details -
Merge pull request #6633 from Isira-Seneviratne/Use_NotificationChann…
…elCompat Use NotificationChannelCompat.
Configuration menu - View commit details
-
Copy full SHA for bc74bb6 - Browse repository at this point
Copy the full SHA bc74bb6View commit details -
Merge pull request #6550 from Douile/fix/clickthrough-feed-refresh
Disable feed click events while refresh overlay is shown
Configuration menu - View commit details
-
Copy full SHA for a9623f8 - Browse repository at this point
Copy the full SHA a9623f8View commit details -
Merge pull request #6792 from XiangRongLin/update_extractor
Update extractor, thus including throttling fixes
Configuration menu - View commit details
-
Copy full SHA for 4bf5ddb - Browse repository at this point
Copy the full SHA 4bf5ddbView commit details
Commits on Aug 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for c7f75bf - Browse repository at this point
Copy the full SHA c7f75bfView commit details
Commits on Aug 4, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 4291877 - Browse repository at this point
Copy the full SHA 4291877View commit details -
Configuration menu - View commit details
-
Copy full SHA for 340a84e - Browse repository at this point
Copy the full SHA 340a84eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 23a6973 - Browse repository at this point
Copy the full SHA 23a6973View commit details -
Configuration menu - View commit details
-
Copy full SHA for a2297fb - Browse repository at this point
Copy the full SHA a2297fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for c3349e1 - Browse repository at this point
Copy the full SHA c3349e1View commit details
Commits on Aug 5, 2021
-
Merge pull request #6814 from Stypox/channel-grid-span-count
Fix channel item span count for SubscriptionFragment
Configuration menu - View commit details
-
Copy full SHA for a3440cc - Browse repository at this point
Copy the full SHA a3440ccView commit details
Commits on Aug 10, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 9dd2a82 - Browse repository at this point
Copy the full SHA 9dd2a82View commit details
Commits on Aug 22, 2021
-
Translated using Weblate (Finnish)
Currently translated at 10.7% (6 of 56 strings) Translated using Weblate (Finnish) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (Spanish) Currently translated at 53.5% (30 of 56 strings) Translated using Weblate (Polish) Currently translated at 51.7% (29 of 56 strings) Translated using Weblate (Swedish) Currently translated at 99.5% (675 of 678 strings) Translated using Weblate (Swedish) Currently translated at 99.5% (675 of 678 strings) Translated using Weblate (Swedish) Currently translated at 99.5% (675 of 678 strings) Translated using Weblate (Galician) Currently translated at 93.6% (635 of 678 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (Croatian) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (Indonesian) Currently translated at 99.8% (677 of 678 strings) Translated using Weblate (Japanese) Currently translated at 99.8% (677 of 678 strings) Translated using Weblate (Croatian) Currently translated at 97.0% (658 of 678 strings) Translated using Weblate (Croatian) Currently translated at 97.0% (658 of 678 strings) Translated using Weblate (Vietnamese) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (Greek) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (Somali) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (Swedish) Currently translated at 3.5% (2 of 56 strings) Translated using Weblate (Swedish) Currently translated at 98.0% (665 of 678 strings) Translated using Weblate (Turkish) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (German) Currently translated at 99.8% (677 of 678 strings) Translated using Weblate (Ukrainian) Currently translated at 53.5% (30 of 56 strings) Translated using Weblate (Italian) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (French) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (Portuguese (Portugal)) Currently translated at 53.5% (30 of 56 strings) Translated using Weblate (Portuguese) Currently translated at 53.5% (30 of 56 strings) Translated using Weblate (Croatian) Currently translated at 96.7% (656 of 678 strings) Translated using Weblate (Swedish) Currently translated at 97.1% (659 of 678 strings) Translated using Weblate (Portuguese) Currently translated at 100.0% (678 of 678 strings) Translated using Weblate (English) Currently translated at 99.8% (678 of 679 strings) Translated using Weblate (Italian) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Ukrainian) Currently translated at 53.5% (30 of 56 strings) Translated using Weblate (Portuguese (Portugal)) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Albanian) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Arabic) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Portuguese) Currently translated at 99.8% (678 of 679 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (56 of 56 strings) Translated using Weblate (Polish) Currently translated at 48.2% (27 of 56 strings) Translated using Weblate (Portuguese (Portugal)) Currently translated at 94.2% (640 of 679 strings) Translated using Weblate (Lithuanian) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Persian) Currently translated at 94.4% (641 of 679 strings) Translated using Weblate (Polish) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (French) Currently translated at 99.8% (678 of 679 strings) Translated using Weblate (Sardinian) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 99.8% (678 of 679 strings) Translated using Weblate (Somali) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Hebrew) Currently translated at 48.1% (26 of 54 strings) Translated using Weblate (Hebrew) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Polish) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Arabic) Currently translated at 99.7% (677 of 679 strings) Translated using Weblate (Czech) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Czech) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Greek) Currently translated at 99.7% (677 of 679 strings) Translated using Weblate (Russian) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Russian) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (French) Currently translated at 99.8% (678 of 679 strings) Translated using Weblate (Spanish) Currently translated at 99.8% (678 of 679 strings) Translated using Weblate (German) Currently translated at 99.8% (678 of 679 strings) Translated using Weblate (German) Currently translated at 99.8% (678 of 679 strings) Translated using Weblate (German) Currently translated at 99.8% (678 of 679 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (679 of 679 strings) Translated using Weblate (Tamil) Currently translated at 36.6% (248 of 677 strings) Translated using Weblate (Turkish) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Esperanto) Currently translated at 85.6% (580 of 677 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 26.4% (14 of 53 strings) Translated using Weblate (Estonian) Currently translated at 99.8% (676 of 677 strings) Translated using Weblate (Swedish) Currently translated at 97.4% (660 of 677 strings) Translated using Weblate (Polish) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Korean) Currently translated at 76.0% (515 of 677 strings) Translated using Weblate (Russian) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Spanish) Currently translated at 28.3% (15 of 53 strings) Translated using Weblate (Estonian) Currently translated at 97.0% (657 of 677 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Basque) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Hungarian) Currently translated at 85.6% (580 of 677 strings) Translated using Weblate (Hungarian) Currently translated at 85.6% (580 of 677 strings) Translated using Weblate (Hungarian) Currently translated at 85.6% (580 of 677 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Swedish) Currently translated at 3.7% (2 of 53 strings) Translated using Weblate (French) Currently translated at 67.9% (36 of 53 strings) Translated using Weblate (Vietnamese) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Swedish) Currently translated at 97.3% (659 of 677 strings) Translated using Weblate (Swedish) Currently translated at 97.3% (659 of 677 strings) Translated using Weblate (Polish) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Latvian) Currently translated at 94.5% (640 of 677 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 24.5% (13 of 53 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Polish) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Turkish) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Czech) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (German) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Sardinian) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Galician) Currently translated at 91.5% (620 of 677 strings) Translated using Weblate (Arabic) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Arabic) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Russian) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (French) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Greek) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Bengali (Bangladesh)) Currently translated at 59.6% (404 of 677 strings) Translated using Weblate (Somali) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 97.1% (658 of 677 strings) Translated using Weblate (Lithuanian) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Hebrew) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Polish) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Indonesian) Currently translated at 99.8% (676 of 677 strings) Translated using Weblate (Greek) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Italian) Currently translated at 100.0% (677 of 677 strings) Translated using Weblate (Russian) Currently translated at 99.8% (676 of 677 strings) Translated using Weblate (French) Currently translated at 99.8% (676 of 677 strings) Translated using Weblate (Romanian) Currently translated at 93.0% (626 of 673 strings) Translated using Weblate (Kurdish (Central)) Currently translated at 3.7% (2 of 53 strings) Translated using Weblate (Kurdish (Central)) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Kurdish (Central)) Currently translated at 90.3% (608 of 673 strings) Translated using Weblate (Hebrew) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Arabic) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Kurdish (Central)) Currently translated at 87.9% (592 of 673 strings) Translated using Weblate (Lithuanian) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Polish) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Greek) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Russian) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (French) Currently translated at 100.0% (673 of 673 strings) Translated using Weblate (Somali) Currently translated at 100.0% (672 of 672 strings) Translated using Weblate (Albanian) Currently translated at 100.0% (672 of 672 strings) Translated using Weblate (Polish) Currently translated at 100.0% (672 of 672 strings) Translated using Weblate (Polish) Currently translated at 100.0% (672 of 672 strings) Translated using Weblate (Polish) Currently translated at 100.0% (672 of 672 strings) Translated using Weblate (Polish) Currently translated at 100.0% (672 of 672 strings) Translated using Weblate (Bulgarian) Currently translated at 1.8% (1 of 53 strings) Translated using Weblate (Bulgarian) Currently translated at 57.8% (389 of 672 strings) Translated using Weblate (Bulgarian) Currently translated at 57.8% (389 of 672 strings) Translated using Weblate (Bulgarian) Currently translated at 57.8% (389 of 672 strings) Translated using Weblate (Polish) Currently translated at 100.0% (672 of 672 strings) Translated using Weblate (Bulgarian) Currently translated at 57.4% (386 of 672 strings) Translated using Weblate (Bulgarian) Currently translated at 57.4% (386 of 672 strings) Translated using Weblate (Polish) Currently translated at 100.0% (672 of 672 strings) Translated using Weblate (Gujarati) Currently translated at 15.3% (103 of 672 strings) Translated using Weblate (Hindi) Currently translated at 81.6% (549 of 672 strings) Translated using Weblate (Polish) Currently translated at 100.0% (672 of 672 strings) Added translation using Weblate (Gujarati) Co-authored-by: Agnieszka C <aga_04@o2.pl> Co-authored-by: AioiLight <info@aioilight.space> Co-authored-by: Ajeje Brazorf <lmelonimamo@yahoo.it> Co-authored-by: Allan Nordhøy <epost@anotheragency.no> Co-authored-by: Andrij Mizyk <andmizyk@gmail.com> Co-authored-by: AntonAkovP <anton.akov@gmail.com> Co-authored-by: Anxhelo Lushka <anxhelo1995@gmail.com> Co-authored-by: Ashune <ashune@protonmail.com> Co-authored-by: Blaise Pascal <blaisepcl00@gmail.com> Co-authored-by: ButterflyOfFire <ButterflyOfFire@protonmail.com> Co-authored-by: Cerins <cerins4141@gmail.com> Co-authored-by: Christian Draxl <draxl.koever@gmail.com> Co-authored-by: Christian Eichert <c@zp1.net> Co-authored-by: Danial Behzadi <dani.behzi@ubuntu.com> Co-authored-by: Deleted User <noreply+34051@weblate.org> Co-authored-by: Eduardo Caron <eduardocaron10@gmail.com> Co-authored-by: Emin Tufan Çetin <etcetin@gmail.com> Co-authored-by: Eric <spice2wolf@gmail.com> Co-authored-by: Evo <weblate@verahawk.com> Co-authored-by: Garden Hose <maxmammath@gmail.com> Co-authored-by: Gediminas Murauskas <muziejusinfo@gmail.com> Co-authored-by: GnuPGを使うべきだ <dieeeazpnnqbpddh@cock.email> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Igor Nedoboy <i.nedoboy@mail.ru> Co-authored-by: Ihor Hordiichuk <igor_ck@outlook.com> Co-authored-by: Isak Holmström <isak@kajko.se> Co-authored-by: J. Lavoie <j.lavoie@net-c.ca> Co-authored-by: JY3 <GeeyunJY3@gmail.com> Co-authored-by: Jeff Huang <s8321414@gmail.com> Co-authored-by: Jesus Cass <cjesusenrique1@gmail.com> Co-authored-by: Joel A <joeax910@student.liu.se> Co-authored-by: Jonatan Nyberg <jonatan@autistici.org> Co-authored-by: Kaantaja <ufdbvgoljrjkrkyyub@ianvvn.com> Co-authored-by: Kristjan Räts <kristjanrats@gmail.com> Co-authored-by: Laszlo Almasi <almalaci@posteo.net> Co-authored-by: Ldm Public <ldmpub@gmail.com> Co-authored-by: Martin Constantino–Bodin <martin.bodin@ens-lyon.org> Co-authored-by: Matyas-Cerny <matyas.c.404@gmail.com> Co-authored-by: MohammedSR Vevo <mohammednajmidin@gmail.com> Co-authored-by: Nadir Nour <dudethatwascool2@gmail.com> Co-authored-by: Nikita Epifanov <nikgreens@protonmail.com> Co-authored-by: Ordtrogen Översättning <johan@ordtrogen.se> Co-authored-by: Rahul Dev Sharma <sci94tune@gmail.com> Co-authored-by: Rex_sa <rex.sa@pm.me> Co-authored-by: Ricardo <contatorms7@tutamail.com> Co-authored-by: S3aBreeze <paperwork@evilcorp.ltd> Co-authored-by: Saravanan Selvaraju <saravanan036@outlook.com> Co-authored-by: Sergio Varela <sergitroll9@gmail.com> Co-authored-by: SomeRetardedThatTranslatesStuff <the.eumitosis@simplelogin.fr> Co-authored-by: Thiago Carmona Monteiro <Guarakami1807@protonmail.ch> Co-authored-by: TiA4f8R <avdivers84@gmail.com> Co-authored-by: TobiGr <tobigr@mail.de> Co-authored-by: ToldYouThat <itoldyouthat@protonmail.com> Co-authored-by: Vasilis K <skyhirules@gmail.com> Co-authored-by: VfBFan <drop0815@posteo.de> Co-authored-by: WB <web0nst@tuta.io> Co-authored-by: WaldiS <sto@tutanota.de> Co-authored-by: Yaron Shahrabani <sh.yaron@gmail.com> Co-authored-by: bomzhellino <adm.bomzh@gmail.com> Co-authored-by: brokenPipe <ythunar@btcminers.tk> Co-authored-by: bruh <quangtrung02hn16@gmail.com> Co-authored-by: chr56 <chr0056@gmail.com> Co-authored-by: michaloM <michalsvoboda2004@gmail.com> Co-authored-by: nautilusx <translate@disroot.org> Co-authored-by: nzgha <nzghafoss.ldxwe@slmail.me> Co-authored-by: nzgha <osmshrn21.upogs@slmail.me> Co-authored-by: pjammo <adrianoghr@hotmail.it> Co-authored-by: random r <epsilin@yopmail.com> Co-authored-by: ssantos <ssantos@web.de> Co-authored-by: thami simo <simo.azad@gmail.com> Co-authored-by: translator <yasinoc375@advew.com> Co-authored-by: zeritti <woodenmo@posteo.de> Co-authored-by: zmni <zmni@outlook.com> Co-authored-by: Ács Zoltán <acszoltan111@gmail.com> Co-authored-by: Ákos Surányi <akosuranyi@tutanota.com> Co-authored-by: Андрей Станков <astankov84@gmail.com> Co-authored-by: мачко <martinpeev@tutanota.com> Co-authored-by: 정주찬 <ju1801@outlook.com> Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/bg/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/ckb/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/es/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/fi/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/fr/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/he/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pl/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pt/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pt_BR/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/pt_PT/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/sv/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/uk/ Translate-URL: https://hosted.weblate.org/projects/newpipe/metadata/zh_Hans/ Translation: NewPipe/Metadata
Configuration menu - View commit details
-
Copy full SHA for 4e15f0d - Browse repository at this point
Copy the full SHA 4e15f0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 82fbbbe - Browse repository at this point
Copy the full SHA 82fbbbeView commit details -
Configuration menu - View commit details
-
Copy full SHA for d1ce8e7 - Browse repository at this point
Copy the full SHA d1ce8e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for ccc2d89 - Browse repository at this point
Copy the full SHA ccc2d89View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8715e7d - Browse repository at this point
Copy the full SHA 8715e7dView commit details