Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-13 | Update GitHub CI actions (#5216) | Taco | |
2021-06-05 | Merge pull request #5175 from ByteHamster/format-xml | ByteHamster | |
Add CI check that enforces layout xml file formatting | |||
2021-06-05 | Added CI check for xml formatting | ByteHamster | |
2021-06-05 | Merge pull request #5209 from ByteHamster/wait-for-new | ByteHamster | |
Let test wait until database operation is completed | |||
2021-06-05 | Merge pull request #5190 from ByteHamster/shownotes-font | ByteHamster | |
Removed explicit font specification from shownotes | |||
2021-06-05 | Let test wait until database operation is completed | ByteHamster | |
2021-06-05 | Add a unit test under DbWriterTest.java (#5181) | Mengshi24 | |
2021-06-05 | Removed explicit font specification from shownotes | ByteHamster | |
2021-06-05 | Merge pull request #5196 from jhenninger/fix-stuck-swipe-refresh-layout | ByteHamster | |
Fix stuck swipe refresh indicator | |||
2021-05-31 | Fix stuck swipe refresh indicator | Johannes Henninger | |
ViewPager2 does not play nice with SwipeRefreshLayout if the wrapped RecyclerView is hidden. This commit removes the show/hide logic from EmptyViewHandler, so that the RecyclerView is always displayed, even when empty. This prevents you from swiping left/right while pulling down the swipe refresh indicator. Fixes #5132 | |||
2021-05-29 | Merge pull request #5165 from thrillfall/sync-position-on-pause | ByteHamster | |
sync paused position on playback pause | |||
2021-05-29 | Added new test case for FeedItemUtil.java to test getIds() method (#5182) | Matthew Choi | |
2021-05-29 | Making the "(i) Filtered" more visible (#5170) | Farzan | |
2021-05-29 | Add new test for Download Request equals (#5183) | gregoryjtom | |
2021-05-22 | Merge branch 'master' into develop | ByteHamster | |
2021-05-22 | Add functionality to Podcast/Episode Textviews in CoverFragment (#5074) | ueen | |
2021-05-17 | sync paused position on playback pause | thrillfall | |
2021-05-15 | Merge pull request #5162 from ByteHamster/remove-audio-only-code | ByteHamster | |
VideoPlayer rework | |||
2021-05-14 | Clean up some lint errors | ByteHamster | |
2021-05-14 | Switched video player to ViewBinding | ByteHamster | |
2021-05-14 | Remove unneccessary method call chaining | ByteHamster | |
2021-05-14 | Moved all code from MediaPlayerActivity to VideoPlayerActivity | ByteHamster | |
2021-05-14 | Removed code from MediaPlayerActivity that only affects the audio player | ByteHamster | |
2021-05-14 | Fixed build error because of incompatible merge | ByteHamster | |
2021-05-14 | Merge pull request #5161 from ByteHamster/reduce-playback-controller | ByteHamster | |
Remove some unnecessary code from playback controller | |||
2021-05-14 | New media player screen (#5075) | ueen | |
Co-authored-by: jonasburian <jonas.burian@protonmail.com> Co-authored-by: ByteHamster <info@bytehamster.com> | |||
2021-05-14 | Just assume we can always set the playback speed | ByteHamster | |
Our default ExoPlayer can always set the speed. All Android versions >23 also support it. So of the 2% of users with old devices, this only affects the ones who manually selected another player. | |||
2021-05-14 | Removed method that is just used in one place | ByteHamster | |
2021-05-14 | Use EventBus instead of broadcast for service shutdown | ByteHamster | |
2021-05-13 | Bumped version to 2.2.12.2.1 | ByteHamster | |
2021-05-13 | Merge pull request #5160 from ByteHamster/disable-id3 | ByteHamster | |
Disable ExoPlayer id3 extraction | |||
2021-05-13 | Merge pull request #5156 from ByteHamster/common-gradle | ByteHamster | |
Move common gradle setup to a single file | |||
2021-05-13 | Disable ExoPlayer id3 extraction | ByteHamster | |
Malformed audio files can cause a crash in ExoPlayer. We have our own id3 extractor and don't use the data of ExoPlayer, so we can just disable parsing in ExoPlayer. This reduces the number locations where something can go wrong that prevents playback. | |||
2021-05-11 | Move common gradle setup to a single file | ByteHamster | |
Original idea by @TacoTheDank | |||
2021-05-10 | Merge pull request #5151 from ByteHamster/fix-proxy | ByteHamster | |
Fixed proxy support | |||
2021-05-10 | Fixed proxy support | ByteHamster | |
2021-05-09 | Fix chapter seekbar issues (#5142) | Jonas Burian | |
Buffering indicator drawn incorrectly Not refreshing divider positions with duration change | |||
2021-05-08 | Updated translations | ByteHamster | |
2021-05-08 | Merge pull request #5149 from ByteHamster/fix-npe | ByteHamster | |
Fixed NPE in ExternalPlayerFragment | |||
2021-05-08 | Fixed NPE in ExternalPlayerFragment | ByteHamster | |
2021-05-08 | Merge pull request #5146 from ByteHamster/future-date | ByteHamster | |
Refuse to show future dates | |||
2021-05-06 | Refuse to show future dates | ByteHamster | |
Some shows start to specify dates from the future to appear on top of episode lists. If we find one of those episodes, just ignore that it is there. We then use the date when we first found the item. | |||
2021-05-02 | Merge pull request #5141 from jonasburian/fix-jumping-thumb | ByteHamster | |
Jumping thumb while seeking | |||
2021-05-02 | Fix jumping thumb | jonasburian | |
2021-05-02 | Merge pull request #5140 from ByteHamster/dont-mark-played | ByteHamster | |
Don't mark episodes as played when removing from queue | |||
2021-05-01 | Merge pull request #5139 from ByteHamster/folder-auto-create | ByteHamster | |
Automatically add tag when pressing OK | |||
2021-05-01 | Merge pull request #5138 from ByteHamster/fix-wrong-media | ByteHamster | |
Fix miniplayer sometimes showing old media file | |||
2021-05-01 | Don't mark episodes as played when removing from queue | ByteHamster | |
Was introduced in 67d2287323260e0bcbfcd644a33da5402c29b383 but I am not sure why. It is not really logical to do - removing from the queue just means that one is no longer interested in the episode - not that it was actually played. | |||
2021-05-01 | Automatically add tag when pressing OK | ByteHamster | |
2021-05-01 | Fix miniplayer sometimes showing old media file | ByteHamster | |
Happens when pressing play on another episode without pausing the previous one. |