-
Notifications
You must be signed in to change notification settings - Fork 30
#284 Optimization of VC UTBot Quickstart wizard #302
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
Conversation
- support CMake-generated version - `disabled` and `checked` attribute support for Unix/MS HTML render - added client/server version verification at `Handshake` call - deep refactoring `.css` files - remove `Test server` button and make the mandatory job in background - remove useless class `WizardHTMLBuilder` - fix CMake parameter editor
vscode-plugin/media/wizard.html
Outdated
<b>📶 Connection</b> | ||
<span> | ||
<span id="connection_loader">⏳ Connecting...</span> | ||
<span id="connection_success">✔️Successfully pinged server! </span> |
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.
add space after emoji
vscode-plugin/media/wizard.js
Outdated
// vscode.postMessage({ | ||
// command: 'dbg_message', | ||
// message: message | ||
// }); |
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.
uncomment
vscode-plugin/media/wizard.js
Outdated
* Communication with VSCode via API | ||
*/ | ||
const vscode = acquireVsCodeApi(); | ||
function setupLocalHost() { |
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.
choose better name
return host === '127.0.0.1' || host === 'localhost'; | ||
} | ||
|
||
public static isRemoteScenario(): boolean { |
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.
change function appropriately
- fix `isRemoteScenario` for local-remote scenario (remote root != project path)
disabled
andchecked
attribute support for Unix/MS HTML renderHandshake
call.css
filesTest server
button and make the mandatory job in backgroundWizardHTMLBuilder