fluncle 0.191.0 → 0.192.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 +11 -3
  2. 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.191.0".trim() ? "0.191.0".trim() : "0.1.0";
564
+ currentVersion = "0.192.0".trim() ? "0.192.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.191.0".trim() ? "0.191.0".trim() : "0.1.0";
2446
+ currentVersion2 = "0.192.0".trim() ? "0.192.0".trim() : "0.1.0";
2447
2447
  });
2448
2448
 
2449
2449
  // ../../packages/registry/src/index.ts
@@ -4154,6 +4154,9 @@ async function trackUpdateCommand(trackId, options) {
4154
4154
  if (options.galaxyId !== undefined) {
4155
4155
  body.galaxyId = options.galaxyId;
4156
4156
  }
4157
+ if (options.isrc !== undefined) {
4158
+ body.isrc = options.isrc;
4159
+ }
4157
4160
  if (options.note !== undefined) {
4158
4161
  body.note = options.note;
4159
4162
  }
@@ -4364,6 +4367,9 @@ async function trackUpdateCommand2(trackId, options) {
4364
4367
  if (options.galaxyId !== undefined) {
4365
4368
  body.galaxyId = options.galaxyId;
4366
4369
  }
4370
+ if (options.isrc !== undefined) {
4371
+ body.isrc = options.isrc;
4372
+ }
4367
4373
  if (options.note !== undefined) {
4368
4374
  body.note = options.note;
4369
4375
  }
@@ -9459,7 +9465,7 @@ function addAdminCommands(program2) {
9459
9465
  const { mixableOrderCommand: mixableOrderCommand2 } = await Promise.resolve().then(() => (init_admin_tracks(), exports_admin_tracks));
9460
9466
  await runMixableOrder(logIds, options, mixableOrderCommand2);
9461
9467
  });
9462
- adminTrack.command("update").description("Certify a track into the archive").argument("[trackId]").option("--analyzed-at <iso>", "Analysis-write ISO timestamp (BPM/key provenance)").option("--analyzed-from <class>", "Audio class BPM/key were analyzed from: full or preview").option("--bpm <number>", "Track BPM").option("--bpm-confidence <number>", "Analyzer confidence in the BPM (0..1)").option("--bpm-source <source>", "Where the BPM came from (analyzer bpmSource)").option("--embedding <json>", "MuQ audio embedding as a JSON array of 1024 floats").option("--embedding-file <file>", "Read the MuQ embedding JSON array from a file").option("--features <json>", "Audio feature JSON").option("--galaxy-id <id>", "Sonic galaxy assignment (empty string clears it)").option("--json", "Print JSON", false).option("--key <key>", "Musical key").option("--key-confidence <number>", "Analyzer confidence in the key (0..1)").option("--key-source <source>", "Where the key came from (analyzer keySource)").option("--note <text>", "Operator note").option("--status <status>", "Enrichment status").option("--video-url <url>", "Rendered video URL").allowExcessArguments().action(async (trackId, options) => {
9468
+ adminTrack.command("update").description("Certify a track into the archive").argument("[trackId]").option("--analyzed-at <iso>", "Analysis-write ISO timestamp (BPM/key provenance)").option("--analyzed-from <class>", "Audio class BPM/key were analyzed from: full or preview").option("--bpm <number>", "Track BPM").option("--bpm-confidence <number>", "Analyzer confidence in the BPM (0..1)").option("--bpm-source <source>", "Where the BPM came from (analyzer bpmSource)").option("--embedding <json>", "MuQ audio embedding as a JSON array of 1024 floats").option("--embedding-file <file>", "Read the MuQ embedding JSON array from a file").option("--features <json>", "Audio feature JSON").option("--galaxy-id <id>", "Sonic galaxy assignment (empty string clears it)").option("--isrc <isrc>", "The recording's ISRC (operator identity correction)").option("--json", "Print JSON", false).option("--key <key>", "Musical key").option("--key-confidence <number>", "Analyzer confidence in the key (0..1)").option("--key-source <source>", "Where the key came from (analyzer keySource)").option("--note <text>", "Operator note").option("--status <status>", "Enrichment status").option("--video-url <url>", "Rendered video URL").allowExcessArguments().action(async (trackId, options) => {
9463
9469
  const { trackUpdateCommand: trackUpdateCommand3 } = await Promise.resolve().then(() => (init_track(), exports_track));
9464
9470
  await runTrackUpdate(trackId, options, trackUpdateCommand3);
9465
9471
  });
@@ -11426,6 +11432,7 @@ async function runTrackUpdate(trackId, options, trackUpdateCommand3) {
11426
11432
  embedding,
11427
11433
  features: options.features,
11428
11434
  galaxyId: options.galaxyId,
11435
+ isrc: options.isrc,
11429
11436
  key: options.key,
11430
11437
  keyConfidence,
11431
11438
  keySource: options.keySource,
@@ -12740,6 +12747,7 @@ var stringOptions = new Set([
12740
12747
  "--gb",
12741
12748
  "--has-key",
12742
12749
  "--intent",
12750
+ "--isrc",
12743
12751
  "--key",
12744
12752
  "--key-confidence",
12745
12753
  "--key-source",
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.191.0"
34
+ "version": "0.192.0"
35
35
  }