Skip to content

Commit

Permalink
DSub 5.1 Final Released
Browse files Browse the repository at this point in the history
  • Loading branch information
daneren2005 committed Nov 14, 2015
1 parent ec1b17c commit d4d86f9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="github.daneren2005.dsub"
android:installLocation="internalOnly"
android:versionCode="164"
android:versionCode="165"
android:versionName="5.1">

<instrumentation android:name="android.test.InstrumentationTestRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,10 @@ public synchronized void download(List<MusicDirectory.Entry> songs, boolean save
int size = size();
int index = getCurrentPlayingIndex();
for (MusicDirectory.Entry song : songs) {
if(song == null) {
continue;
}

DownloadFile downloadFile = new DownloadFile(this, song, save);
addToDownloadList(downloadFile, -1);
if(noNetwork && !warnNetwork) {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/xml/changelog.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<release version="5.1" versioncode="163" releasedate="11/5/2015">
<release version="5.1" versioncode="163" releasedate="11/13/2015">
<change>Android Auto support</change>
<change>Thumb/Star on Android Wear</change>
<change>Podcast Channel Artwork (Subsonic 5.3+)</change>
Expand Down

0 comments on commit d4d86f9

Please sign in to comment.