dj-claude 0.1.13 → 0.1.14

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.
@@ -22,7 +22,7 @@ export function getPageHtml(wsPort) {
22
22
  <head>
23
23
  <meta charset="UTF-8">
24
24
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
25
- <title>DJ Claude | v 0.1.13</title>
25
+ <title>DJ Claude | v 0.1.14</title>
26
26
  <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🔈</text></svg>">
27
27
  <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
28
28
  <style>
@@ -111,7 +111,7 @@ export function getPageHtml(wsPort) {
111
111
  <!-- Welcome box -->
112
112
  <div class="ascii-box">
113
113
  <pre>╔═════════════════════════════════════════════╗</pre>
114
- <div style="display:flex"><pre>║</pre><pre style="flex:1;text-align:center">Welcome to DJ Claude <span class="dim">v 0.1.13</span></pre><pre>║</pre></div>
114
+ <div style="display:flex"><pre>║</pre><pre style="flex:1;text-align:center">Welcome to DJ Claude <span class="dim">v 0.1.14</span></pre><pre>║</pre></div>
115
115
  <pre>╚═════════════════════════════════════════════╝</pre>
116
116
  </div>
117
117
 
@@ -27,6 +27,6 @@ export function Header({ isPlaying, isStreaming, audioInitialized }) {
27
27
  statusSymbol = '●';
28
28
  statusLabel = 'Playing';
29
29
  }
30
- return (_jsxs(Box, { flexDirection: "column", alignItems: "center", children: [_jsx(Text, { color: "#E8704E", children: WELCOME_TOP }), _jsxs(Text, { color: "#E8704E", children: ['║ Welcome to DJ Claude ', _jsx(Text, { dimColor: true, children: "v 0.1.13" }), ' ║'] }), _jsx(Text, { color: "#E8704E", children: WELCOME_BTM }), _jsx(Text, { color: "#E8704E", children: BANNER }), _jsx(Text, { color: "#E8704E", dimColor: dim, children: `╔═════════════════════════╗\n║ ${statusSymbol} ${statusLabel.padEnd(14)} ║\n╚═════════════════════════╝` })] }));
30
+ return (_jsxs(Box, { flexDirection: "column", alignItems: "center", children: [_jsx(Text, { color: "#E8704E", children: WELCOME_TOP }), _jsxs(Text, { color: "#E8704E", children: ['║ Welcome to DJ Claude ', _jsx(Text, { dimColor: true, children: "v 0.1.14" }), ' ║'] }), _jsx(Text, { color: "#E8704E", children: WELCOME_BTM }), _jsx(Text, { color: "#E8704E", children: BANNER }), _jsx(Text, { color: "#E8704E", dimColor: dim, children: `╔═════════════════════════╗\n║ ${statusSymbol} ${statusLabel.padEnd(14)} ║\n╚═════════════════════════╝` })] }));
31
31
  }
32
32
  //# sourceMappingURL=Header.js.map
@@ -14,7 +14,7 @@ export function getApiKey() {
14
14
  if (!key) {
15
15
  console.error('\n' +
16
16
  ' \x1b[1m╔════════════════════════════════════════════════════╗\n' +
17
- ' ║ DJ Claude \x1b[0mv 0.1.13\x1b[1m — Live coding music for Agents ║\n' +
17
+ ' ║ DJ Claude \x1b[0mv 0.1.14\x1b[1m — Live coding music for Agents ║\n' +
18
18
  ' ╚════════════════════════════════════════════════════╝\x1b[0m\n' +
19
19
  '\n' +
20
20
  ' \x1b[1m─── About ─────────────────────────────────────────────\x1b[0m\n' +
package/dist/mcp/http.js CHANGED
@@ -27,7 +27,7 @@ export async function startHttpServer(isBrowserMode = false) {
27
27
  });
28
28
  const server = new McpServer({
29
29
  name: 'dj-claude',
30
- version: '0.1.13',
30
+ version: '0.1.14',
31
31
  });
32
32
  registerTools(server);
33
33
  transport.onclose = () => {
@@ -403,7 +403,7 @@ export async function startServer(isBrowserMode = false) {
403
403
  }
404
404
  const server = new McpServer({
405
405
  name: 'dj-claude',
406
- version: '0.1.13',
406
+ version: '0.1.14',
407
407
  });
408
408
  registerTools(server);
409
409
  const transport = new StdioServerTransport();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dj-claude",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "mcpName": "io.github.p-poss/dj-claude",
5
5
  "description": "AI-generated music in your terminal — DJ Claude CLI",
6
6
  "type": "module",