fluncle 0.70.0 → 0.71.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 +3 -3
- 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.71.0".trim() ? "0.71.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.71.0".trim() ? "0.71.0".trim() : "0.1.0";
|
|
2563
2563
|
});
|
|
2564
2564
|
|
|
2565
2565
|
// ../../packages/registry/src/index.ts
|
|
@@ -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