Improved the status page with the suggestion from #29

This commit is contained in:
tidusjar 2016-03-22 11:06:43 +00:00
commit c4f57169ad
6 changed files with 28 additions and 3 deletions

View file

@ -70,7 +70,11 @@ namespace PlexRequests.Core
{
model.UpdateAvailable = true;
model.UpdateUri = latestRelease.Result.HtmlUrl;
}
}
model.ReleaseNotes = latestRelease.Result.Body;
model.DownloadUri = latestRelease.Result.Assets[0].BrowserDownloadUrl;
model.ReleaseTitle = latestRelease.Result.Name;
return model;
}