fluncle 0.70.0 → 0.72.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
|
@@ -423,7 +423,7 @@ function parseVersion(version) {
|
|
|
423
423
|
var currentVersion;
|
|
424
424
|
var init_version = __esm(() => {
|
|
425
425
|
init_output();
|
|
426
|
-
currentVersion = "0.
|
|
426
|
+
currentVersion = "0.72.0".trim() ? "0.72.0".trim() : "0.1.0";
|
|
427
427
|
});
|
|
428
428
|
|
|
429
429
|
// src/update-notifier.ts
|
|
@@ -2559,7 +2559,7 @@ function parseVersion2(version) {
|
|
|
2559
2559
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2560
2560
|
var init_version2 = __esm(() => {
|
|
2561
2561
|
init_output();
|
|
2562
|
-
currentVersion2 = "0.
|
|
2562
|
+
currentVersion2 = "0.72.0".trim() ? "0.72.0".trim() : "0.1.0";
|
|
2563
2563
|
});
|
|
2564
2564
|
|
|
2565
2565
|
// ../../packages/registry/src/index.ts
|
|
@@ -2745,7 +2745,7 @@ var init_src = __esm(() => {
|
|
|
2745
2745
|
],
|
|
2746
2746
|
kind: "subdomain",
|
|
2747
2747
|
name: "subdomain.onion",
|
|
2748
|
-
operatorNotes: "An onionspray mirror. Advertised via Tor Browser's Onion-Location pill. Probed on /status as service `onion`.
|
|
2748
|
+
operatorNotes: "An onionspray mirror. Advertised via Tor Browser's Onion-Location pill. Probed on /status as service `onion`.",
|
|
2749
2749
|
probeConfig: { cadenceMs: PROBE_CADENCE_MS, kind: "http", timeoutMs: PROBE_TIMEOUT_MS },
|
|
2750
2750
|
subdomain: "p53pc2uzfu2tnih4cd6wd42ok6zup2uttj6xdmjdccy5kqo33fyppkqd.onion",
|
|
2751
2751
|
url: "http://p53pc2uzfu2tnih4cd6wd42ok6zup2uttj6xdmjdccy5kqo33fyppkqd.onion",
|
|
@@ -4037,7 +4037,7 @@ function setVideoUrl(logId) {
|
|
|
4037
4037
|
return `${FOUND_BASE3}/${encodeURIComponent(logId)}/set.mp4`;
|
|
4038
4038
|
}
|
|
4039
4039
|
function escapeDrawtextValue(text) {
|
|
4040
|
-
return text.replace(/\\/g, "\\\\").replace(/%/g, "\\%").replace(/'/g, "'\\''");
|
|
4040
|
+
return text.replace(/\\/g, "\\\\").replace(/:/g, "\\:").replace(/,/g, "\\,").replace(/%/g, "\\%").replace(/'/g, "'\\''");
|
|
4041
4041
|
}
|
|
4042
4042
|
function clipCutVideoFilter(options) {
|
|
4043
4043
|
const xOffset = Math.max(0, Math.round(options.xOffset));
|
package/package.json
CHANGED