@elefunc/send 0.1.16 → 0.1.17

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/tui/app.ts +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elefunc/send",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "description": "Browser-compatible file transfer CLI and TUI powered by Bun, WebRTC, and Rezi.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/tui/app.ts CHANGED
@@ -130,7 +130,7 @@ const HEADING_TEXT_STYLE = { fg: rgb(255, 255, 255), bold: true } as const
130
130
  const MUTED_TEXT_STYLE = { fg: rgb(159, 166, 178) } as const
131
131
  const DEFAULT_WEB_URL = "https://rtme.sh/"
132
132
  const DEFAULT_SAVE_DIR = resolve(process.cwd())
133
- const ABOUT_ELEFUNC_URL = "https://elefunc.com/send"
133
+ const ABOUT_ELEFUNC_URL = "https://rtme.sh/send"
134
134
  const ABOUT_TITLE = "About Send"
135
135
  const ABOUT_INTRO = "Peer-to-Peer Transfers – Web & CLI"
136
136
  const ABOUT_SUMMARY = "Join the same room, see who is there, and offer files directly to selected peers."
@@ -860,8 +860,8 @@ const renderAboutModal = (_state: TuiState, actions: TuiActions) => {
860
860
  actions: [
861
861
  ui.link({
862
862
  id: "about-elefunc-link",
863
- label: "elefunc.com/send",
864
- accessibleLabel: "Open Elefunc Send page",
863
+ label: "rtme.sh/send",
864
+ accessibleLabel: "Open rtme.sh Send page",
865
865
  url: ABOUT_ELEFUNC_URL,
866
866
  }),
867
867
  actionButton("close-about", "Close", actions.closeAbout, "primary"),
@@ -882,8 +882,8 @@ const renderInviteDropdown = (state: TuiState, actions: TuiActions) => ui.dropdo
882
882
  anchorId: ROOM_INVITE_BUTTON_ID,
883
883
  position: "below-end",
884
884
  items: [
885
- { id: "web", label: "WEB", shortcut: inviteWebLabel(state) },
886
885
  { id: "cli", label: "CLI", shortcut: inviteCliText(state) },
886
+ { id: "web", label: "WEB", shortcut: inviteWebLabel(state) },
887
887
  ],
888
888
  onSelect: item => { if (item.id === "web") actions.copyWebInvite(); if (item.id === "cli") actions.copyCliInvite() },
889
889
  onClose: actions.closeInviteDropdown,