@woopsy/mcpanel 2.1.3 → 2.1.4

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.
@@ -430,6 +430,7 @@ class CommandRouter {
430
430
  }
431
431
  if (status.address && status.address !== 'None') {
432
432
  output.push(`\nšŸŽ® Connect at: ${colors.bold(colors.green(`${status.address}:${status.port}`))}`);
433
+ output.push(colors.gray(`(Enter the full address WITH ":${status.port}" — the bare domain defaults to 25565 and won't connect.)`));
433
434
  }
434
435
  // Persistence diagnostics: whether the agent is claimed/saved, and where.
435
436
  // If this says "Not saved", /tunnel will re-claim a new agent every run.
@@ -528,9 +529,13 @@ class CommandRouter {
528
529
  },
529
530
  onStatus: (msg) => console.log(colors.info(msg)),
530
531
  });
532
+ const portHint = type === 'java'
533
+ ? colors.gray(`In Minecraft, enter the FULL address including ":${status.port}" — the bare domain defaults to port 25565 and will not connect.`)
534
+ : colors.gray(`In Minecraft Bedrock, enter the address and set the Port field to ${status.port}.`);
531
535
  return [
532
536
  colors.success(`${type === 'java' ? 'Java' : 'Bedrock'} tunnel is online!`),
533
537
  `\nšŸŽ® Connect at: ${colors.bold(colors.green(`${status.address}:${status.port}`))}`,
538
+ portHint,
534
539
  colors.gray('Share this address with players. The tunnel stays up while MCPANEL is running.'),
535
540
  ].join('\n');
536
541
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woopsy/mcpanel",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "MCPANEL — a terminal-based, single-server Minecraft server manager with an Arch/neofetch-style UI, live logs, backups, plugins and Playit.gg tunnels.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {