parrot-blackbox 1.0.3 → 1.0.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.
- package/README.md +6 -5
- package/package.json +1 -1
- package/src/cli.js +1 -1
- package/src/commands/remote.js +1 -1
- package/src/commands/setup.js +1 -1
- package/src/commands/wizard.js +1 -1
- package/src/core/store.js +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ Parrot install died" — a single CLI + background daemon that:
|
|
|
16
16
|
missed backups are run **in order, oldest first, the moment WiFi is back**.
|
|
17
17
|
Every job is journalled and retried; a lock prevents collisions; state is
|
|
18
18
|
written atomically. Nothing is silently lost.
|
|
19
|
-
4. **Manages ~
|
|
19
|
+
4. **Manages ~175 GB of free cloud storage for you** — 5 MEGA + 5 Google Drive
|
|
20
20
|
accounts are connected as one pool. Files are placed whole on whichever
|
|
21
21
|
account has the most relative headroom; anything bigger than a single
|
|
22
22
|
account's free space is split into byte-range chunks across accounts and a
|
|
@@ -436,13 +436,14 @@ y/e> y ⬅ y confirms permanent deletion
|
|
|
436
436
|
## How the smart storage pool works
|
|
437
437
|
|
|
438
438
|
```
|
|
439
|
-
5 MEGA (20 GiB each)
|
|
440
|
-
5 Drive (
|
|
439
|
+
5 MEGA (20 GiB each) = 100 GiB
|
|
440
|
+
5 Drive (15 GiB each) = 75 GiB ← Google Drive free tier is 15 GiB
|
|
441
441
|
──────────────────────────────
|
|
442
|
-
≈
|
|
442
|
+
≈ 175 GiB managed automatically
|
|
443
443
|
```
|
|
444
444
|
|
|
445
|
-
|
|
445
|
+
(Your live `account list` proves it: 10 accounts → 175 GiB total.)
|
|
446
|
+
Every account is exactly one rclone remote (`mega-1:`, `gdrive-6:` …).
|
|
446
447
|
- Each backup has **one manifest** that records where every file (or chunk) is.
|
|
447
448
|
- Placement picks the account that would end up with the **lowest used
|
|
448
449
|
percentage** (water-filling), then most free.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "parrot-blackbox",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "parrot-blackbox — crash-proof, multi-cloud backup & recovery automation for Parrot OS. Daily/weekly off-disk backups with automatic catch-up, smart storage across many MEGA + Google Drive accounts, Timeshift snapshot backups and one-command restore.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/cli.js",
|
package/src/cli.js
CHANGED
|
@@ -293,7 +293,7 @@ async function remoteCommands(rest) {
|
|
|
293
293
|
message: 'Provider?',
|
|
294
294
|
options: [
|
|
295
295
|
{ value: 'mega', label: 'MEGA (20 GB free tier)' },
|
|
296
|
-
{ value: 'gdrive', label: 'Google Drive (
|
|
296
|
+
{ value: 'gdrive', label: 'Google Drive (15 GB free tier)' },
|
|
297
297
|
],
|
|
298
298
|
});
|
|
299
299
|
if (p.isCancel(choice)) return;
|
package/src/commands/remote.js
CHANGED
|
@@ -115,7 +115,7 @@ export async function registerRemotesAsAccounts() {
|
|
|
115
115
|
message: `Provider for "${remote}"?`,
|
|
116
116
|
options: [
|
|
117
117
|
{ value: 'mega', label: 'MEGA (20 GB free tier)' },
|
|
118
|
-
{ value: 'gdrive', label: 'Google Drive (
|
|
118
|
+
{ value: 'gdrive', label: 'Google Drive (15 GB free tier)' },
|
|
119
119
|
],
|
|
120
120
|
});
|
|
121
121
|
if (p.isCancel(provider)) continue;
|
package/src/commands/setup.js
CHANGED
|
@@ -99,7 +99,7 @@ async function storagePoolStep() {
|
|
|
99
99
|
message: 'Which provider?',
|
|
100
100
|
options: [
|
|
101
101
|
{ value: 'mega', label: 'MEGA (20 GB free tier)' },
|
|
102
|
-
{ value: 'gdrive', label: 'Google Drive (
|
|
102
|
+
{ value: 'gdrive', label: 'Google Drive (15 GB free tier)' },
|
|
103
103
|
],
|
|
104
104
|
});
|
|
105
105
|
if (p.isCancel(provider)) break;
|
package/src/commands/wizard.js
CHANGED
|
@@ -51,7 +51,7 @@ async function addAccountAction() {
|
|
|
51
51
|
message: 'Which provider?',
|
|
52
52
|
options: [
|
|
53
53
|
{ value: 'mega', label: 'MEGA (20 GB free tier)' },
|
|
54
|
-
{ value: 'gdrive', label: 'Google Drive (
|
|
54
|
+
{ value: 'gdrive', label: 'Google Drive (15 GB free tier)' },
|
|
55
55
|
{ value: 'back', label: '← Back' },
|
|
56
56
|
],
|
|
57
57
|
});
|
package/src/core/store.js
CHANGED