instbyte 1.7.0 → 1.9.0
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 +12 -3
- package/client/css/app.css +943 -443
- package/client/index.html +11 -4
- package/client/js/app.js +569 -168
- package/package.json +1 -1
- package/server/cleanup.js +3 -4
- package/server/config.js +1 -0
- package/server/db.js +3 -0
- package/server/server.js +120 -5
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ One person runs the server — everyone else on the same WiFi opens the URL in t
|
|
|
63
63
|
|
|
64
64
|
**Sharing is instant:**
|
|
65
65
|
- Type or paste text → hit Send
|
|
66
|
-
- Paste anywhere on the page → auto-sends
|
|
66
|
+
- Paste anywhere on the page → auto-sends text or uploads images directly
|
|
67
67
|
- Drag a file anywhere onto the page → uploads
|
|
68
68
|
- Click any text item → copies to clipboard
|
|
69
69
|
- Click any file item → downloads
|
|
@@ -125,7 +125,7 @@ Instbyte works out of the box with zero configuration. All options are optional
|
|
|
125
125
|
| `server.port` | `3000` | Port to run on. Overridden by `PORT` env var if set |
|
|
126
126
|
| `auth.passphrase` | `""` | Shared passphrase for access. Empty = no auth |
|
|
127
127
|
| `storage.maxFileSize` | `"2GB"` | Max upload size. Accepts `KB`, `MB`, `GB` |
|
|
128
|
-
| `storage.retention` | `"24h"` | How long before items auto-delete. Accepts `h`, `d` |
|
|
128
|
+
| `storage.retention` | `"24h"` | How long before items auto-delete. Accepts `h`, `d`, or `"never"` to disable cleanup entirely |
|
|
129
129
|
| `branding.appName` | `"Instbyte"` | App name in header and browser tab |
|
|
130
130
|
| `branding.primaryColor` | `"#111827"` | Primary brand color in hex. Full palette auto-derived |
|
|
131
131
|
| `branding.logoPath` | — | Path to your logo file relative to where you run the command |
|
|
@@ -163,12 +163,21 @@ The difference between *a tool you use* and *a tool you own.*
|
|
|
163
163
|
|
|
164
164
|
**Smart port handling** — if port 3000 is busy, Instbyte finds the next available port automatically.
|
|
165
165
|
|
|
166
|
-
**Short-lived by design** —
|
|
166
|
+
**Short-lived by design** — content auto-deletes after 24 hours by default. Configure retention per your needs, or disable cleanup entirely.
|
|
167
167
|
|
|
168
168
|
**QR join** — built-in QR code so phones can join instantly without typing the URL.
|
|
169
169
|
|
|
170
170
|
**Dark mode** — follows system preference automatically. Override with the toggle in the header.
|
|
171
171
|
|
|
172
|
+
**Undo delete** — recover accidentally removed items instantly before they’re gone.
|
|
173
|
+
|
|
174
|
+
**New drop alerts** — get a notification sound when something is added in your current channel and visual indicators for activity in others.
|
|
175
|
+
|
|
176
|
+
**Presence awareness** — see how many people are currently connected in real time.
|
|
177
|
+
|
|
178
|
+
**Read receipts** — see how many devices have viewed each shared item. Updates live as teammates open the page.
|
|
179
|
+
|
|
180
|
+
**Item management** — add optional titles to label any item for future reference. Edit text items inline without deleting and re-pasting. Pinned items are protected from both manual deletion and auto-cleanup.
|
|
172
181
|
---
|
|
173
182
|
|
|
174
183
|
## Keyboard Shortcuts
|