mirror of
https://github.com/openai/codex.git
synced 2026-04-28 08:34:54 +00:00
Promote Windows Sandbox (#11341)
1. Move Windows Sandbox NUX to right after trust directory screen 2. Don't offer read-only as an option in Sandbox NUX. Elevated/Legacy/Quit 3. Don't allow new untrusted directories. It's trust or quit 4. move experimental sandbox features to `[windows] sandbox="elevated|unelevatd"` 5. Copy tweaks = elevated -> default, non-elevated -> non-admin
This commit is contained in:
@@ -331,6 +331,14 @@
|
||||
},
|
||||
"web_search": {
|
||||
"$ref": "#/definitions/WebSearchMode"
|
||||
},
|
||||
"windows": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/definitions/WindowsToml"
|
||||
}
|
||||
],
|
||||
"default": null
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -1144,6 +1152,22 @@
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"WindowsSandboxModeToml": {
|
||||
"enum": [
|
||||
"elevated",
|
||||
"unelevated"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"WindowsToml": {
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"sandbox": {
|
||||
"$ref": "#/definitions/WindowsSandboxModeToml"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"WireApi": {
|
||||
"description": "Wire protocol that the provider speaks.",
|
||||
"oneOf": [
|
||||
@@ -1636,6 +1660,15 @@
|
||||
],
|
||||
"description": "Controls the web search tool mode: disabled, cached, or live."
|
||||
},
|
||||
"windows": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/definitions/WindowsToml"
|
||||
}
|
||||
],
|
||||
"default": null,
|
||||
"description": "Windows-specific configuration."
|
||||
},
|
||||
"windows_wsl_setup_acknowledged": {
|
||||
"description": "Tracks whether the Windows onboarding screen has been acknowledged.",
|
||||
"type": "boolean"
|
||||
|
||||
Reference in New Issue
Block a user