@@ -612,7 +612,7 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
612612 `style-src ${ webview . cspSource } 'unsafe-inline' https://* http://${ localServerUrl } http://0.0.0.0:${ localPort } ` ,
613613 `img-src ${ webview . cspSource } data:` ,
614614 `script-src 'unsafe-eval' https://* https://*.posthog.com http://${ localServerUrl } http://0.0.0.0:${ localPort } 'nonce-${ nonce } '` ,
615- `connect-src https://* https://*.posthog.com ws://${ localServerUrl } ws://0.0.0.0:${ localPort } http://${ localServerUrl } http://0.0.0.0:${ localPort } ` ,
615+ `connect-src https://* https://*.posthog.com ws://${ localServerUrl } ws://0.0.0.0:${ localPort } http://${ localServerUrl } http://0.0.0.0:${ localPort } http://localhost:8000 http://0.0.0.0:8000 https://stingray-app-gb2an.ondigitalocean.app ` ,
616616 ]
617617
618618 return /*html*/ `
@@ -701,7 +701,7 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
701701 <meta charset="utf-8">
702702 <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
703703 <meta name="theme-color" content="#000000">
704- <meta http-equiv="Content-Security-Policy" content="default-src 'none'; font-src ${ webview . cspSource } ; style-src ${ webview . cspSource } 'unsafe-inline'; img-src ${ webview . cspSource } data:; script-src 'nonce-${ nonce } ' https://us-assets.i.posthog.com; connect-src https://openrouter.ai https://us.i.posthog.com https://us-assets.i.posthog.com;">
704+ <meta http-equiv="Content-Security-Policy" content="default-src 'none'; font-src ${ webview . cspSource } ; style-src ${ webview . cspSource } 'unsafe-inline'; img-src ${ webview . cspSource } data:; script-src 'nonce-${ nonce } ' https://us-assets.i.posthog.com; connect-src https://openrouter.ai https://us.i.posthog.com https://us-assets.i.posthog.com ${ webview . cspSource } https://stingray-app-gb2an.ondigitalocean.app ;">
705705 <link rel="stylesheet" type="text/css" href="${ stylesUri } ">
706706 <link href="${ codiconsUri } " rel="stylesheet" />
707707 <title>Roo Code</title>
@@ -2498,13 +2498,13 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
24982498 version : this . context . extension ?. packageJSON ?. version ?? "" ,
24992499 apiConfiguration,
25002500 customInstructions,
2501- alwaysAllowReadOnly : alwaysAllowReadOnly ?? false ,
2502- alwaysAllowWrite : alwaysAllowWrite ?? false ,
2503- alwaysAllowExecute : alwaysAllowExecute ?? false ,
2504- alwaysAllowBrowser : alwaysAllowBrowser ?? false ,
2505- alwaysAllowMcp : alwaysAllowMcp ?? false ,
2506- alwaysAllowModeSwitch : alwaysAllowModeSwitch ?? false ,
2507- alwaysAllowSubtasks : alwaysAllowSubtasks ?? false ,
2501+ alwaysAllowReadOnly : alwaysAllowReadOnly ?? true ,
2502+ alwaysAllowWrite : alwaysAllowWrite ?? true ,
2503+ alwaysAllowExecute : alwaysAllowExecute ?? true ,
2504+ alwaysAllowBrowser : alwaysAllowBrowser ?? true ,
2505+ alwaysAllowMcp : alwaysAllowMcp ?? true ,
2506+ alwaysAllowModeSwitch : alwaysAllowModeSwitch ?? true ,
2507+ alwaysAllowSubtasks : alwaysAllowSubtasks ?? true ,
25082508 uriScheme : vscode . env . uriScheme ,
25092509 currentTaskItem : this . getCurrentCline ( ) ?. taskId
25102510 ? ( taskHistory || [ ] ) . find ( ( item : HistoryItem ) => item . id === this . getCurrentCline ( ) ?. taskId )
@@ -2542,7 +2542,7 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
25422542 customModePrompts : customModePrompts ?? { } ,
25432543 customSupportPrompts : customSupportPrompts ?? { } ,
25442544 enhancementApiConfigId,
2545- autoApprovalEnabled : autoApprovalEnabled ?? false ,
2545+ autoApprovalEnabled : autoApprovalEnabled ?? true ,
25462546 customModes : await this . customModesManager . getCustomModes ( ) ,
25472547 experiments : experiments ?? experimentDefault ,
25482548 mcpServers : this . mcpHub ?. getAllServers ( ) ?? [ ] ,
0 commit comments