fluncle 0.189.0 → 0.191.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 +4 -4
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -561,7 +561,7 @@ function parseVersion(version) {
|
|
|
561
561
|
var currentVersion;
|
|
562
562
|
var init_version = __esm(() => {
|
|
563
563
|
init_output();
|
|
564
|
-
currentVersion = "0.
|
|
564
|
+
currentVersion = "0.191.0".trim() ? "0.191.0".trim() : "0.1.0";
|
|
565
565
|
});
|
|
566
566
|
|
|
567
567
|
// src/update-notifier.ts
|
|
@@ -2443,7 +2443,7 @@ function parseVersion2(version) {
|
|
|
2443
2443
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2444
2444
|
var init_version2 = __esm(() => {
|
|
2445
2445
|
init_output();
|
|
2446
|
-
currentVersion2 = "0.
|
|
2446
|
+
currentVersion2 = "0.191.0".trim() ? "0.191.0".trim() : "0.1.0";
|
|
2447
2447
|
});
|
|
2448
2448
|
|
|
2449
2449
|
// ../../packages/registry/src/index.ts
|
|
@@ -3677,7 +3677,7 @@ var init_src = __esm(() => {
|
|
|
3677
3677
|
],
|
|
3678
3678
|
kind: "cron",
|
|
3679
3679
|
name: "cron.social-capture",
|
|
3680
|
-
operatorNotes: "every 10m. Pure HTTP trigger, zero LLM tokens. Agent tier (fills the public URL only — publishes nothing). The box's baked CLI predates the `--capture` verb, so the cron curls POST /api/admin/social/posts/capture directly; the Worker polls Postiz and writes back. Source: docs/agents/hermes/scripts/social-capture-sweep.sh. Probed on /status as cron.social-capture.",
|
|
3680
|
+
operatorNotes: "every 10m. Pure HTTP trigger, zero LLM tokens. Agent tier (fills the public URL only — publishes nothing). The box's baked CLI predates the `--capture` verb, so the cron curls POST /api/v1/admin/social/posts/capture directly; the Worker polls Postiz and writes back. Source: docs/agents/hermes/scripts/social-capture-sweep.sh. Probed on /status as cron.social-capture.",
|
|
3681
3681
|
probeConfig: { cadenceMs: 10 * MINUTE_MS, cronName: "fluncle-social-capture", kind: "cron" },
|
|
3682
3682
|
statusDescription: "the live YouTube and TikTok URLs for each posted video",
|
|
3683
3683
|
title: "Social links",
|
|
@@ -6963,7 +6963,7 @@ async function paginateWithKeyboard(options) {
|
|
|
6963
6963
|
const start = before + 1;
|
|
6964
6964
|
const end = before + page.lines.length;
|
|
6965
6965
|
const loading = busy ? " · loading…" : "";
|
|
6966
|
-
const footer = `${start}–${end} of ${page.total} ←/→ page · q quit${loading}`;
|
|
6966
|
+
const footer = `${start}–${end} of ${pages[0]?.total ?? page.total} ←/→ page · q quit${loading}`;
|
|
6967
6967
|
const lines = [...page.lines, "", footer].map((line) => truncateTerminalLine2(line, columns));
|
|
6968
6968
|
renderedLines = lines.length;
|
|
6969
6969
|
stdout.write(`${lines.join(`
|
package/package.json
CHANGED