@aion0/forge 0.4.2 → 0.4.3

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
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="app/icon.svg" width="80" height="80" alt="Forge">
2
+ <img src="app/icon.png" width="80" height="80" alt="Forge">
3
3
  </p>
4
4
 
5
5
  <h1 align="center">Forge</h1>
package/RELEASE_NOTES.md CHANGED
@@ -1,15 +1,11 @@
1
- # Forge v0.4.2
1
+ # Forge v0.4.3
2
2
 
3
3
  Released: 2026-03-21
4
4
 
5
- ## Changes since v0.4.1
5
+ ## Changes since v0.4.2
6
6
 
7
7
  ### Bug Fixes
8
- - fix: prevent double console.log wrapping in production mode
9
- - fix: auto-recover from PTY exhaustion + add npm ENOTEMPTY troubleshooting
8
+ - fix: restore Forge name in header + allow icon.png on login page
10
9
 
11
- ### Documentation
12
- - fix: auto-recover from PTY exhaustion + add npm ENOTEMPTY troubleshooting
13
10
 
14
-
15
- **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.4.1...v0.4.2
11
+ **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.4.2...v0.4.3
package/app/icon.png ADDED
Binary file
@@ -38,6 +38,7 @@ export default function LoginPage() {
38
38
  <div className="min-h-screen flex items-center justify-center">
39
39
  <div className="w-80 space-y-6">
40
40
  <div className="text-center">
41
+ <img src="/icon.png" alt="Forge" width={48} height={48} className="rounded mx-auto mb-2" />
41
42
  <h1 className="text-2xl font-bold text-[var(--text-primary)]">Forge</h1>
42
43
  <p className="text-sm text-[var(--text-secondary)] mt-1">
43
44
  {isRemote ? 'Remote Access' : 'Local Access'}
@@ -166,6 +166,7 @@ export default function Dashboard({ user }: { user: any }) {
166
166
  {/* Top bar */}
167
167
  <header className="h-12 border-b-2 border-[var(--border)] flex items-center justify-between px-4 shrink-0 bg-[var(--bg-secondary)]">
168
168
  <div className="flex items-center gap-4">
169
+ <img src="/icon.png" alt="Forge" width={28} height={28} className="rounded" />
169
170
  <span className="text-sm font-bold text-[var(--accent)]">Forge</span>
170
171
  {versionInfo && (
171
172
  <span className="flex items-center gap-1.5">
package/forge-logo.png ADDED
Binary file
package/middleware.ts CHANGED
@@ -9,7 +9,8 @@ export function middleware(req: NextRequest) {
9
9
  pathname.startsWith('/api/auth') ||
10
10
  pathname.startsWith('/api/telegram') ||
11
11
  pathname.startsWith('/_next') ||
12
- pathname === '/favicon.ico'
12
+ pathname === '/favicon.ico' ||
13
+ pathname === '/icon.png'
13
14
  ) {
14
15
  return NextResponse.next();
15
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aion0/forge",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Unified AI workflow platform — multi-model task orchestration, persistent sessions, web terminal, remote access",
5
5
  "type": "module",
6
6
  "scripts": {
package/app/icon.svg DELETED
@@ -1,26 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
- <defs>
3
- <linearGradient id="g" x1="0" y1="0" x2="1" y2="1">
4
- <stop offset="0%" stop-color="#60a5fa"/>
5
- <stop offset="100%" stop-color="#3b82f6"/>
6
- </linearGradient>
7
- </defs>
8
- <!-- Background -->
9
- <rect width="32" height="32" rx="7" fill="#1a1a2e"/>
10
- <!-- Anvil base -->
11
- <rect x="6" y="22" width="20" height="3" rx="1" fill="url(#g)"/>
12
- <!-- Anvil middle -->
13
- <rect x="9" y="18" width="14" height="4" fill="url(#g)" opacity="0.9"/>
14
- <!-- Anvil top face -->
15
- <polygon points="9,15 23,15 23,18 9,18" fill="url(#g)" opacity="0.85"/>
16
- <!-- Anvil horn (left) -->
17
- <polygon points="9,15 4,17 4,18 9,18" fill="#60a5fa" opacity="0.8"/>
18
- <!-- Hammer handle -->
19
- <rect x="19" y="4" width="2.5" height="10" rx="1" fill="#f59e0b" transform="rotate(-35 20.25 9)"/>
20
- <!-- Hammer head -->
21
- <rect x="17" y="2.5" width="7" height="3.5" rx="1" fill="#f59e0b" transform="rotate(-35 20.5 4.25)"/>
22
- <!-- Sparks -->
23
- <circle cx="14" cy="12.5" r="1.2" fill="#fbbf24" opacity="0.9"/>
24
- <circle cx="11" cy="10.5" r="0.8" fill="#fbbf24" opacity="0.7"/>
25
- <circle cx="17" cy="10" r="0.7" fill="#fbbf24" opacity="0.6"/>
26
- </svg>