fluncle 0.166.0 → 0.167.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 +39 -7
  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.166.0".trim() ? "0.166.0".trim() : "0.1.0";
564
+ currentVersion = "0.167.0".trim() ? "0.167.0".trim() : "0.1.0";
565
565
  });
566
566
 
567
567
  // src/update-notifier.ts
@@ -2229,7 +2229,7 @@ function parseVersion2(version) {
2229
2229
  var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
2230
2230
  var init_version2 = __esm(() => {
2231
2231
  init_output();
2232
- currentVersion2 = "0.166.0".trim() ? "0.166.0".trim() : "0.1.0";
2232
+ currentVersion2 = "0.167.0".trim() ? "0.167.0".trim() : "0.1.0";
2233
2233
  });
2234
2234
 
2235
2235
  // ../../packages/registry/src/index.ts
@@ -2708,6 +2708,29 @@ var init_src = __esm(() => {
2708
2708
  url: `${SITE}/feed.json`,
2709
2709
  weights: { web: "secondary" }
2710
2710
  },
2711
+ {
2712
+ apiFormat: "application/rss+xml",
2713
+ exposedContent: [
2714
+ "the newest drum & bass releases over a 30-day window, as RSS (release-dated, not found-dated)"
2715
+ ],
2716
+ kind: "feed",
2717
+ name: "feed.fresh.rss",
2718
+ probeConfig: { cadenceMs: PROBE_CADENCE_MS, kind: "http", timeoutMs: PROBE_TIMEOUT_MS },
2719
+ route: "/fresh.xml",
2720
+ url: `${SITE}/fresh.xml`,
2721
+ weights: { web: "secondary" }
2722
+ },
2723
+ {
2724
+ apiFormat: "application/feed+json",
2725
+ exposedContent: [
2726
+ "the newest drum & bass releases over a 30-day window, as a JSON Feed (release-dated)"
2727
+ ],
2728
+ kind: "feed",
2729
+ name: "feed.fresh.json",
2730
+ route: "/fresh.json",
2731
+ url: `${SITE}/fresh.json`,
2732
+ weights: { web: "secondary" }
2733
+ },
2711
2734
  {
2712
2735
  apiFormat: "application/rss+xml",
2713
2736
  exposedContent: ["the mixtapes as a podcast feed (episode audio on found.fluncle.com)"],
@@ -2833,7 +2856,7 @@ var init_src = __esm(() => {
2833
2856
  apiFormat: "application/json",
2834
2857
  discoveryUrl: `${SITE}/.well-known/mcp/server-card.json`,
2835
2858
  exposedContent: [
2836
- "the archive as MCP tools (Streamable HTTP, no auth): list_tracks, get_track, get_random_track, get_status, search_tracks, submit_track, subscribe_newsletter",
2859
+ "the archive as MCP tools (Streamable HTTP, no auth): list_tracks, list_fresh, get_track, get_random_track, get_status, search_tracks, submit_track, subscribe_newsletter",
2837
2860
  "the archive as MCP resources: each finding/mixtape at fluncle://finding/<logId> or fluncle://mixtape/<logId> (its public record)",
2838
2861
  "Fluncle-voiced MCP prompts: recommend_finding, walk_recent_night, decode_coordinate"
2839
2862
  ],
@@ -2860,8 +2883,8 @@ var init_src = __esm(() => {
2860
2883
  {
2861
2884
  command: "ssh rave.fluncle.com",
2862
2885
  exposedContent: [
2863
- "the rave terminal TUI: Latest bangers, Artist archive, Sonic galaxies, Mixtape archive, Random banger, Submit, Subscribe, Install CLI, System status, About",
2864
- "deep-register one-shots: `ssh rave.fluncle.com latest|random`"
2886
+ "the rave terminal TUI: Latest bangers, Fresh releases, Artist archive, Sonic galaxies, Mixtape archive, Random banger, Submit, Subscribe, Install CLI, System status, About",
2887
+ "deep-register one-shots: `ssh rave.fluncle.com latest|fresh|random`"
2865
2888
  ],
2866
2889
  kind: "ssh",
2867
2890
  name: "ssh.rave",
@@ -2877,6 +2900,13 @@ var init_src = __esm(() => {
2877
2900
  name: "cli.recent",
2878
2901
  weights: { cli: "primary", web: "tertiary" }
2879
2902
  },
2903
+ {
2904
+ command: "fluncle fresh",
2905
+ exposedContent: ["the newest drum & bass releases, newest out first"],
2906
+ kind: "cli",
2907
+ name: "cli.fresh",
2908
+ weights: { cli: "secondary", web: "tertiary" }
2909
+ },
2880
2910
  {
2881
2911
  command: "fluncle mixtapes",
2882
2912
  exposedContent: ["Fluncle's checkpoint sets"],
@@ -3625,7 +3655,8 @@ async function trackVideoCommand(idOrLogId, files, onProgress, options = {}) {
3625
3655
  ...squared ? { squared: true } : {},
3626
3656
  ...manifest.vehicle ? { videoVehicle: manifest.vehicle } : {},
3627
3657
  ...manifest.grain ? { videoGrain: manifest.grain } : {},
3628
- ...manifest.register ? { videoRegister: manifest.register } : {}
3658
+ ...manifest.register ? { videoRegister: manifest.register } : {},
3659
+ ...manifest.palette ? { videoPalette: manifest.palette } : {}
3629
3660
  });
3630
3661
  return { logId: finalize.logId, ok: true, trackId: finalize.trackId, urls };
3631
3662
  }
@@ -3634,7 +3665,7 @@ async function readManifestFields(renderPath) {
3634
3665
  try {
3635
3666
  const manifest = await Bun.file(renderPath).json();
3636
3667
  const parsed = {};
3637
- for (const key of ["vehicle", "grain", "model", "reasoning", "register"]) {
3668
+ for (const key of ["vehicle", "grain", "model", "reasoning", "register", "palette"]) {
3638
3669
  const value = manifest[key];
3639
3670
  if (typeof value === "string" && value.trim()) {
3640
3671
  parsed[key] = value.trim().slice(0, 120);
@@ -4146,6 +4177,7 @@ async function vehiclesCommand(limit) {
4146
4177
  artists: track.artists,
4147
4178
  grain: track.videoGrain,
4148
4179
  logId: track.logId,
4180
+ palette: track.videoPalette,
4149
4181
  register: track.videoRegister,
4150
4182
  title: track.title,
4151
4183
  vehicle: track.videoVehicle
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.166.0"
34
+ "version": "0.167.0"
35
35
  }