@agent-webui/ai-desk-daemon 1.0.23 → 1.0.24

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.
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -112,18 +112,10 @@ function start() {
112
112
  // The daemon handles its own logging to file (see daemon/logger.go)
113
113
  // It uses io.MultiWriter to write to both stdout and the log file
114
114
  // So we should ignore stdout/stderr here to avoid duplication
115
- const spawnOptions = {
115
+ const child = spawn(binaryPath, ['--port', portNumber.toString(), '--config', configPath], {
116
116
  detached: true,
117
117
  stdio: ['ignore', 'ignore', 'ignore'] // Daemon writes to its own log file
118
- };
119
-
120
- // Windows-specific: hide console window
121
- // This prevents the daemon process from showing a terminal window
122
- if (process.platform === 'win32') {
123
- spawnOptions.windowsHide = true;
124
- }
125
-
126
- const child = spawn(binaryPath, ['--port', portNumber.toString(), '--config', configPath], spawnOptions);
118
+ });
127
119
 
128
120
  child.unref();
129
121
 
package/lib/platform.js CHANGED
@@ -5,7 +5,7 @@
5
5
  const os = require('os');
6
6
  const path = require('path');
7
7
 
8
- const VERSION = '1.0.23';
8
+ const VERSION = '1.0.24';
9
9
 
10
10
  /**
11
11
  * Detect current platform and architecture
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-webui/ai-desk-daemon",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "AI Desk Daemon - CLI tool for managing the AI Desk daemon service",
5
5
  "main": "lib/daemon-manager.js",
6
6
  "bin": {