superbrain-server 1.0.12 → 1.0.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superbrain-server",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "1-Line Auto-Installer and Server Execution wrapper for SuperBrain",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -34,6 +34,9 @@ instagrapi>=2.0.0
34
34
  opencv-python-headless>=4.9.0.80
35
35
  Pillow>=10.0.0
36
36
 
37
+ # ── Remote Access (Networking) ──────────────────────────────────────────────
38
+ pyngrok>=7.1.5
39
+
37
40
  # ── Terminal UI ───────────────────────────────────────────────────────────────
38
41
  rich>=13.0.0
39
- segno>=1.6.0
42
+ segno>=1.6.0
package/payload/start.py CHANGED
@@ -1131,13 +1131,13 @@ def launch_backend():
1131
1131
 
1132
1132
  if public_url:
1133
1133
  tunnel_line = f" Public URL → {GREEN}{BOLD}{public_url}{RESET} {DIM}(ngrok){RESET}"
1134
- tunnel_hint = f" · public → {GREEN}{public_url}{RESET}"
1134
+ tunnel_hint = f" · public → {GREEN}{public_url}{RESET}"
1135
1135
  ok(f"ngrok active → {GREEN}{BOLD}{public_url}{RESET}")
1136
1136
  elif NGROK_ENABLED.exists():
1137
1137
  tunnel_line = f" Public URL → {YELLOW}(failed to start ngrok){RESET}"
1138
- tunnel_hint = f" · public → run manually: {DIM}ngrok http {PORT}{RESET}"
1138
+ tunnel_hint = f" · public → run manually: {DIM}ngrok http {PORT}{RESET}"
1139
1139
  else:
1140
- tunnel_hint = f" · public → enable ngrok via {DIM}python start.py --reset{RESET}"
1140
+ tunnel_hint = f" · public → enable ngrok via {DIM}python start.py --reset{RESET}"
1141
1141
 
1142
1142
  # ── Generate and display QR code ──────────────────────────────────────────
1143
1143
  qr_url = public_url if public_url else f"http://{local_ip}:{PORT}"