summaryrefslogtreecommitdiff
path: root/net/download
AgeCommit message (Collapse)Author
2024-04-09Don't allow downloading already downloaded episdoes again (#7076)ByteHamster
2024-04-07CI tweaks (#7069)ByteHamster
- Run Checkstyle with gradle to make it easier for users - No longer needs different configuration for new code - Exclude current violations - Fix some violations that somehow couldn't be specified in the exclusion file - Print SpotBugs/Lint/Checkstly violations in GitHub format - Then the CI run gets annotated on the web UI
2024-04-05Merge :net:sync:model and :net:sync:service-interface (#7063)ByteHamster
2024-04-05Delete core module (#7060)ByteHamster
2024-04-04Move some tests from core module to their respective module (#7059)ByteHamster
2024-04-04Remove methods from DbReader that just call a private method (#7057)ByteHamster
2024-03-31Restructure related UI classes together (#7044)ByteHamster
2024-03-29Move playback service to module (#7042)ByteHamster
2024-03-29Move download service to module (#7041)ByteHamster
2024-03-29Create module for sync service and move DBWriter to database module (#7040)ByteHamster
2024-03-23Rename FeedMedia methods to no longer have underscores (#7017)ByteHamster
2024-03-17Remove dependency from :ui:glide to :core module (#6998)ByteHamster
2024-03-02Remove FeedComponent and FeedFile class (#6949)ByteHamster
We want to be more flexible in what we store for each type of item. Also rename misleading function (lastUpdate to lastModified)
2023-11-05Merge branch 'master' into developByteHamster
2023-10-17Bump AGP and Gradle (#6489)Taco
2023-09-24Fix file deletion and queueing after download (#6652)ByteHamster
WorkManager does not tell us whether it was cancelled by the user (not retried) or by the system (retried later). So we need to delete the file and remove from queue when we know that it was actually the user. Also make sure to always delete the file when the download fails. Also, don't show "will retry" message on last retry attempt.
2023-07-15Delete partially downloaded file when giving up to retry (#6530)ByteHamster
2023-05-05Download Service Rewrite (#6420)ByteHamster
2023-04-01Update AGP to 7.4.0 (#5655)Taco
2023-03-14Move feed download to worker (#6375)ByteHamster
Feed downloads are now independent from episode downloads. This makes it easier to use WorkManager for refreshing. Also, it will make it easier to add different refresh intervals in the future.
2023-02-20Add retry button to download failed notifications (#6333)ByteHamster
2022-11-06Move DownloadService-Interface to new moduleByteHamster