Product: PowerShell Universal
Version: 5.0.5
Issue 1:
When an app fails to start after I made an error in a code change and auto-deploy is enabled, the app remains on “start failed” even so it is running again.
One can actually not stop or restart in the web GUI, until I restart the PSU service. Logging out and back in does not help.
Screenshot below was taken while the app cleary was running and usable.
Issue 2:
The web GUI code editor features auto-complete.
In version 4 it worked as expected.
e.g. I type:
new-UDGrid -Item -Content {
all is good despite the fact that it does not offer “Content” as an option.
Then I want to add ExtraSmallSize before content.
I type a dash -, the pop-up offers all options, I select ExtraSmallSize and end up with:
new-UDGrid -Item -ExtraSmallSize
The “-content {” part gets overwritten, just for the length of the selected option string. (even so the editor uses insert mode while typing)