-
-
Notifications
You must be signed in to change notification settings - Fork 989
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
Miscellaneous UI updates #2181
Miscellaneous UI updates #2181
Changes from all commits
5cd72c3
3f18abd
d472e28
9008998
cb8c29a
a3d3f70
3fa6a10
526972b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -197,7 +197,8 @@ <h1>Applications</h1> | |
</button> | ||
</div> | ||
<div class="form-text"> | ||
A list of commands to be run and forgotten about | ||
A list of commands to be run in the background.<br> | ||
<b>Note:</b> If the path to the command executable contains spaces, you must enclose it in quotes. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just a question... do we accept any standard shell/terminal command including things such as piping, &&, ||, >, etc. I wonder if we should add an option to select the shell to use and then just pass in their command as an argument to that shell. (Not for this PR, just an idea I've had for a little while) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't currently, since those are shell builtins rather than real executables. I had similar thoughts when I was working on that URL support for Windows (and we do shell out to cmd.exe in some cases there too). One problem is that we've already exposed shell-like features like output redirection in the UI as a separate option. It might be difficult to make that work properly with a true shell invocation since the command itself could be piping stdout somewhere else. |
||
</div> | ||
</div> | ||
<!-- command --> | ||
|
@@ -206,8 +207,8 @@ <h1>Applications</h1> | |
<input type="text" class="form-control monospace" id="appCmd" aria-describedby="appCmdHelp" | ||
v-model="editForm.cmd" /> | ||
<div id="appCmdHelp" class="form-text"> | ||
The main application, if it is not specified, a process is started | ||
that sleeps indefinitely | ||
The main application to start. If blank, no application will be started.<br> | ||
<b>Note:</b> If the path to the command executable contains spaces, you must enclose it in quotes. | ||
</div> | ||
</div> | ||
<!-- working dir --> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since some of the options were re-ordered, can you re-order them here as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved UPnP, Channels, and the Config Files section. I think that's everything.