bloby-bot 0.27.1 → 0.27.2

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/README.md CHANGED
@@ -328,7 +328,7 @@ Supervisor User's machine
328
328
  - Spawns: `cloudflared tunnel --url http://localhost:3000 --no-autoupdate`
329
329
  - Extracts tunnel URL from stdout (regex match for `*.trycloudflare.com`)
330
330
  - URL changes on every restart -- the relay provides the stable domain layer on top
331
- - Optionally register with Bloby Relay for a permanent `my.bloby.bot/username` or `bloby.bot/username` URL
331
+ - Optionally register with Bloby Relay for a permanent `open.bloby.bot/username` or `bloby.bot/username` URL
332
332
 
333
333
  #### Named Tunnel
334
334
 
@@ -389,7 +389,7 @@ Node.js/Express + http-proxy + MongoDB. Hosted on Railway. Only used when the us
389
389
  | Tier | Subdomain | Path shortcut | Cost |
390
390
  |---|---|---|---|
391
391
  | Premium | `bruno.bloby.bot` | `bloby.bot/bruno` | $5/mo |
392
- | Free | `bruno.my.bloby.bot` | `my.bloby.bot/bruno` | Free |
392
+ | Free | `bruno.open.bloby.bot` | `open.bloby.bot/bruno` | Free |
393
393
 
394
394
  Same username can exist on both tiers independently. Compound unique index on `username + tier`.
395
395
 
@@ -445,7 +445,7 @@ The CLI is the user-facing entry point. Commands:
445
445
 
446
446
  During init, the user is presented with an interactive arrow-key menu to choose their tunnel mode:
447
447
 
448
- - **Quick Tunnel** (Easy and Fast) -- Random CloudFlare tunnel URL on every start/update. Optionally use Bloby Relay for a permanent `my.bloby.bot/username` handle (free) or a premium `bloby.bot/username` handle ($5 one-time).
448
+ - **Quick Tunnel** (Easy and Fast) -- Random CloudFlare tunnel URL on every start/update. Optionally use Bloby Relay for a permanent `open.bloby.bot/username` handle (free) or a premium `bloby.bot/username` handle ($5 one-time).
449
449
  - **Named Tunnel** (Advanced) -- Persistent URL with your own domain. Requires a Cloudflare account + domain. Use a subdomain like `bot.yourdomain.com` or the root domain.
450
450
 
451
451
  If Named Tunnel is selected, `bloby init` immediately runs the named tunnel setup flow inline (same as `bloby tunnel setup`).
package/bin/cli.js CHANGED
@@ -277,7 +277,7 @@ function chooseTunnelMode() {
277
277
  tagColor: c.green,
278
278
  desc: [
279
279
  'Random CloudFlare tunnel URL on every start/update',
280
- `Optional: Use Bloby Relay Server and access your bot at ${c.reset}${c.pink}my.bloby.bot/YOURBOT${c.reset}${c.dim} (Free)`,
280
+ `Optional: Use Bloby Relay Server and access your bot at ${c.reset}${c.pink}open.bloby.bot/YOURBOT${c.reset}${c.dim} (Free)`,
281
281
  `Or use a premium handle like ${c.reset}${c.pink}bloby.bot/YOURBOT${c.reset}${c.dim} ($5 one-time fee)`,
282
282
  ],
283
283
  },
@@ -80,7 +80,7 @@ export async function runTunnelSetup() {
80
80
  {
81
81
  value: 'quick',
82
82
  label: `Quick Tunnel ${pc.green('[Easy and Fast]')}`,
83
- hint: pc.dim('Random CloudFlare tunnel URL on every start/update\n Optional: Use Bloby Relay Server and access your bot at my.bloby.bot/YOURBOT'),
83
+ hint: pc.dim('Random CloudFlare tunnel URL on every start/update\n Optional: Use Bloby Relay Server and access your bot at open.bloby.bot/YOURBOT'),
84
84
  },
85
85
  {
86
86
  value: 'named',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bloby-bot",
3
- "version": "0.27.1",
3
+ "version": "0.27.2",
4
4
  "releaseNotes": [
5
5
  "1. # voice note (PTT bubble)",
6
6
  "2. # audio file + caption",
@@ -69,7 +69,7 @@ const MODELS: Record<string, { id: string; label: string }[]> = {
69
69
  // TOTAL_STEPS is dynamic — set inside the component based on isInitialSetup
70
70
 
71
71
  const HANDLES = [
72
- { tier: 'at', prefix: 'my.bloby.bot/', label: (n: string) => `my.bloby.bot/${n}`, badge: 'Free', badgeCls: 'bg-emerald-500/10 text-emerald-400 border-emerald-500/20', highlight: false },
72
+ { tier: 'at', prefix: 'open.bloby.bot/', label: (n: string) => `open.bloby.bot/${n}`, badge: 'Free', badgeCls: 'bg-emerald-500/10 text-emerald-400 border-emerald-500/20', highlight: false },
73
73
  { tier: 'premium', prefix: 'bloby.bot/', label: (n: string) => `bloby.bot/${n}`, badge: '$5', badgeCls: 'bg-[#AF27E3]/15 text-[#AF27E3] border-[#AF27E3]/20', highlight: true },
74
74
  ] as const;
75
75
 
@@ -1119,7 +1119,7 @@ export default function OnboardWizard({ onComplete, isInitialSetup = false, onSa
1119
1119
  </span>
1120
1120
  </div>
1121
1121
  <p className={`font-mono text-[13px] mt-1.5 ${freeSelected ? 'text-white/80' : 'text-white/40'}`}>
1122
- my.bloby.bot/{botName}
1122
+ open.bloby.bot/{botName}
1123
1123
  </p>
1124
1124
  </button>
1125
1125
  );