fluncle 0.83.0 → 0.84.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
|
@@ -538,7 +538,7 @@ function parseVersion(version) {
|
|
|
538
538
|
var currentVersion;
|
|
539
539
|
var init_version = __esm(() => {
|
|
540
540
|
init_output();
|
|
541
|
-
currentVersion = "0.
|
|
541
|
+
currentVersion = "0.84.0".trim() ? "0.84.0".trim() : "0.1.0";
|
|
542
542
|
});
|
|
543
543
|
|
|
544
544
|
// src/update-notifier.ts
|
|
@@ -2446,7 +2446,7 @@ function parseVersion2(version) {
|
|
|
2446
2446
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2447
2447
|
var init_version2 = __esm(() => {
|
|
2448
2448
|
init_output();
|
|
2449
|
-
currentVersion2 = "0.
|
|
2449
|
+
currentVersion2 = "0.84.0".trim() ? "0.84.0".trim() : "0.1.0";
|
|
2450
2450
|
});
|
|
2451
2451
|
|
|
2452
2452
|
// ../../packages/registry/src/index.ts
|
|
@@ -3905,7 +3905,7 @@ async function recordingGetCommand(id, options = {}) {
|
|
|
3905
3905
|
return;
|
|
3906
3906
|
}
|
|
3907
3907
|
console.log(formatRecordingSummary(recording));
|
|
3908
|
-
console.log(` r2Key: ${recording.r2Key}`);
|
|
3908
|
+
console.log(` r2Key: ${recording.r2Key ?? "— (no set video)"}`);
|
|
3909
3909
|
for (const cue of recording.tracklist) {
|
|
3910
3910
|
const at = cue.startMs === undefined ? "—" : `${(cue.startMs / 1000).toFixed(1)}s`;
|
|
3911
3911
|
console.log(` ${at} ${cue.artists.join(", ")} — ${cue.title}`);
|
|
@@ -4480,7 +4480,7 @@ async function recordingGetCommand2(id, options = {}) {
|
|
|
4480
4480
|
return;
|
|
4481
4481
|
}
|
|
4482
4482
|
console.log(formatRecordingSummary2(recording));
|
|
4483
|
-
console.log(` r2Key: ${recording.r2Key}`);
|
|
4483
|
+
console.log(` r2Key: ${recording.r2Key ?? "— (no set video)"}`);
|
|
4484
4484
|
for (const cue of recording.tracklist) {
|
|
4485
4485
|
const at = cue.startMs === undefined ? "—" : `${(cue.startMs / 1000).toFixed(1)}s`;
|
|
4486
4486
|
console.log(` ${at} ${cue.artists.join(", ")} — ${cue.title}`);
|
package/package.json
CHANGED