diff --git a/app/src/main/assets/changelog.html b/app/src/main/assets/changelog.html
index db61ef8d..22298fe2 100644
--- a/app/src/main/assets/changelog.html
+++ b/app/src/main/assets/changelog.html
@@ -28,7 +28,11 @@
Version 0.9.44 beta6
+ - FIX: Even though the Last.fm app and web page say something is scrobbling, the
+ scrobble doesn't actually get saved at the end. Thanks to Tim Malseed for that.
+
- FIX: Fixed the plural typo in the artist list.
+ - FIX: Toolbar had no shadow in the playlist view.
Version 0.9.44 beta5
@@ -38,8 +42,8 @@
FIX: Song detail dialog padding.
FIX: Sleep timer dialog retains its current time on rotate.
IMPROVEMENT: No longer "consume" purchases. This means that your donations are saved
- from now on. I made this, so that just in case I make a paid version onetime in future, I
- know who has already donated before so I can unlock the paid version for them.
+ from now on. I made this, so that just in case I make a paid version onetime in future, I
+ know who has already donated before so I can unlock the paid version for them.
@@ -67,8 +71,8 @@
- - IMPROVEMENT: Completely rewritten color chooser. Had great help from Aidan Follestad here once again.
+
- IMPROVEMENT: Completely rewritten color chooser. Had great help from Aidan Follestad here once again.
- IMPROVEMENT: Increased album cover quality when selecting the "ignore media store
covers" option.
@@ -79,10 +83,8 @@
- FIX: Favorites playlist heart icon not showing up when initially added until restart.
- - FIX: Hopefully fixed the bug where the alternative progress slider always stayed
- black on some devices. Please report if the bug is fixed at the Google+
- Community.
+
- FIX: Fixed the bug where the alternative progress slider always stayed
+ black on some devices.
diff --git a/app/src/main/java/com/kabouzeid/gramophone/service/MusicService.java b/app/src/main/java/com/kabouzeid/gramophone/service/MusicService.java
index bc4f635f..8df6cd85 100644
--- a/app/src/main/java/com/kabouzeid/gramophone/service/MusicService.java
+++ b/app/src/main/java/com/kabouzeid/gramophone/service/MusicService.java
@@ -822,6 +822,7 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
internalIntent.putExtra("artist", currentSong.artistName);
internalIntent.putExtra("album", currentSong.albumName);
internalIntent.putExtra("track", currentSong.title);
+ internalIntent.putExtra("duration", currentSong.duration);
}
internalIntent.putExtra("playing", isPlaying());
sendStickyBroadcast(internalIntent);
diff --git a/app/src/main/res/layout/activity_playlist_detail.xml b/app/src/main/res/layout/activity_playlist_detail.xml
index 75660d50..01c5f3dd 100644
--- a/app/src/main/res/layout/activity_playlist_detail.xml
+++ b/app/src/main/res/layout/activity_playlist_detail.xml
@@ -14,6 +14,7 @@
android:clipToPadding="false"
android:layout_width="match_parent"
android:layout_height="wrap_content"
+ android:background="?colorPrimary"
android:elevation="@dimen/toolbar_elevation"
tools:ignore="UnusedAttribute">