claude-threads 0.12.0 → 0.12.1

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/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.12.1] - 2025-12-29
11
+
12
+ ### Fixed
13
+ - **Fix logo star positioning** - Right bottom star shifted left as intended
14
+ - **Update README** - Title changed to "Claude Threads" and logo added
15
+
10
16
  ## [0.12.0] - 2025-12-29
11
17
 
12
18
  ### Changed
package/README.md CHANGED
@@ -1,4 +1,10 @@
1
- # Mattermost Claude Code Bridge
1
+ # Claude Threads
2
+
3
+ ```
4
+ ✴ ▄█▀ ███ ✴ claude-threads
5
+ ✴ █▀ █ ✴ Mattermost × Claude Code
6
+ ✴ ▀█▄ █ ✴
7
+ ```
2
8
 
3
9
  [![npm version](https://img.shields.io/npm/v/claude-threads.svg)](https://www.npmjs.com/package/claude-threads)
4
10
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
package/dist/logo.d.ts CHANGED
@@ -12,7 +12,7 @@ export declare const CLI_LOGO: string;
12
12
  * ASCII logo for Mattermost (plain text, no ANSI codes)
13
13
  * Use getMattermostLogo(version) instead to include version
14
14
  */
15
- export declare const MATTERMOST_LOGO = "```\n \u2734 \u2584\u2588\u2580 \u2588\u2588\u2588 \u2734 claude-threads\n\u2734 \u2588\u2580 \u2588 \u2734 Mattermost \u00D7 Claude Code\n\u2734 \u2580\u2588\u2584 \u2588 \u2734\n```";
15
+ export declare const MATTERMOST_LOGO = "```\n \u2734 \u2584\u2588\u2580 \u2588\u2588\u2588 \u2734 claude-threads\n\u2734 \u2588\u2580 \u2588 \u2734 Mattermost \u00D7 Claude Code\n \u2734 \u2580\u2588\u2584 \u2588 \u2734\n```";
16
16
  /**
17
17
  * Get ASCII logo for Mattermost with version included
18
18
  */
package/dist/logo.js CHANGED
@@ -20,7 +20,7 @@ const colors = {
20
20
  export const CLI_LOGO = `
21
21
  ${colors.orange} ✴${colors.reset} ${colors.blue}▄█▀ ███${colors.reset} ${colors.orange}✴${colors.reset} ${colors.bold}claude-threads${colors.reset}
22
22
  ${colors.orange}✴${colors.reset} ${colors.blue}█▀ █${colors.reset} ${colors.orange}✴${colors.reset} ${colors.dim}Mattermost × Claude Code${colors.reset}
23
- ${colors.orange}✴${colors.reset} ${colors.blue}▀█▄ █${colors.reset} ${colors.orange}✴${colors.reset}
23
+ ${colors.orange}✴${colors.reset} ${colors.blue}▀█▄ █${colors.reset} ${colors.orange}✴${colors.reset}
24
24
  `;
25
25
  /**
26
26
  * ASCII logo for Mattermost (plain text, no ANSI codes)
@@ -29,7 +29,7 @@ ${colors.orange}✴${colors.reset} ${colors.blue}▀█▄ █${colors.reset}
29
29
  export const MATTERMOST_LOGO = `\`\`\`
30
30
  ✴ ▄█▀ ███ ✴ claude-threads
31
31
  ✴ █▀ █ ✴ Mattermost × Claude Code
32
- ▀█▄ █
32
+ ▀█▄ █
33
33
  \`\`\``;
34
34
  /**
35
35
  * Get ASCII logo for Mattermost with version included
@@ -38,7 +38,7 @@ export function getMattermostLogo(version) {
38
38
  return `\`\`\`
39
39
  ✴ ▄█▀ ███ ✴ claude-threads v${version}
40
40
  ✴ █▀ █ ✴ Mattermost × Claude Code
41
- ▀█▄ █
41
+ ▀█▄ █
42
42
  \`\`\``;
43
43
  }
44
44
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-threads",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "Share Claude Code sessions live in a Mattermost channel with interactive features",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",