openfox 2.0.111 → 2.0.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/{chunk-A32COLEZ.js → chunk-IYTDCPEQ.js} +2 -2
- package/dist/chunk-P5AA7OYJ.js +7 -0
- package/dist/{chunk-4DTV5JVI.js → chunk-UAF2FOI5.js} +3 -3
- package/dist/cli/dev.js +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/package.json +3 -2
- package/dist/{serve-V7WQKJ52.js → serve-WHFUNQ6Z.js} +3 -3
- package/dist/server/index.js +2 -2
- package/dist/{update-MWPQNSEZ.js → update-BRUFGGTW.js} +2 -2
- package/package.json +3 -2
- package/scripts/postinstall.mjs +8 -0
- package/dist/chunk-GZOK3FAA.js +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.112 - 2026-08-03
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- **Updates install again** — the postinstall script is now bundled with the release, so `openfox update` no longer fails halfway with a missing file
|
|
8
|
+
|
|
3
9
|
## 2.0.111 - 2026-08-03
|
|
4
10
|
|
|
5
11
|
### Enhancements
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.112 - 2026-08-03
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- **Updates install again** — the postinstall script is now bundled with the release, so `openfox update` no longer fails halfway with a missing file
|
|
8
|
+
|
|
3
9
|
## 2.0.111 - 2026-08-03
|
|
4
10
|
|
|
5
11
|
### Enhancements
|
|
@@ -131,7 +131,7 @@ import {
|
|
|
131
131
|
} from "./chunk-6FPGJR7O.js";
|
|
132
132
|
import {
|
|
133
133
|
VERSION
|
|
134
|
-
} from "./chunk-
|
|
134
|
+
} from "./chunk-P5AA7OYJ.js";
|
|
135
135
|
import {
|
|
136
136
|
clearWorkflowExecution,
|
|
137
137
|
createSession,
|
|
@@ -8324,4 +8324,4 @@ export {
|
|
|
8324
8324
|
createServerHandle,
|
|
8325
8325
|
createServer
|
|
8326
8326
|
};
|
|
8327
|
-
//# sourceMappingURL=chunk-
|
|
8327
|
+
//# sourceMappingURL=chunk-IYTDCPEQ.js.map
|
|
@@ -200,7 +200,7 @@ async function runCli(options) {
|
|
|
200
200
|
break;
|
|
201
201
|
}
|
|
202
202
|
case "update": {
|
|
203
|
-
const { runUpdate } = await import("./update-
|
|
203
|
+
const { runUpdate } = await import("./update-BRUFGGTW.js");
|
|
204
204
|
const code = await runUpdate();
|
|
205
205
|
if (code !== 0) {
|
|
206
206
|
process.exit(code);
|
|
@@ -213,7 +213,7 @@ async function runCli(options) {
|
|
|
213
213
|
if (!configExists) {
|
|
214
214
|
await runNetworkSetup(mode);
|
|
215
215
|
}
|
|
216
|
-
const { runServe } = await import("./serve-
|
|
216
|
+
const { runServe } = await import("./serve-WHFUNQ6Z.js");
|
|
217
217
|
const serveOptions = { mode };
|
|
218
218
|
if (values.port) serveOptions.port = parseInt(values.port);
|
|
219
219
|
if (values["no-browser"] === true) serveOptions.openBrowser = false;
|
|
@@ -225,4 +225,4 @@ async function runCli(options) {
|
|
|
225
225
|
export {
|
|
226
226
|
runCli
|
|
227
227
|
};
|
|
228
|
-
//# sourceMappingURL=chunk-
|
|
228
|
+
//# sourceMappingURL=chunk-UAF2FOI5.js.map
|
package/dist/cli/dev.js
CHANGED
package/dist/cli/index.js
CHANGED
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openfox",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.112",
|
|
4
4
|
"description": "Local-LLM-first agentic coding assistant",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"dist/**/*.md",
|
|
28
28
|
"CHANGELOG.md",
|
|
29
29
|
"package.json",
|
|
30
|
-
"plugins-registry.json"
|
|
30
|
+
"plugins-registry.json",
|
|
31
|
+
"scripts/postinstall.mjs"
|
|
31
32
|
],
|
|
32
33
|
"scripts": {
|
|
33
34
|
"dev": "cross-env OPENFOX_DEV=true tsx watch src/cli/dev.ts --no-browser",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createServer
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-IYTDCPEQ.js";
|
|
4
4
|
import "./chunk-RSB4AR2A.js";
|
|
5
5
|
import "./chunk-IJ53Y77N.js";
|
|
6
6
|
import "./chunk-XCK5IBO4.js";
|
|
@@ -30,7 +30,7 @@ import "./chunk-RISQXU32.js";
|
|
|
30
30
|
import "./chunk-6FPGJR7O.js";
|
|
31
31
|
import {
|
|
32
32
|
VERSION
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-P5AA7OYJ.js";
|
|
34
34
|
import "./chunk-QGXLZZBS.js";
|
|
35
35
|
import "./chunk-LCLH6ZUL.js";
|
|
36
36
|
import "./chunk-C5NQF2K4.js";
|
|
@@ -223,4 +223,4 @@ async function runServe(options) {
|
|
|
223
223
|
export {
|
|
224
224
|
runServe
|
|
225
225
|
};
|
|
226
|
-
//# sourceMappingURL=serve-
|
|
226
|
+
//# sourceMappingURL=serve-WHFUNQ6Z.js.map
|
package/dist/server/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createServer,
|
|
3
3
|
createServerHandle
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-IYTDCPEQ.js";
|
|
5
5
|
import "../chunk-RSB4AR2A.js";
|
|
6
6
|
import "../chunk-IJ53Y77N.js";
|
|
7
7
|
import "../chunk-XCK5IBO4.js";
|
|
@@ -29,7 +29,7 @@ import "../chunk-N4RTAGFY.js";
|
|
|
29
29
|
import "../chunk-JURM3RPZ.js";
|
|
30
30
|
import "../chunk-RISQXU32.js";
|
|
31
31
|
import "../chunk-6FPGJR7O.js";
|
|
32
|
-
import "../chunk-
|
|
32
|
+
import "../chunk-P5AA7OYJ.js";
|
|
33
33
|
import "../chunk-QGXLZZBS.js";
|
|
34
34
|
import "../chunk-LCLH6ZUL.js";
|
|
35
35
|
import "../chunk-C5NQF2K4.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
VERSION
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-P5AA7OYJ.js";
|
|
4
4
|
import "./chunk-5WRI5ZAA.js";
|
|
5
5
|
|
|
6
6
|
// src/cli/update.ts
|
|
@@ -46,4 +46,4 @@ async function runUpdate(options = {}) {
|
|
|
46
46
|
export {
|
|
47
47
|
runUpdate
|
|
48
48
|
};
|
|
49
|
-
//# sourceMappingURL=update-
|
|
49
|
+
//# sourceMappingURL=update-BRUFGGTW.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openfox",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.112",
|
|
4
4
|
"description": "Local-LLM-first agentic coding assistant",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"dist/**/*.md",
|
|
28
28
|
"CHANGELOG.md",
|
|
29
29
|
"package.json",
|
|
30
|
-
"plugins-registry.json"
|
|
30
|
+
"plugins-registry.json",
|
|
31
|
+
"scripts/postinstall.mjs"
|
|
31
32
|
],
|
|
32
33
|
"scripts": {
|
|
33
34
|
"dev": "cross-env OPENFOX_DEV=true tsx watch src/cli/dev.ts --no-browser",
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// Installs web/ dependencies after a root install. Replaces the sh-only
|
|
2
|
+
// `if [ -f ... ]` postinstall so `npm install` works on Windows (cmd.exe).
|
|
3
|
+
import { existsSync } from 'node:fs'
|
|
4
|
+
import { execSync } from 'node:child_process'
|
|
5
|
+
|
|
6
|
+
if (existsSync('web/package.json') && !existsSync('web/node_modules')) {
|
|
7
|
+
execSync('npm install --prefer-offline', { cwd: 'web', stdio: 'inherit' })
|
|
8
|
+
}
|