@@ -173,7 +173,7 @@ class WebSocketTerminal implements vscode.Pseudoterminal {
173
173
outputChannel . appendLine ( "Check that the InterSystems server's web server supports WebSockets." ) ;
174
174
outputChannel . show ( true ) ;
175
175
vscode . window . showErrorMessage (
176
- "Failed to initialize WebSocket Terminal. Check 'ObjectScript' Output channel for details." ,
176
+ "Failed to initialize Lite Terminal. Check 'ObjectScript' Output channel for details." ,
177
177
"Dismiss"
178
178
) ;
179
179
this . _closeEmitter . fire ( ) ;
@@ -190,7 +190,7 @@ class WebSocketTerminal implements vscode.Pseudoterminal {
190
190
outputChannel . appendLine ( `WebSocket error: ${ error . toString ( ) } ` ) ;
191
191
outputChannel . show ( true ) ;
192
192
vscode . window . showErrorMessage (
193
- "WebSocket Terminal failed. Check 'ObjectScript' Output channel for details." ,
193
+ "Lite Terminal failed. Check 'ObjectScript' Output channel for details." ,
194
194
"Dismiss"
195
195
) ;
196
196
this . _closeEmitter . fire ( ) ;
@@ -212,7 +212,7 @@ class WebSocketTerminal implements vscode.Pseudoterminal {
212
212
outputChannel . appendLine ( message . text ) ;
213
213
outputChannel . show ( true ) ;
214
214
vscode . window . showErrorMessage (
215
- "WebSocket Terminal failed. Check 'ObjectScript' Output channel for details." ,
215
+ "Lite Terminal failed. Check 'ObjectScript' Output channel for details." ,
216
216
"Dismiss"
217
217
) ;
218
218
this . _closeEmitter . fire ( ) ;
@@ -614,12 +614,12 @@ function terminalConfigForUri(
614
614
) : vscode . ExtensionTerminalOptions | undefined {
615
615
// Make sure the server connection is active
616
616
if ( ! api . active || api . ns == "" ) {
617
- reportError ( "WebSocket Terminal requires an active server connection." , throwErrors ) ;
617
+ reportError ( "Lite Terminal requires an active server connection." , throwErrors ) ;
618
618
return ;
619
619
}
620
620
// Make sure the server has the terminal endpoint
621
621
if ( api . config . apiVersion < 7 ) {
622
- reportError ( "WebSocket Terminal requires InterSystems IRIS version 2023.2 or above." , throwErrors ) ;
622
+ reportError ( "Lite Terminal requires InterSystems IRIS version 2023.2 or above." , throwErrors ) ;
623
623
return ;
624
624
}
625
625
@@ -642,7 +642,7 @@ async function workspaceUriForTerminal(throwErrors = false) {
642
642
let uri : vscode . Uri ;
643
643
const workspaceFolders = vscode . workspace . workspaceFolders || [ ] ;
644
644
if ( workspaceFolders . length == 0 ) {
645
- reportError ( "WebSocket Terminal requires an open workspace." , throwErrors ) ;
645
+ reportError ( "Lite Terminal requires an open workspace." , throwErrors ) ;
646
646
} else if ( workspaceFolders . length == 1 ) {
647
647
// Use the current connection
648
648
uri = workspaceFolders [ 0 ] . uri ;
@@ -696,7 +696,7 @@ export class WebSocketTerminalProfileProvider implements vscode.TerminalProfileP
696
696
const terminalOpts = terminalConfigForUri ( new AtelierAPI ( uri ) , uri , true ) ;
697
697
return new vscode . TerminalProfile ( terminalOpts ) ;
698
698
} else {
699
- throw new Error ( "WebSocket Terminal requires a selected workspace folder." ) ;
699
+ throw new Error ( "Lite Terminal requires a selected workspace folder." ) ;
700
700
}
701
701
}
702
702
}
0 commit comments