glad-web 1.0.15 → 1.0.17

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/assets/logo.svg +32 -29
  2. package/package.json +1 -1
package/assets/logo.svg CHANGED
@@ -1,40 +1,43 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
2
2
  <defs>
3
+ <!-- Normcore / Cold Slate Background Gradient -->
3
4
  <linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
4
- <stop offset="0%" stop-color="#151522" />
5
- <stop offset="100%" stop-color="#2D2B55" />
5
+ <stop offset="0%" stop-color="#1E2024" />
6
+ <stop offset="50%" stop-color="#111215" />
7
+ <stop offset="100%" stop-color="#050505" />
6
8
  </linearGradient>
7
- <linearGradient id="phoneGrad" x1="0%" y1="100%" x2="100%" y2="0%">
8
- <stop offset="0%" stop-color="#FF3366" />
9
- <stop offset="50%" stop-color="#FF9933" />
10
- <stop offset="100%" stop-color="#33CCFF" />
9
+
10
+ <!-- Sunset Coral Gradient (Warm, energetic smile/tongue) -->
11
+ <linearGradient id="faceGrad" gradientUnits="userSpaceOnUse" x1="125" y1="230" x2="387" y2="310">
12
+ <stop offset="0%" stop-color="#FF9E79" />
13
+ <stop offset="60%" stop-color="#FF6F61" />
14
+ <stop offset="100%" stop-color="#D84315" />
11
15
  </linearGradient>
12
16
  </defs>
13
17
 
14
- <!-- Background App Icon Shape -->
15
- <rect x="24" y="24" width="464" height="464" rx="104" fill="url(#bgGrad)" />
18
+ <!-- Background App Icon Shape (Cold basalt gradient, fills the icon canvas) -->
19
+ <rect width="512" height="512" fill="url(#bgGrad)" />
16
20
 
17
- <!-- Mobile Device Outline -->
18
- <rect x="126" y="66" width="260" height="380" rx="36" fill="#1A1A2E" stroke="url(#phoneGrad)" stroke-width="12" />
19
-
20
- <!-- Mobile screen top bar (notch/speaker) -->
21
- <line x1="226" y1="96" x2="286" y2="96" stroke="url(#phoneGrad)" stroke-width="8" stroke-linecap="round" />
21
+ <!-- CLI Face (Expanded to fill the icon area, no phone container) -->
22
+ <!-- Left Eye: Terminal I-Beam Cursor (Bold & Centered) -->
23
+ <path d="M 145 101 H 175 M 160 101 V 151 M 145 151 H 175" fill="none" stroke="#007aff" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" />
22
24
 
23
- <!-- Left Eye: Terminal Prompt ">" -->
24
- <polyline points="180,185 210,205 180,225" fill="none" stroke="#33CCFF" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" />
25
-
26
- <!-- Right Eye: AI Sparkle -->
27
- <path d="M 322 175 Q 322 205 352 205 Q 322 205 322 235 Q 322 205 292 205 Q 322 205 322 175 Z" fill="#FFD700" />
25
+ <!-- Right Eye: Project's Send Button Triangle/Paper Plane (Bold & Centered) -->
26
+ <g transform="translate(352, 126) scale(2.4) translate(-12, -12)">
27
+ <line x1="22" y1="2" x2="11" y2="13" stroke="#007aff" stroke-width="5.0" stroke-linecap="round" stroke-linejoin="round" />
28
+ <polygon points="22 2 15 22 11 13 2 9 22 2" fill="none" stroke="#007aff" stroke-width="5.0" stroke-linecap="round" stroke-linejoin="round" />
29
+ </g>
28
30
 
29
- <!-- Glad Smile -->
30
- <path d="M 175 265 Q 256 315 337 265" fill="none" stroke="#FF3366" stroke-width="16" stroke-linecap="round" />
31
+ <!-- Centered tongue-out mouth -->
32
+ <path d="M 125 230 H 387" fill="none" stroke="url(#faceGrad)" stroke-width="15" stroke-linecap="round" />
33
+ <path d="M 218 230 C 220 250 220 273 226 289 C 232 305 242 313 256 313 C 270 313 280 305 286 289 C 292 273 292 250 294 230" fill="none" stroke="url(#faceGrad)" stroke-width="15" stroke-linecap="round" stroke-linejoin="round" />
34
+ <path d="M 256 290 V 308" fill="none" stroke="url(#faceGrad)" stroke-width="6" stroke-linecap="round" />
31
35
 
32
- <!-- Vibe Coding Waves (Audio bars) -->
33
- <g stroke-linecap="round" stroke-width="10">
34
- <line x1="196" y1="375" x2="196" y2="400" stroke="#FF9933" />
35
- <line x1="226" y1="355" x2="226" y2="400" stroke="#FF3366" />
36
- <line x1="256" y1="340" x2="256" y2="400" stroke="#33CCFF" />
37
- <line x1="286" y1="360" x2="286" y2="400" stroke="#FFD700" />
38
- <line x1="316" y1="380" x2="316" y2="400" stroke="#FF9933" />
39
- </g>
40
- </svg>
36
+ <!-- Git Diff Lines (Expanded & Centered, no filter, 50% opacity for clear mobile legibility) -->
37
+ <!-- Add (+) Line: Faded Green -->
38
+ <line x1="130" y1="361" x2="382" y2="361" stroke="#2EA44F" stroke-width="14" stroke-linecap="round" opacity="0.5" />
39
+ <!-- Delete (-) Line: Faded Red -->
40
+ <line x1="130" y1="386" x2="300" y2="386" stroke="#CF222E" stroke-width="14" stroke-linecap="round" opacity="0.5" />
41
+ <!-- Add (+) Line: Faded Green -->
42
+ <line x1="130" y1="411" x2="350" y2="411" stroke="#2EA44F" stroke-width="14" stroke-linecap="round" opacity="0.5" />
43
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glad-web",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "description": "Glad transforms terminal-based AI coding tools into a polished, mobile-friendly local Web interface.",
5
5
  "main": "index.js",
6
6
  "bin": {