Skip to content

Commit

Permalink
updated to v0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
PureDark committed Sep 23, 2016
1 parent 01c2182 commit 9b022a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "ml.puredark.hviewer"
minSdkVersion 17
targetSdkVersion 22
versionCode 33
versionName "0.5.4"
versionCode 34
versionName "0.5.5"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private void distinguishDownloadTasks() {
downloadedTasks = (List<DownloadTask>) downloadedTaskAdapter.getDataProvider().getItems();
for (DownloadTask task : downloadTasks) {
if (task.status == DownloadTask.STATUS_COMPLETED)
downloadedTasks.add(task);
downloadedTasks.add(0, task);
else
downloadingTasks.add(task);
}
Expand Down

0 comments on commit 9b022a3

Please sign in to comment.