diff --git a/USAGE.md b/USAGE.md index b045b9b1..05abee95 100644 --- a/USAGE.md +++ b/USAGE.md @@ -6,6 +6,7 @@ - [Getting Started](#getting-started) - [Server Configuration](#server-configuration) - [Main Features](#main-features) + - [Navigation](#navigation) - [Playback Controls](#playback-controls) - [Favorites](#favorites) @@ -27,6 +28,8 @@ This app works with any service that implements the Subsonic API, including: - [LMS - Lightweight Music Server](https://github.com/epoupon/lms) - *personal fave and my backend* - [Navidrome](https://www.navidrome.org/) - [Gonic](https://github.com/sentriz/gonic) +- [Ampache](https://github.com/ampache/ampache) +- [NextCloud Music](https://apps.nextcloud.com/apps/music) @@ -84,6 +87,17 @@ On the main player control screen, tapping on the artwork will reveal a small co 4. Saves play queue (if the feature is enabled in the settings) * if the setting is not enabled, it toggles a view of the lyrics if available (slides to the right) +### Podcasts +If your server supports it - add a podcast rss feed +

+ +

+ +### Radio Stations +If your server supports it - add a internet radio station feed +

+ +

## Navigation diff --git a/app/src/main/res/layout/fragment_home_tab_podcast.xml b/app/src/main/res/layout/fragment_home_tab_podcast.xml index dd8ed15b..3daf0142 100644 --- a/app/src/main/res/layout/fragment_home_tab_podcast.xml +++ b/app/src/main/res/layout/fragment_home_tab_podcast.xml @@ -20,6 +20,20 @@ android:orientation="vertical" android:paddingBottom="@dimen/global_padding_bottom"> + + - - - + \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_home_tab_radio.xml b/app/src/main/res/layout/fragment_home_tab_radio.xml index 254d537e..3086d06b 100644 --- a/app/src/main/res/layout/fragment_home_tab_radio.xml +++ b/app/src/main/res/layout/fragment_home_tab_radio.xml @@ -1,44 +1,54 @@ + + + + + app:layout_constraintTop_toBottomOf="@id/internet_radio_station_title_text_view"> - - - - + app:layout_constraintTop_toBottomOf="@id/internet_radio_station_title_text_view"> - - - - + \ No newline at end of file diff --git a/mockup/usage/add_podcast_feed.png b/mockup/usage/add_podcast_feed.png new file mode 100644 index 00000000..04c4f627 Binary files /dev/null and b/mockup/usage/add_podcast_feed.png differ diff --git a/mockup/usage/add_radio_station.png b/mockup/usage/add_radio_station.png new file mode 100644 index 00000000..830d3ce1 Binary files /dev/null and b/mockup/usage/add_radio_station.png differ