openfox 1.6.42 → 1.6.43

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.
@@ -5479,7 +5479,7 @@ function createTerminalRoutes() {
5479
5479
  }
5480
5480
 
5481
5481
  // src/constants.ts
5482
- var VERSION = "1.6.42";
5482
+ var VERSION = "1.6.43";
5483
5483
 
5484
5484
  // src/server/index.ts
5485
5485
  var __dirname2 = dirname5(fileURLToPath4(import.meta.url));
@@ -6375,4 +6375,4 @@ export {
6375
6375
  createServerHandle,
6376
6376
  createServer
6377
6377
  };
6378
- //# sourceMappingURL=chunk-MIG4XMTI.js.map
6378
+ //# sourceMappingURL=chunk-S3U4EG6C.js.map
@@ -179,7 +179,7 @@ async function runCli(options) {
179
179
  if (!configExists) {
180
180
  await runNetworkSetup(mode);
181
181
  }
182
- const { runServe } = await import("./serve-HFJLUGA3.js");
182
+ const { runServe } = await import("./serve-5EPE72XL.js");
183
183
  await runServe({
184
184
  mode,
185
185
  port: values.port ? parseInt(values.port) : void 0,
@@ -192,4 +192,4 @@ async function runCli(options) {
192
192
  export {
193
193
  runCli
194
194
  };
195
- //# sourceMappingURL=chunk-K3CI5UEC.js.map
195
+ //# sourceMappingURL=chunk-TFG2XU3K.js.map
package/dist/cli/dev.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runCli
4
- } from "../chunk-K3CI5UEC.js";
4
+ } from "../chunk-TFG2XU3K.js";
5
5
  import {
6
6
  logger
7
7
  } from "../chunk-PNBH3RAX.js";
package/dist/cli/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runCli
4
- } from "../chunk-K3CI5UEC.js";
4
+ } from "../chunk-TFG2XU3K.js";
5
5
  import {
6
6
  logger
7
7
  } from "../chunk-PNBH3RAX.js";
@@ -1,10 +1,18 @@
1
1
  #!/bin/bash
2
2
  set -e
3
3
 
4
- OLD_VERSION=$(openfox --version)
4
+ CURRENT_VERSION=$(openfox --version)
5
+ LATEST_VERSION=$(npm view openfox version)
6
+
7
+ if [ "$CURRENT_VERSION" = "$LATEST_VERSION" ]; then
8
+ echo "OpenFox is already at the latest version: $CURRENT_VERSION"
9
+ exit 0
10
+ fi
11
+
12
+ echo "Updating OpenFox: $CURRENT_VERSION -> $LATEST_VERSION"
5
13
  openfox service stop
6
14
  npm cache clean --force
7
15
  npm update -g openfox
8
16
  NEW_VERSION=$(openfox --version)
9
17
  openfox service start
10
- echo "Updated: $OLD_VERSION -> $NEW_VERSION"
18
+ echo "Updated: $NEW_VERSION"
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openfox",
3
- "version": "1.6.42",
3
+ "version": "1.6.43",
4
4
  "description": "Local-LLM-first agentic coding assistant",
5
5
  "type": "module",
6
6
  "bin": {
@@ -6,7 +6,7 @@ import {
6
6
  import {
7
7
  VERSION,
8
8
  createServer
9
- } from "./chunk-MIG4XMTI.js";
9
+ } from "./chunk-S3U4EG6C.js";
10
10
  import "./chunk-BHSTSA7U.js";
11
11
  import "./chunk-VCVHYZZS.js";
12
12
  import "./chunk-QFOT3J6I.js";
@@ -188,4 +188,4 @@ async function runServe(options) {
188
188
  export {
189
189
  runServe
190
190
  };
191
- //# sourceMappingURL=serve-HFJLUGA3.js.map
191
+ //# sourceMappingURL=serve-5EPE72XL.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createServer,
3
3
  createServerHandle
4
- } from "../chunk-MIG4XMTI.js";
4
+ } from "../chunk-S3U4EG6C.js";
5
5
  import "../chunk-BHSTSA7U.js";
6
6
  import "../chunk-VCVHYZZS.js";
7
7
  import "../chunk-QFOT3J6I.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openfox",
3
- "version": "1.6.42",
3
+ "version": "1.6.43",
4
4
  "description": "Local-LLM-first agentic coding assistant",
5
5
  "type": "module",
6
6
  "bin": {