summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/adapter/gpodnet
AgeCommit message (Collapse)Author
2020-03-30Uncoupled AntennaPod from specific GpodnetSyncServiceByteHamster
2020-03-25Round icons in search listByteHamster
2020-03-18Show artistName in place of podcast url when it is available (#3762)Tony Tam
2018-10-21Merge branch 'develop' into glide-48H. Lehmann
2018-10-21Remove redundant type castsegsavage
2018-10-14Upgraded Glide to version 4.8.0ByteHamster
2016-03-22code cleaning:Domingos Lopes
- lambda expressions, method references, - multi catches, - remove unnecessary keywords (public keyword on interface method signatures, static on interfaces or enums, final on private method signatures), - == false expressions, - diamond type (<>) expressions, - replace StringBuffer with StringBuilder for local variables used by a single thread, - replace Arrays.asList with Collections.singletonList whenever applicable, - inline variable returns (whenever the variable name's meaning is not important to understand the code), - replace some chains of if/else if/... with switch/case, - break append(a + b) into append(a).append(b) for StringBuilder objects, - unused import statements, - reduce log TAGs to 23 characters, - MaterialDialog callback deprecated, - ActionBarActivity for AppCompatActivity,
2015-08-08Cache all images (should reduce lag displaying lists of episodes)Tom Hennen
Cache strategy is now set in ApGlideSettings and referenced everywhere else from there.
2015-07-29Replace Picasso with GlideMartin Fietz
2015-03-17Gpodder categories shows title instead of tag and additionally the usageMartin Fietz
2015-03-16Gpodder search shows feed url and number of subscribersMartin Fietz
2014-11-15Use isNotBlank instead of isNoneBlankdaniel oeh
Causes NoSuchMethodError on some devices
2014-11-10Updated picasso librarydaniel oeh
Use RequestHandler instead of Downloader for extracting bitmaps from media files
2014-11-05Updated layoutsdaniel oeh
Use new navigation drawer toggle Customized colors of new themes Updated navigation drawer layout Updated "new episodes list" layout Updated feeditemlist layout Fixed refresh button behavior in feeditemlist Updated downloads fragment layout Fixed layouts on smaller screens, updated borderless buttons Use PreferenceFragment instead of PreferenceActivity if possible Changes of the Preference UI should now be made in the PreferenceController class. Replaced vertical_divider with android:attr/listDivider Updated itemlist layout in onlinefeedview Fixed NPE in TagFragment Updated gpodnet list layout Updated search layout Adjusted background color of external player Added material design icons Adjusted primary dark color
2014-10-24Merge branch 'migration' into developdaniel oeh
Non-GUI classes have been moved into the 'core' project in order to allow AntennaPod SP to reference it as a subproject. Conflicts: app/src/main/AndroidManifest.xml build.gradle core/src/main/java/de/danoeh/antennapod/core/service/playback/PlaybackService.java core/src/main/java/de/danoeh/antennapod/core/syndication/namespace/NSSimpleChapters.java core/src/main/java/de/danoeh/antennapod/core/util/ChapterUtils.java gradle/wrapper/gradle-wrapper.properties pom.xml
2014-09-19Moved non-gui classes to 'core' packagedaniel oeh
2014-09-17Changed project structuredaniel oeh
Switched from custom layout to standard gradle project structure