@teddysc/claude-run 0.8.0 → 0.9.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/README.md +9 -1
- package/dist/index.js +4 -0
- package/dist/web/claude-code-mascot-square.png +0 -0
- package/dist/web/claude-code-mascot.png +0 -0
- package/dist/web/favicon.ico +0 -0
- package/dist/web/icon-192.png +0 -0
- package/dist/web/icon-512.png +0 -0
- 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,14 @@ The browser will open automatically at http://localhost:12001.
|
|
|
32
32
|
|
|
33
33
|
## Changelog
|
|
34
34
|
|
|
35
|
+
### 0.9.1
|
|
36
|
+
- Fix favicon response handling
|
|
37
|
+
- Enhance server response handling for static assets
|
|
38
|
+
- Update Vite configuration for public directory
|
|
39
|
+
|
|
40
|
+
### 0.9.0
|
|
41
|
+
- Add Claude Code mascot favicon and app icons
|
|
42
|
+
|
|
35
43
|
### 0.8.0
|
|
36
44
|
- Add URL state synchronization - share links to specific searches, sessions, or projects
|
|
37
45
|
- Browser back/forward navigation now works with app state
|
package/dist/index.js
CHANGED
|
@@ -652,6 +652,10 @@ function createServer(options) {
|
|
|
652
652
|
const webDistPath = getWebDistPath();
|
|
653
653
|
app.use("/*", serveStatic({ root: webDistPath }));
|
|
654
654
|
app.get("/*", async (c) => {
|
|
655
|
+
const path = new URL(c.req.url).pathname;
|
|
656
|
+
if (path.match(/\.(ico|png|jpg|jpeg|svg|gif|css|js|woff|woff2|ttf|eot)$/)) {
|
|
657
|
+
return c.notFound();
|
|
658
|
+
}
|
|
655
659
|
const indexPath = join4(webDistPath, "index.html");
|
|
656
660
|
try {
|
|
657
661
|
const html = readFileSync(indexPath, "utf-8");
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
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>
|