mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-05 16:10:24 +00:00
ACPX: align pinned runtime version (#52730)
* ACPX: align pinned runtime version * ACPX: drop version example from help text
This commit is contained in:
@@ -67,7 +67,7 @@
|
|||||||
},
|
},
|
||||||
"expectedVersion": {
|
"expectedVersion": {
|
||||||
"label": "Expected acpx Version",
|
"label": "Expected acpx Version",
|
||||||
"help": "Exact version to enforce (for example 0.1.16) or \"any\" to skip strict version matching."
|
"help": "Exact version to enforce or \"any\" to skip strict version matching."
|
||||||
},
|
},
|
||||||
"cwd": {
|
"cwd": {
|
||||||
"label": "Default Working Directory",
|
"label": "Default Working Directory",
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ export type AcpxPermissionMode = (typeof ACPX_PERMISSION_MODES)[number];
|
|||||||
export const ACPX_NON_INTERACTIVE_POLICIES = ["deny", "fail"] as const;
|
export const ACPX_NON_INTERACTIVE_POLICIES = ["deny", "fail"] as const;
|
||||||
export type AcpxNonInteractivePermissionPolicy = (typeof ACPX_NON_INTERACTIVE_POLICIES)[number];
|
export type AcpxNonInteractivePermissionPolicy = (typeof ACPX_NON_INTERACTIVE_POLICIES)[number];
|
||||||
|
|
||||||
export const ACPX_PINNED_VERSION = "0.1.16";
|
export const ACPX_PINNED_VERSION = "0.3.1";
|
||||||
export const ACPX_VERSION_ANY = "any";
|
export const ACPX_VERSION_ANY = "any";
|
||||||
const ACPX_BIN_NAME = process.platform === "win32" ? "acpx.cmd" : "acpx";
|
const ACPX_BIN_NAME = process.platform === "win32" ? "acpx.cmd" : "acpx";
|
||||||
|
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ export const GENERATED_BUNDLED_PLUGIN_METADATA = [
|
|||||||
},
|
},
|
||||||
expectedVersion: {
|
expectedVersion: {
|
||||||
label: "Expected acpx Version",
|
label: "Expected acpx Version",
|
||||||
help: 'Exact version to enforce (for example 0.1.16) or "any" to skip strict version matching.',
|
help: 'Exact version to enforce or "any" to skip strict version matching.',
|
||||||
},
|
},
|
||||||
cwd: {
|
cwd: {
|
||||||
label: "Default Working Directory",
|
label: "Default Working Directory",
|
||||||
|
|||||||
Reference in New Issue
Block a user