summaryrefslogtreecommitdiff
path: root/app
AgeCommit message (Collapse)Author
2018-04-05Even use expired cache if there is no networkByteHamster
Closes #2260
2018-04-03Merge pull request #2607 from ByteHamster/content-encodedMartin Fietz
Fixes empty contentEncoded
2018-04-02Clarified test casesByteHamster
2018-04-02Merge remote-tracking branch 'upstream/develop' into layout-improvementsByteHamster
2018-04-02Extracted color resourceByteHamster
2018-04-01Merge pull request #2598 from orionlee/upgrade_android_gradle_plugin_v3Martin Fietz
Upgrade android gradle plugin v3
2018-03-23Added unit test for shownotesByteHamster
2018-03-16Only write queue order to database on drag release for the podcast queue.Matthew Gaffen
This prevents large numbers of db writes in quick succession. This is a particular problem for large queue lengths. Fixes #2562 and potentially fixed #2573
2018-03-13dependencies: replace deprecated compile with implementation / apiorionlee
2018-03-13Upgrade to Android Gradle Plugin v3.0.1 - bare minimal to get it built, ↵orionlee
ignoring depercation warnings Details: - upgraded buildtools to the latest (minimum 26.0.2 required) - retired retrolambda - added flavorDimensions (v3 requirement) - Migrate dependency configurations for local modules (:core) - Declaration of resources update in styles.xml (AAPT2 requirement) - upgraded plugin github play-publisher to v1.2.0
2018-02-20Revert "Set background of playerFragment to same color as toolbar"ByteHamster
This reverts commit 2f6c9c49f81ddb735d5241026ee661a3a88b0cd2.
2018-02-14Make feed title selectableByteHamster
2018-02-13Darken background of feed headerByteHamster
This change only applies to feed items using transparent backgrounds. The item is darkened but the background keeps transparent, which looks weird, especially in light theme (have a look at the 34C3 feed)
2018-02-13Set background of playerFragment to same color as toolbarByteHamster
Most noticeable in dark theme
2018-02-13Removed useless nested layoutByteHamster
2018-02-05Do not flicker when pressing back arrowByteHamster
2018-02-05Make player selectableByteHamster
2018-01-28Fix for #2555 - can't open Preferences activity when there are stored WiFi ↵Oliver Crow
connections with null SSID.
2018-01-22Prepare for 1.6.4.51.6.4.5Martin Fietz
2018-01-21Change back to old implementationMartin Fietz
2018-01-21Use temporary StringBuilder for string concatenation in loopMartin Fietz
2018-01-21Revert "Use StringBuilder for string concatenation in loop"Martin Fietz
This reverts commit 919ee63c3c2cc68ca4a3d63b6f314f472f2e6e78.
2018-01-21Add missing spacesMartin Fietz
2018-01-21Minor refactoringsMartin Fietz
2018-01-21Merge branch 'develop' into refactorMartin Fietz
# Conflicts: # app/src/main/java/de/danoeh/antennapod/activity/MediaplayerInfoActivity.java # core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadService.java
2018-01-21Merge pull request #2445 from ByteHamster/exportMartin Fietz
Database import/export
2018-01-21Merge pull request #2543 from gaul/static-finalMartin Fietz
Make some static fields final
2018-01-20Make some static fields finalAndrew Gaul
Adding final prohibits modification and allows initialization of primitive and String fields at compile time instead of runtime in clinit: https://developer.android.com/training/articles/perf-tips.html#UseFinal Found via error-prone.
2018-01-20Make some inner classes staticAndrew Gaul
This avoids an implicit this field and can help GC. Found via error-prone.
2018-01-14Variable cannot be finalMartin Fietz
2018-01-14Remove catch for exception that is never thrownMartin Fietz
2018-01-14Merge folder configurationMartin Fietz
2018-01-14Remove unnecessary interface modifiersMartin Fietz
2018-01-14static modifier is redundant for inner enumsMartin Fietz
2018-01-14Remove redundant throws clausesMartin Fietz
2018-01-14Add final modifiersMartin Fietz
2018-01-14Weaken declaration accessMartin Fietz
2018-01-14Use bulk operation instead of iterationMartin Fietz
2018-01-14Use StringBuilder for string concatenation in loopMartin Fietz
2018-01-14Remove redundant call to 'String.format()'Martin Fietz
2018-01-14Remove redundant calls to toString()Martin Fietz
2018-01-14Replace single-argument 'Arrays.asList()' with 'Collections.singletonList()'Martin Fietz
2018-01-14Synchronization field must be finalMartin Fietz
2018-01-14Collapse empty tagMartin Fietz
2018-01-14Remove unused importsMartin Fietz
2018-01-14Replace for loop with foreachMartin Fietz
2018-01-14Replace explicit type with <>Martin Fietz
2018-01-14Replace statement lambda with expression lambdaMartin Fietz
2018-01-14Replace lambda with method referenceMartin Fietz
2018-01-14Replace anonymous type with lambdaMartin Fietz