From a2cbddfbfdbf385547484aa5edc208ebdbba334a Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 14 Apr 2017 17:54:26 -0400 Subject: You can now post bugs. Well, there's no categories to post them in, yet. --- Project-Unite/Views/Bugs/PostBug.cshtml | 66 +++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 Project-Unite/Views/Bugs/PostBug.cshtml (limited to 'Project-Unite/Views') diff --git a/Project-Unite/Views/Bugs/PostBug.cshtml b/Project-Unite/Views/Bugs/PostBug.cshtml new file mode 100644 index 0000000..b086947 --- /dev/null +++ b/Project-Unite/Views/Bugs/PostBug.cshtml @@ -0,0 +1,66 @@ +@model Project_Unite.Models.PostBugViewModel +@{ + ViewBag.Title = "Post a bug"; +} + +

Post a bug

+ +

Found a crash? Something inconsistent? Inconvenient? Whatever it is, we wanna know so we can fix it.

+ +

Just fill out this quick form.

+ +@using (Html.BeginForm()) +{ + @Html.AntiForgeryToken() +
+
+ @Html.ValidationSummary() +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Name:@Html.TextBoxFor(Model=>Model.Name, new { @class = "form-control" })
Version:
+ What version of ShiftOS did you experience this bug in?
@Html.DropDownListFor(Model=>Model.VersionId, Model.Versions, new{@class="form-control"})
+ Urgency:
+ How bad of a bug is this? +
@Html.DropDownListFor(Model => Model.Urgency, Model.Urgencies, new { @class = "form-control" })
+ Category:
+ What species of bug is this? (Hah, I'm tying biology into programming terms.) +
@Html.DropDownListFor(Model => Model.SpeciesId, Model.Species, new { @class = "form-control" })
Details:
+ Here you can supply as much detail as you want about the bug. Screenshots, links, explanations, crashes, logs, etc. The more info there is, the more we can help.

+ Markdown formatting is supported.
@Html.TextAreaFor(Model=>Model.Description, new { @class = "form-control", rows = "5" })
+ +

Note on Rolling Release Builds

+ +

It's worth noting that rolling release builds follow the same bug support as the latest version of the standard-release ShiftOS. So, if you are running on the rolling release version, and the latest version is Beta 2, submit the bug for Beta 2.

+ +

My version of the game is not showing!

+ +

Note that obsolete versions of ShiftOS are not supported by us anymore, and thus, you may not submit a bug report for these versions.

+ +

Also, any forked versions of ShiftOS are not supported by us. It is up to the developers of the fork to maintain their releases, keep their codebase in sync with ours, and take care of bugs that we don't cover.

+} \ No newline at end of file -- cgit v1.2.3