summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-02-02Bump version to 3.0.0-beta5ByteHamster
2023-02-02Update list of supported website languagesByteHamster
2023-02-02Fix when playback is started from MediaSessionCompat.Callback (#6295)ByteHamster
In that case: - The service does not go through onStartCommand, so it does not go to foreground state. - The media session is already destroyed. Now, create a new media session and definitely start foreground service when something is playing.
2023-02-02Use nicer animation when sliding up player (#6301)ByteHamster
2023-01-29Bump version to 3.0.0-beta4ByteHamster
2023-01-29Don't stop service between episodes (#6293)ByteHamster
2023-01-29Avoid icons leaking below the miniplayer (#6292)ByteHamster
2023-01-28Reduce padding of horizontal home sections to better align them with the ↵ByteHamster
titles (#6290)
2023-01-28Use rasterized icon on splash (#6287)ByteHamster
2023-01-27Work around Android's AlertDialog pushing out buttons when content gets ↵ByteHamster
large (#6282)
2023-01-27Make description of tinted theme more clear (#6283)ByteHamster
2023-01-18Pull translations again to fix problem with Turkish stringByteHamster
2023-01-17Bump version to 3.0.0-beta3ByteHamster
2023-01-17Update translationsByteHamster
2023-01-17Update contributors listByteHamster
2023-01-14Synchronisation label changes (#6213)Keunes
2023-01-13Merge pull request #6265 from ByteHamster/fix_duplicate_nameByteHamster
Fix downloads when feeds with same name have items with the same name
2023-01-13Merge pull request #6264 from ByteHamster/onlinefeed_backgroundByteHamster
Make dark background of preview more consistent
2023-01-13Merge pull request #6263 from ByteHamster/screen-insetsByteHamster
Use exactly those insets that we mark as consumed
2023-01-13Branding upgrade (#6146)ByteHamster
2023-01-08Fix downloads when feeds with same name have items with the same nameByteHamster
2023-01-08Make dark background of preview more consistentByteHamster
2023-01-08Use exactly those insets that we mark as consumedByteHamster
2023-01-01Possibility to remove a single episode from playback history (#6184)Vishnu Sanal T
2022-12-30Prevent rating dialog from showing on debug variant (#6255)Vishnu Sanal T
2022-12-24Refresh Feed after Credentials Change (#6236)Patrick Demers
2022-12-20Bump version to 3.0.0-beta2ByteHamster
2022-12-20Merge pull request #6247 from ByteHamster/rewrite-audio-focusByteHamster
Rework audio focus handling
2022-12-18Rework audio focus handlingByteHamster
Instead of pausing the entire service, only pause media playback without telling the service. This has the following advantages: - It's faster - The position does not change (because it does not need to seek) - We can definitely resume (because we still have a foreground service) Especially the last point is important on Android 12, where we couldn't restart after an interruption because the service cannot be started.
2022-12-18Merge pull request #6246 from ByteHamster/revert-loading-dummyByteHamster
Revert back to showing progress bars while loading
2022-12-18Revert back to showing progress bars while loadingByteHamster
Dummies are slower on some devices, even when disabling their animations.
2022-12-18Merge pull request #6237 from ByteHamster/tinted-themeByteHamster
Add support for Material You tinted theme
2022-12-18Merge pull request #6240 from ByteHamster/multi-selectByteHamster
Multi-select using background instead of checkbox
2022-12-18Merge pull request #6239 from ByteHamster/select-countryByteHamster
Rename 'country' to 'select country'
2022-12-18Remove support for Android 4.4ByteHamster
2022-12-17Multi-select using background instead of checkboxByteHamster
2022-12-17Add support for Material You tinted themeByteHamster
2022-12-17Rename 'country' to 'select country'ByteHamster
2022-12-17Merge pull request #6223 from ByteHamster/material-dialogsByteHamster
Migrate ListPreference to Material Design 3
2022-12-16Disable duration text box when checkbox is offByteHamster
2022-12-16Migrate ListPreference to Material Design 3ByteHamster
2022-12-11Do not animate dummy views (#6231)ByteHamster
2022-12-11Merge pull request #6232 from ByteHamster/remove-end-iconByteHamster
Remove non-functional end icon of country selector
2022-12-11Merge pull request #6230 from ByteHamster/home-tweaks2ByteHamster
Make layout of home sections more clean and easy
2022-12-11Merge pull request #6215 from ByteHamster/fix-crash-android-9ByteHamster
Fix dummy list items crashing Android 9
2022-12-11Merge pull request #6217 from ByteHamster/nextcloud-punnycodeByteHamster
Convert nextcloud domains to Punycode
2022-12-11Merge pull request #6218 from ByteHamster/show-skipByteHamster
Show skip button even if 'continuous playback' is disabled
2022-12-11Remove non-functional end icon of country selectorByteHamster
2022-12-11Make layout of home sections more clean and easyByteHamster
2022-12-04Show skip button even if 'continuous playback' is disabledByteHamster
It can still be used to skip the rest of an episode and load the next one into the notification/miniplayer. There is no reason to hide the button and instead show no button at all.