Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ui): reorder and add missing config options #1993

Merged
6 changes: 3 additions & 3 deletions src_assets/common/assets/web/ResourceCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="card p-2">
<div class="card-body">
<h2>Resources</h2>
<br />
<br>
<p>
Resources for Sunshine!
</p>
Expand All @@ -15,11 +15,11 @@
</div>
</div>
</div>
<!--Legal-->
<!-- Legal -->
<div class="card p-2 mt-4">
<div class="card-body">
<h2>Legal</h2>
<br />
<br>
<p>
By continuing to use this software you agree to the terms and conditions in the following documents.
</p>
Expand Down
16 changes: 8 additions & 8 deletions src_assets/common/assets/web/apps.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ <h1>Applications</h1>
</div>
<div class="edit-form card mt-2" v-if="showEditForm">
<div class="p-4">
<!--name-->
<!-- Application Name -->
<div class="mb-3">
<label for="appName" class="form-label">Application Name</label>
<input type="text" class="form-control" id="appName" aria-describedby="appNameHelp" v-model="editForm.name" />
<div id="appNameHelp" class="form-text">
Application Name, as shown on Moonlight
</div>
</div>
<!--output-->
<!-- output -->
<div class="mb-3">
<label for="appOutput" class="form-label">Output</label>
<input type="text" class="form-control monospace" id="appOutput" aria-describedby="appOutputHelp"
Expand All @@ -120,7 +120,7 @@ <h1>Applications</h1>
specified, the output is ignored
</div>
</div>
<!--prep-cmd-->
<!-- prep-cmd -->
<div class="mb-3">
<label for="excludeGlobalPrep" class="form-label">Global Prep Commands</label>
<select id="excludeGlobalPrep" class="form-select" v-model="editForm['exclude-global-prep-cmd']">
Expand All @@ -136,7 +136,7 @@ <h1>Applications</h1>
<div class="mb-3">
<label for="appName" class="form-label">Command Preparations</label>
<div class="form-text">
A list of commands to be run before/after this application.<br />
A list of commands to be run before/after this application.<br>
If any of the prep-commands fail, starting the application is aborted.
</div>
<div class="d-flex justify-content-start mb-3 mt-3" v-if="editForm['prep-cmd'].length === 0">
Expand Down Expand Up @@ -182,7 +182,7 @@ <h1>Applications</h1>
</tbody>
</table>
</div>
<!--detached-->
<!-- detached -->
<div class="mb-3">
<label for="appName" class="form-label">Detached Commands</label>
<div v-for="(c,i) in editForm.detached" class="d-flex justify-content-between my-2">
Expand All @@ -200,7 +200,7 @@ <h1>Applications</h1>
A list of commands to be run and forgotten about
</div>
</div>
<!--command-->
<!-- command -->
<div class="mb-3">
<label for="appCmd" class="form-label">Command</label>
<input type="text" class="form-control monospace" id="appCmd" aria-describedby="appCmdHelp"
Expand All @@ -210,7 +210,7 @@ <h1>Applications</h1>
that sleeps indefinitely
</div>
</div>
<!--working dir-->
<!-- working dir -->
<div class="mb-3">
<label for="appWorkingDir" class="form-label">Working Directory</label>
<input type="text" class="form-control monospace" id="appWorkingDir" aria-describedby="appWorkingDirHelp"
Expand Down Expand Up @@ -354,7 +354,7 @@ <h4>About Environment Variables</h4>
href="https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/app_examples.html"
target="_blank">See More</a></div>
</div>
<!--buttons-->
<!-- Save buttons -->
<div class="d-flex">
<button @click="showEditForm = false" class="btn btn-secondary m-2">
Cancel
Expand Down
Loading