@teddysc/claude-run 0.8.0 → 0.9.0
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 +4 -1
- package/dist/web/index.html +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Browse your Claude Code conversation history in a beautiful web UI
|
|
|
7
7
|
[](https://www.npmjs.com/package/@teddysc/claude-run)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
9
|
|
|
10
|
-
<img src=".github/claude-run.gif" alt="Claude Run Demo" width="800" />
|
|
10
|
+
<!-- <img src=".github/claude-run.gif" alt="Claude Run Demo" width="800" /> -->
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -32,6 +32,9 @@ The browser will open automatically at http://localhost:12001.
|
|
|
32
32
|
|
|
33
33
|
## Changelog
|
|
34
34
|
|
|
35
|
+
### 0.9.0
|
|
36
|
+
- Add Claude Code mascot favicon and app icons
|
|
37
|
+
|
|
35
38
|
### 0.8.0
|
|
36
39
|
- Add URL state synchronization - share links to specific searches, sessions, or projects
|
|
37
40
|
- Browser back/forward navigation now works with app state
|
package/dist/web/index.html
CHANGED
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Claude Run</title>
|
|
7
|
+
<link rel="icon" href="/favicon.ico" sizes="32x32" />
|
|
8
|
+
<link rel="icon" href="/icon-192.png" sizes="192x192" />
|
|
9
|
+
<link rel="icon" href="/icon-512.png" sizes="512x512" />
|
|
10
|
+
<link rel="apple-touch-icon" href="/icon-192.png" />
|
|
7
11
|
<script type="module" crossorigin src="/assets/index-BIpp2t3t.js"></script>
|
|
8
12
|
<link rel="stylesheet" crossorigin href="/assets/index-DE3Rh4xE.css">
|
|
9
13
|
</head>
|