amicus 1.7.0 → 1.7.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amicus",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "Multi-model LLM Council + parallel AI window for Claude Code. Run structured council reviews across Gemini, GPT, DeepSeek and more — or fork a conversation to any model and fold the results back.",
5
5
  "author": { "name": "Christian Wagner" },
6
6
  "homepage": "https://bourbondog.github.io/amicus/",
package/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to Amicus are documented here. Format follows
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [1.7.1] - 2026-06-30
9
+
10
+ ### Fixed
11
+ - **The Electron GUI now shows the current rail-yard brand mark.** The window/taskbar icon, the setup
12
+ wizard's header and footer, and the session toolbar were still rendering the pre-redesign squiggle
13
+ mark; they now use the shipped clay→gold rail-yard mark (matching the site favicon). The inline
14
+ glyphs stay token-bound (clay tracks / gold mainline) so they follow the design system.
15
+
8
16
  ## [1.7.0] - 2026-06-30
9
17
 
10
18
  Electron self-heal, a real `amicus doctor`, and the GUI on the design system — plus MCP/diagnostics correctness.
Binary file
@@ -1,5 +1,12 @@
1
- <svg width="1024" height="1024" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="16" height="16" rx="3" fill="#2D2B2A"/>
3
- <path d="M3 2v12" stroke="#D97757" stroke-width="2" stroke-linecap="round"/>
4
- <path d="M10 2v5c0 2-3 3-7 5" stroke="#D97757" stroke-width="2" stroke-linecap="round" stroke-opacity="0.6"/>
1
+ <svg width="1024" height="1024" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="32" height="32" rx="7" fill="#2D2B2A"/>
3
+ <g stroke="#D97757" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="miter">
4
+ <path d="M4 8H19"/>
5
+ <path d="M4 11H14L19 8"/>
6
+ <path d="M4 14H13L19 8"/>
7
+ <path d="M4 17H12L19 8"/>
8
+ <path d="M4 20H11L19 8"/>
9
+ <path d="M4 23H10L19 8"/>
10
+ </g>
11
+ <path d="M19 8H28" stroke="#E8B24A" stroke-width="1.2" stroke-linecap="round"/>
5
12
  </svg>
@@ -18,7 +18,8 @@ function __rawWizardCSS() {
18
18
  padding: 10px 20px; border-bottom: 1px solid var(--border);
19
19
  }
20
20
  .header svg { flex-shrink: 0; }
