ai-fly 0.4.0-alpha.5 → 0.4.0-alpha.7

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/dist/app/main.js CHANGED
@@ -8849,6 +8849,8 @@ async function assembleApp(deps) {
8849
8849
  else {
8850
8850
  log.info(`tray + app window ready (v${readPackageVersion(root)})`);
8851
8851
  log.info(`ui entry (one-time token): ${uiUrl}`);
8852
+ const extraTokens = Number.parseInt(process.env.AIFLY_EXTRA_UI_TOKEN ?? "0", 10) || 0;
8853
+ for (let i = 0; i < extraTokens && i < 16; i += 1) log.info(`ui entry (extra one-time token): ${webServer.uiUrl(port)}`);
8852
8854
  }
8853
8855
  return {
8854
8856
  host,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-fly",
3
- "version": "0.4.0-alpha.5",
3
+ "version": "0.4.0-alpha.7",
4
4
  "description": "ai-fly — peer-to-peer HTTP/WebSocket bridge with AI-ready presets, over OpenDWeb fabric",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "type": "module",