@model Project_Unite.Models.Download @{ ViewBag.Title = Model.Name; }

@Model.Name

Released by @Html.UserLink(Model.ReleasedBy) at @Model.PostDate - @if (Model.IsStable) { This build is stable! } else { This build is unstable. }

@if (!string.IsNullOrWhiteSpace(Model.DevUpdateId)) { } @if (!string.IsNullOrWhiteSpace(Model.ScreenshotUrl)) { } @Html.Markdown(Model.Changelog)

Reported bugs

@if (Model.OpenBugs.Length == 0) {

There are no reported bugs to display.

} else { @foreach (var bug in Model.OpenBugs.OrderByDescending(x=>x.Urgency)) { }
Bug Urgency Actions
@Html.ActionLink(bug.Name, "ViewBug", "Bugs", null, new { id=bug.Id})
Opened by @Html.UserLink(bug.Reporter) at @bug.ReportedAt
@switch (bug.Urgency) { case 0: Minor break; case 1: Moderate break; case 2: Major break; case 3: Critical break; } View bug
}

Download

Download .ZIP

At ShiftOS, we strive to make your experience in the multi-user domain as reliable as possible.

If you have any issues with this build, please let us know. Also, to find out a bit more about the build, if you haven't already, check out the details to the left!

@if (Model.Obsolete) {

This build is obsolete!

We no longer support this build, and thus, any issues with this build that arise as we develop the game further will not be fixed. Consider picking up a more up-to-date build?

}