fluncle 0.221.0 → 0.222.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.
Files changed (2) hide show
  1. package/bin/fluncle.mjs +12 -2
  2. package/package.json +1 -1
package/bin/fluncle.mjs CHANGED
@@ -610,7 +610,7 @@ function parseVersion(version) {
610
610
  var currentVersion;
611
611
  var init_version = __esm(() => {
612
612
  init_output();
613
- currentVersion = "0.221.0".trim() ? "0.221.0".trim() : "0.1.0";
613
+ currentVersion = "0.222.0".trim() ? "0.222.0".trim() : "0.1.0";
614
614
  });
615
615
 
616
616
  // src/update-notifier.ts
@@ -2452,7 +2452,7 @@ function parseVersion2(version) {
2452
2452
  var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
2453
2453
  var init_version2 = __esm(() => {
2454
2454
  init_output();
2455
- currentVersion2 = "0.221.0".trim() ? "0.221.0".trim() : "0.1.0";
2455
+ currentVersion2 = "0.222.0".trim() ? "0.222.0".trim() : "0.1.0";
2456
2456
  });
2457
2457
 
2458
2458
  // ../../packages/registry/src/index.ts
@@ -12929,6 +12929,11 @@ async function runCatalogueRank(options, catalogueRankCommand2) {
12929
12929
  console.log(telescope.ok ? `Telescope: ${telescope.size} aboard${telescope.changed ? " (updated)" : ""}.` : `Telescope: sync failed \u2014 ${telescope.reason}`);
12930
12930
  }
12931
12931
  }
12932
+ function unmatchedRowLine(track) {
12933
+ const identity = `${track.artists.join(", ")} \u2014 ${track.title}`;
12934
+ const attempted = track.sourceAudioAttemptedAt ? `last tried ${track.sourceAudioAttemptedAt}` : "never tried";
12935
+ return `${track.captureStatus ?? "unmatched"} ${identity.padEnd(52)} ${attempted}`;
12936
+ }
12932
12937
  async function runCatalogueList(options, catalogueListCommand2) {
12933
12938
  const { summary, tracks } = await catalogueListCommand2({
12934
12939
  lens: options.lens,
@@ -12950,6 +12955,10 @@ async function runCatalogueList(options, catalogueListCommand2) {
12950
12955
  console.log(`wrong-audio ${identity.padEnd(52)} ${why2}`);
12951
12956
  continue;
12952
12957
  }
12958
+ if (options.lens === "unmatched") {
12959
+ console.log(unmatchedRowLine(track));
12960
+ continue;
12961
+ }
12953
12962
  const dup = track.duplicateOf;
12954
12963
  const dupWhy = dup ? `already in the archive \u2014 ${dup.logId ? `${dup.logId} ` : ""}${dup.artists.join(", ")} \u2014 ${dup.title}` : null;
12955
12964
  if (options.lens === "capture") {
@@ -13822,6 +13831,7 @@ if (__require.main == __require.module) {
13822
13831
  await main();
13823
13832
  }
13824
13833
  export {
13834
+ unmatchedRowLine,
13825
13835
  parseTelemetryTimestamp,
13826
13836
  labelUpdateLines,
13827
13837
  createProgram,
package/package.json CHANGED
@@ -31,5 +31,5 @@
31
31
  "url": "git+https://github.com/mauricekleine/fluncle.git"
32
32
  },
33
33
  "type": "module",
34
- "version": "0.221.0"
34
+ "version": "0.222.0"
35
35
  }