summaryrefslogtreecommitdiff
path: root/app/src
AgeCommit message (Collapse)Author
2020-02-02Enforce MethodParamPadByteHamster
2020-02-02Merge pull request #3817 from ByteHamster/viewpagerH. Lehmann
Added Viewpager indicator that shows if chapters are present
2020-02-02Added OnClickListener to pager indicatorByteHamster
2020-02-02Added ViewPager indicator that shows chapter availabilityByteHamster
2020-02-02Merge pull request #3814 from ByteHamster/clean-up-statisticsH. Lehmann
Clean up statistics
2020-02-01Removed unused codeByteHamster
2020-02-01Clean up statisticsByteHamster
Removed unused `StatisticsData` wrapper class and extracted `StatisticsItem` to new class
2020-02-01Merge pull request #3813 from ByteHamster/shownotes-webviewH. Lehmann
ShownotesWebView improvements
2020-02-01Always allow clicking timecodesByteHamster
2020-02-01Reduced code duplicationByteHamster
2020-02-01Merge pull request #3811 from ByteHamster/sleep-timer-uiH. Lehmann
Updated sleep timer UI
2020-02-01Updated sleep timer UIByteHamster
2020-01-29Removed unnecessary base activityByteHamster
2020-01-29Removed OPML import activity with only one buttonByteHamster
2020-01-29CleanupByteHamster
2020-01-29Moved database import/export to settingsByteHamster
2020-01-29Added summariesByteHamster
2020-01-29Split import/export and storage preferencesByteHamster
2020-01-27Updated html export designByteHamster
2020-01-26Merge pull request #3248 from maxbechtold/feat/simple-adjust-volume-per-feedH. Lehmann
Feat/simple adjust volume per feed
2020-01-25Converted to EventBus instead of broadcastByteHamster
2020-01-25Merge pull request #3780 from ByteHamster/unlink-speed-settingsH. Lehmann
Do not link playback speed settings
2020-01-25Do not link playback speed settingsByteHamster
Users are confused that the slider does not have all speed options anymore This basically reverts 6a56260
2020-01-20Merge pull request #3773 from ByteHamster/fix-cover-loaderH. Lehmann
Fix weird behavior in CoverLoader
2020-01-20Merge pull request #3690 from ByteHamster/more-forgiving-duplicate-detectionH. Lehmann
More forgiving duplicate detection
2020-01-20Fix weird behavior in CoverLoaderByteHamster
If you had an episode in the queue without a cover, it first showed the placeholder text. After scrolling, the placeholder text was hidden and then there was just nothing at all. This was inconsistent and confusing. Now, always shows the placeholder (while loading and on error), making sure to update visibility.
2020-01-20More forgiving duplicate detectionByteHamster
2020-01-12Added colorful dots to statisticsByteHamster
2020-01-12Merge pull request #3523 from wseemann/developH. Lehmann
Show storage size of downloaded episodes
2020-01-12Show storage size of downloaded episodesWilliam Seemann
2020-01-11Merge pull request #3743 from txtd/mark-as-playedH. Lehmann
Show "mark as read" rather than "mark as play" in case item has no media
2020-01-11Make sure episode contain media before adding them to queuetxtd
2020-01-11Show mark as read rather than mark as played in case item has no mediatxtd
2020-01-09Add summary to main settings/preferences screen (#3745)Tony Tam
2020-01-09Merge pull request #3711 from ByteHamster/load-more-new-episodesH. Lehmann
Added paged loading to 'new episodes' list
2020-01-09Merge pull request #3719 from ByteHamster/removed-unused-codeH. Lehmann
Removed unused code
2020-01-09Added paged loading to 'new episodes' listByteHamster
2020-01-09Merge pull request #3720 from ByteHamster/do-not-allocate-arraysH. Lehmann
Do not allocate space for arrays that do not need to be allocated
2020-01-09Merge pull request #3715 from ByteHamster/speed-up-searchH. Lehmann
Increased search performance
2020-01-09Merge branch 'develop' into do-not-allocate-arraysH. Lehmann
2020-01-09Merge pull request #3714 from ByteHamster/add-progress-bar-to-searchH. Lehmann
Added progress bar to episode search
2020-01-07Cleanup codetxtd
2020-01-07Use replaceFirst() rather than replaceAll() when parsing subscribe on ↵txtd
android URLs
2020-01-07Properly parse subscribeonandroid.com URLs when subscribing to a feedtxtd
2020-01-07Add intent filters for subscribeonandroid.com to manifesttxtd
2020-01-07Make episode filter persistentByteHamster
2020-01-05Display size of toDownload in snackback instead of checkedIds so that size ↵txtd
matches the actual number of episodes being downloaded
2020-01-05Check if an episode has media before adding it to download batchtxtd
2020-01-05Merge pull request #3729 from ByteHamster/try-fix-crashH. Lehmann
Try to fix ArrayIndexOutOfBoundsException
2020-01-04Try to fix ArrayIndexOutOfBoundsExceptionByteHamster
We sometimes get an ArrayIndexOutOfBoundsException when trying to create the ItemPagerFragment. After trying quite a few things already, Google Play still reports the crash. Previous experiments showed that the index is not larger than the array length. Because it is an AIOOB Exception and not a NPE, the array must be created correctly. Maybe it is a negative index. Might be caused by getAdapterPosition() returning NO_POSITION (-1).