fluncle 0.96.0 → 0.97.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/bin/fluncle.mjs +14 -3
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -489,11 +489,12 @@ function baseTitleMatches(findingTitle, candidateTitle) {
|
|
|
489
489
|
}
|
|
490
490
|
return true;
|
|
491
491
|
}
|
|
492
|
-
var VERSION_MARKER, REMIX_MARKER, VERSION_STOPWORDS;
|
|
492
|
+
var VERSION_MARKER, REMIX_MARKER, VERSION_STOPWORDS, TIKTOK_DRAFT_STALE_MS;
|
|
493
493
|
var init_util = __esm(() => {
|
|
494
494
|
VERSION_MARKER = /\b(mix|edit|version|remix|dub|vip|bootleg|rework|re-?edit|flip|refix|remaster(?:ed)?|instrumental)\b/i;
|
|
495
495
|
REMIX_MARKER = /\b(remix|bootleg|vip|rework|re-?edit|flip|refix)\b/i;
|
|
496
496
|
VERSION_STOPWORDS = new Set(["mix", "the", "and", "feat", "ft", "edit", "version", "remix"]);
|
|
497
|
+
TIKTOK_DRAFT_STALE_MS = 24 * 60 * 60 * 1000;
|
|
497
498
|
});
|
|
498
499
|
|
|
499
500
|
// src/output.ts
|
|
@@ -556,7 +557,7 @@ function parseVersion(version) {
|
|
|
556
557
|
var currentVersion;
|
|
557
558
|
var init_version = __esm(() => {
|
|
558
559
|
init_output();
|
|
559
|
-
currentVersion = "0.
|
|
560
|
+
currentVersion = "0.97.0".trim() ? "0.97.0".trim() : "0.1.0";
|
|
560
561
|
});
|
|
561
562
|
|
|
562
563
|
// src/update-notifier.ts
|
|
@@ -2186,7 +2187,7 @@ function parseVersion2(version) {
|
|
|
2186
2187
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2187
2188
|
var init_version2 = __esm(() => {
|
|
2188
2189
|
init_output();
|
|
2189
|
-
currentVersion2 = "0.
|
|
2190
|
+
currentVersion2 = "0.97.0".trim() ? "0.97.0".trim() : "0.1.0";
|
|
2190
2191
|
});
|
|
2191
2192
|
|
|
2192
2193
|
// ../../packages/registry/src/index.ts
|
|
@@ -2835,6 +2836,16 @@ var init_src = __esm(() => {
|
|
|
2835
2836
|
kind: "cron"
|
|
2836
2837
|
},
|
|
2837
2838
|
weights: { status: "secondary" }
|
|
2839
|
+
},
|
|
2840
|
+
{
|
|
2841
|
+
exposedContent: [
|
|
2842
|
+
"daily gzip dump of the prod database → a PRIVATE R2 bucket (owned off-site backup) + 30 daily / 12 monthly retention (--no-agent)"
|
|
2843
|
+
],
|
|
2844
|
+
kind: "cron",
|
|
2845
|
+
name: "cron.backup",
|
|
2846
|
+
operatorNotes: "daily. An OWNED, off-Cloudflare backup: dumps prod Turso over the libSQL HTTP pipeline → gzip → a PRIVATE R2 bucket (never fluncle-videos, which is world-served at found.fluncle.com) + prune. Zero LLM tokens; talks to Turso + R2 directly (no fluncle CLI, no agent token). Turso's managed PITR is the belt; this is the braces. Restore is proven by apps/web/scripts/restore-drill.ts. Source: docs/agents/hermes/scripts/backup-sweep.*",
|
|
2847
|
+
probeConfig: { cadenceMs: 24 * 60 * MINUTE_MS, cronName: "fluncle-backup", kind: "cron" },
|
|
2848
|
+
weights: { status: "secondary" }
|
|
2838
2849
|
}
|
|
2839
2850
|
];
|
|
2840
2851
|
});
|
package/package.json
CHANGED