Below is a list of all ShiftOS releases, sorted by date in descending order, categorized by stability.
+ + + +Stable builds of ShiftOS are generally more trusted - they may not contain all the latest features, but they are also bug-free... mostly.
+ +Release | +Actions | +
---|---|
+ @if(release.Obsolete==true)
+ OBSOLETE:
+ @Html.ActionLink(release.Name, "ViewRelease", "Download", new { id = release.Id }, null) + ...released by @Html.UserLink(release.ReleasedBy), released on @Model.PostDate + |
+ + Watch dev update + @Html.ActionLink("Make Unstable", "MakeUnstable", "Developer", new { id = release.Id }, new { @class = "btn btn-warning" }) + @Html.ActionLink("Toggle Obsolete", "ToggleObsolete", "Developer", new { id = release.Id }, new { @class = "btn btn-warning" }) + @Html.ActionLink("Delete", "Delete", "Developer", new { id = release.Id }, new { @class = "btn btn-danger" }) + + + + + + + + + | +
Unstable builds are in-between builds of ShiftOS. They are more feature-rich, released faster, but that comes at the cost of stability. These builds may be really buggy. Seriously. I've released some that don't even boot.
+ +Release | +Actions | +
---|---|
+ @if (release.Obsolete == true)
+ OBSOLETE:
+ @Html.ActionLink(release.Name, "ViewRelease", "Download", new { id = release.Id }, null) + ...released by @Html.UserLink(release.ReleasedBy), released on @Model.PostDate + |
+ + Watch dev update + @Html.ActionLink("Make Stable", "MakeStable", "Developer", new { id = release.Id }, new { @class = "btn btn-warning" }) + @Html.ActionLink("Toggle Obsolete", "ToggleObsolete", "Developer", new { id = release.Id }, new { @class = "btn btn-warning" }) + @Html.ActionLink("Delete", "Delete", "Developer", new { id = release.Id }, new { @class = "btn btn-danger" }) + + + + + + + + + | +