@tom2012/cc-web 1.5.124 → 1.5.125

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/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  A self-hosted web application (distributed as npm package) that provides a browser-based interface for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) CLI sessions. Create projects, each with a persistent terminal running Claude Code, and interact with them through a real-time terminal UI.
4
4
 
5
- **Current version**: v1.5.124 | [GitHub](https://github.com/zbc0315/cc-web) | MIT License
5
+ **Current version**: v1.5.125 | [GitHub](https://github.com/zbc0315/cc-web) | MIT License
6
6
 
7
7
  ## Features
8
8
 
Binary file
Binary file
@@ -3,7 +3,12 @@
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
5
  <link rel="icon" type="image/svg+xml" href="/terminal.svg" />
6
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <link rel="apple-touch-icon" href="/icon-192.png" />
7
+ <link rel="manifest" href="/manifest.json" />
8
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
9
+ <meta name="theme-color" content="#0f172a" />
10
+ <meta name="apple-mobile-web-app-capable" content="yes" />
11
+ <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
7
12
  <title>CC Web</title>
8
13
  <script type="module" crossorigin src="/assets/index-gcK-3edu.js"></script>
9
14
  <link rel="stylesheet" crossorigin href="/assets/index-BUpU2Qvi.css">
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "CC Web",
3
+ "short_name": "CC Web",
4
+ "description": "Web UI for Claude Code CLI",
5
+ "start_url": "/mobile",
6
+ "display": "standalone",
7
+ "background_color": "#0f172a",
8
+ "theme_color": "#0f172a",
9
+ "icons": [
10
+ { "src": "/icon-192.png", "sizes": "192x192", "type": "image/png" },
11
+ { "src": "/icon-512.png", "sizes": "512x512", "type": "image/png" }
12
+ ]
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tom2012/cc-web",
3
- "version": "1.5.124",
3
+ "version": "1.5.125",
4
4
  "description": "Self-hosted web UI for Claude Code CLI — run Claude in your browser",
5
5
  "private": false,
6
6
  "main": "electron/dist/main.js",