21
- .header svg path { stroke: var(--accent); }
21
+ .header svg path { stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: miter; }
22
+ .header svg path.brand-main { stroke: var(--gold-400); }
22
23
  .header-title {
23
24
  color: var(--accent); font-size: 12px; font-weight: 600;
24
25
  letter-spacing: 0.8px; text-transform: uppercase;
@@ -319,7 +320,8 @@ function __rawWizardCSS() {
319
320
  letter-spacing: 0.8px; text-transform: uppercase;
320
321
  display: flex; align-items: center; gap: 6px;
321
322
  }
322
- .footer-brand svg path { stroke: var(--accent); }
323
+ .footer-brand svg path { stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: miter; }
324
+ .footer-brand svg path.brand-main { stroke: var(--gold-400); }
323
325
  .footer-nav { display: flex; gap: 6px; }
324
326
  .nav-btn {
325
327
  padding: 6px 16px; border: 1px solid var(--border);
@@ -33,7 +33,7 @@ function buildSetupHTML(options = {}) {
33
33
  return `<!DOCTYPE html>
34
34
  <html><head><meta charset="utf-8"><title>Amicus Setup</title>
35
35
  <style>${css}</style></head><body>
36
- <div class="header"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M3 2v12" stroke-width="2" stroke-linecap="round"/><path d="M10 2v5c0 2-3 3-7 5" stroke-width="2" stroke-linecap="round" stroke-opacity="0.6"/></svg><span class="header-title">${brandName} Setup</span></div>
36
+ <div class="header"><svg width="18" height="18" viewBox="0 0 32 32" fill="none"><path d="M4 8H19"/><path d="M4 11H14L19 8"/><path d="M4 14H13L19 8"/><path d="M4 17H12L19 8"/><path d="M4 20H11L19 8"/><path d="M4 23H10L19 8"/><path class="brand-main" d="M19 8H28"/></svg><span class="header-title">${brandName} Setup</span></div>
37
37
  <div class="progress-bar"><div class="progress-step active" id="step-1"><span class="progress-dot">1</span><span>API Keys</span></div><div class="progress-connector"></div><div class="progress-step" id="step-2"><span class="progress-dot">2</span><span>Models</span></div><div class="progress-connector"></div><div class="progress-step" id="step-3"><span class="progress-dot">3</span><span>Routing</span></div><div class="progress-connector"></div><div class="progress-step" id="step-4"><span class="progress-dot">4</span><span>Review</span></div></div>
38
38
  <div class="content">
39
39
  <div class="wizard-step visible" id="wizard-step-1"><div id="import-notice"></div>${keysHtml}</div>
@@ -50,7 +50,7 @@ function buildSetupHTML(options = {}) {
50
50
  </div>
51
51
  </div>
52
52
  </div>
53
- <div class="footer"><div class="footer-brand"><svg width="14" height="14" viewBox="0 0 16 16" fill="none"><path d="M3 2v12" stroke-width="2" stroke-linecap="round"/><path d="M10 2v5c0 2-3 3-7 5" stroke-width="2" stroke-linecap="round" stroke-opacity="0.6"/></svg> ${brandName}</div><div class="footer-nav"><button class="nav-btn" id="back-btn" style="display:none">Back</button><button class="nav-btn primary" id="next-btn" disabled>Next</button><button class="nav-btn primary" id="finish-btn" style="display:none">Finish</button></div></div>
53
+ <div class="footer"><div class="footer-brand"><svg width="15" height="15" viewBox="0 0 32 32" fill="none"><path d="M4 8H19"/><path d="M4 11H14L19 8"/><path d="M4 14H13L19 8"/><path d="M4 17H12L19 8"/><path d="M4 20H11L19 8"/><path d="M4 23H10L19 8"/><path class="brand-main" d="M19 8H28"/></svg> ${brandName}</div><div class="footer-nav"><button class="nav-btn" id="back-btn" style="display:none">Back</button><button class="nav-btn primary" id="next-btn" disabled>Next</button><button class="nav-btn primary" id="finish-btn" style="display:none">Finish</button></div></div>
54
54
  ${buildWizardScript(providersJson, modelChoicesJson, providerNamesJson, defaultAliasesJson)}
55
55
  </body></html>`;
56
56
  }
@@ -70,7 +70,8 @@ function buildToolbarHTML(options = {}) {
70
70
  letter-spacing: 0.8px;
71
71
  text-transform: uppercase;
72
72
  }
73
- .logo path { stroke: var(--accent); }
73
+ .logo path { stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: miter; }
74
+ .logo path.brand-main { stroke: var(--gold-400); }
74
75
  .sep { color: var(--border-strong); font-size: 14px; }
75
76
  .detail, .timer {
76
77
  color: var(--text-3);
@@ -136,9 +137,10 @@ function buildToolbarHTML(options = {}) {
136
137
  }
137
138
  .update-banner .dismiss-btn:hover { color: var(--text-1); }`;
138
139
 
139
- const logoSvg = `<svg class="logo" width="16" height="16" viewBox="0 0 16 16" fill="none">
140
- <path d="M3 2v12" stroke-width="2" stroke-linecap="round"/>
141
- <path d="M10 2v5c0 2-3 3-7 5" stroke-width="2" stroke-linecap="round" stroke-opacity="0.6"/>
140
+ const logoSvg = `<svg class="logo" width="16" height="16" viewBox="0 0 32 32" fill="none">
141
+ <path d="M4 8H19"/><path d="M4 11H14L19 8"/><path d="M4 14H13L19 8"/>
142
+ <path d="M4 17H12L19 8"/><path d="M4 20H11L19 8"/><path d="M4 23H10L19 8"/>
143
+ <path class="brand-main" d="M19 8H28"/>
142
144
  </svg>`;
143
145
 
144
146
  if (mode === 'setup') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amicus",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "Multi-model LLM Council + parallel AI window for Claude Code. Run structured council reviews across Gemini, GPT, DeepSeek and more — or fork a conversation to any model and fold the results back.",
5
5
  "keywords": [
6
6
  "claude",