summaryrefslogtreecommitdiff
path: root/core/src/main
AgeCommit message (Collapse)Author
2021-03-06Fixed download service notification not being updated to 'Stopping service'ByteHamster
2021-03-06Fixed local folders ending up in DownloadServiceByteHamster
2021-03-06Show podcast-specific settings in preferences search (#4990)peakvalleytech
2021-03-05Removed metadata loader from modelByteHamster
2021-03-05Code cleanupByteHamster
2021-03-05Added basic tag editor UIByteHamster
2021-03-05Sort folders to the endByteHamster
2021-03-05Fixed folder ID generationByteHamster
2021-03-05Merge branch 'develop' into foldersByteHamster
2021-03-04Removed ShownotesProvider interfaceByteHamster
2021-03-04Only store content_encoded or descriptionByteHamster
2021-03-04Merge branch 'master' into developByteHamster
2021-03-04Updated translations to avoid Lint errorByteHamster
2021-03-04Make errors on 'add feed' page more prettyByteHamster
2021-03-04Mention ad blockers in certificate error messageByteHamster
2021-03-04Show the name of failing downloads in the notificationByteHamster
2021-03-04Described download errors in more detailByteHamster
2021-03-04Show dedicated error message when an app messes with the networkByteHamster
2021-03-04Formatted with spacesByteHamster
2021-03-03Replace Java-based feed filtering with SQL-basedByteHamster
2021-03-03Removed unused helper classByteHamster
2021-03-03Merge branch 'master' into developByteHamster
2021-03-03Updated translationsByteHamster
2021-03-03Merge pull request #4981 from ByteHamster/remove-optionalByteHamster
Removed our re-implementation of 'Optimal' and used the RxJava equivalent instead
2021-03-01Merge pull request #4983 from ByteHamster/fix-error-message-wrong-sizeByteHamster
Fixed wrong error message
2021-03-01Fixed wrong error messageByteHamster
2021-03-01Removed our re-implementation of 'Optimal' and used the RxJava equivalent ↵ByteHamster
instead
2021-03-01Removed ExternalMediaByteHamster
It was used for "open with" actions, which are no longer supported. We have the local folders feature for that now.
2021-03-01Merge pull request #4978 from ByteHamster/remove-chapter-loader-from-modelByteHamster
Removed chapter loader from model
2021-03-01Fixed crash when notification updater is nullByteHamster
2021-03-01Removed chapter loader from modelByteHamster
2021-03-01Moved SSL providers to new moduleByteHamster
2021-03-01Merge pull request #4963 from a1291762/developByteHamster
Avoid the stuck download notification
2021-03-01Change the message that appears when downloads are finishedLincoln Ramsay
In the event that the notification hangs around, this is a more accurate description of what is happening.
2021-02-28Refactoring: Remove Cursor related code from Feed class (#4968)Herbert Reiter
2021-02-28Avoid stuck download notificationsLincoln Ramsay
Cancel the periodic updater before calling stopForeground so that the notification can't come back after it has been closed. Remove the workaround for API 30 slow notification closing because it can cause a stuck notification. However, in order to avoid misleading text being left on the notification if it closes slowly, ensure that the "0 downloads" text is written to the notification when shutting down. Fixes #4556
2021-02-26Removed DbWriter dependency from modelByteHamster
2021-02-25Refactoring: Move inner classes PlayableUtils and PlayableException out of ↵Herbert Reiter
Playable (#4962)
2021-02-25use full URL for custom gpodder server (#4932)MStrecke
2021-02-24Remove interface ImageResource (#4911)Herbert Reiter
2021-02-23Merge pull request #4950 from ByteHamster/fix-file-not-foundByteHamster
Fixed rare 'file not found' errors when starting playback
2021-02-21Improve FeedItem class documentationHerbert Reiter
2021-02-19Fixed rare 'file not found' errors when starting playbackByteHamster
The `getPlayLastPlayedMediaIntent` method was originally added in 2013 to avoid starting the service without a media file. The bind method should actually never need to start the service in the first place, though.
2021-02-18Fixed typoYaron Shahrabani
Epsiodes->Episodes
2021-02-17Added more id3 parser testsByteHamster
2021-02-17Removed plural form because Transifex only allows 2 forms in EnglishByteHamster
2021-02-16Fixed NPE when loading ogg chaptersByteHamster
2021-02-16Rewrite chapter parser for testabilityByteHamster
2021-02-16Merge pull request #4940 from ByteHamster/more-reliable-chaptersByteHamster
More reliable chapter loading
2021-02-15Fix parsing chapters with multiple null bytesByteHamster
Previously, we relied on the string to fill the complete frame. Some podcasts terminate the string early and leave some garbage in the frame data. Skip that garbage, so that the reader is at a valid frame header position when starting the next iteration.