@aion0/forge 0.2.25 → 0.2.26
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/app/api/version/route.ts +1 -1
- package/cli/mw.ts +2 -1
- package/components/SessionView.tsx +2 -2
- package/package.json +1 -1
package/app/api/version/route.ts
CHANGED
package/cli/mw.ts
CHANGED
|
@@ -553,7 +553,8 @@ Shortcuts: t=task, ls=tasks, w=watch, s=status, l=log, f=flows, p=projects, pw=p
|
|
|
553
553
|
}
|
|
554
554
|
}
|
|
555
555
|
|
|
556
|
-
|
|
556
|
+
const skipUpdateCheck = ['upgrade', 'uninstall', '--version', '-v'];
|
|
557
|
+
main().then(() => { if (!skipUpdateCheck.includes(cmd)) return checkForUpdate(); }).catch(err => {
|
|
557
558
|
console.error(err.message);
|
|
558
559
|
process.exit(1);
|
|
559
560
|
});
|
|
@@ -452,7 +452,7 @@ export default function SessionView({
|
|
|
452
452
|
</div>
|
|
453
453
|
|
|
454
454
|
{/* Right: session content */}
|
|
455
|
-
<div className="flex-1 flex flex-col min-w-0 overflow-hidden">
|
|
455
|
+
<div className="flex-1 flex flex-col min-w-0 overflow-hidden" style={{ width: 0 }}>
|
|
456
456
|
{activeSession && (
|
|
457
457
|
<div className="border-b border-[var(--border)] px-4 py-2 shrink-0">
|
|
458
458
|
<div className="flex items-center gap-2">
|
|
@@ -508,7 +508,7 @@ export default function SessionView({
|
|
|
508
508
|
</div>
|
|
509
509
|
)}
|
|
510
510
|
|
|
511
|
-
<div className="flex-1 overflow-y-auto overflow-x-
|
|
511
|
+
<div className="flex-1 overflow-y-auto overflow-x-auto p-4 space-y-2">
|
|
512
512
|
{!activeSessionId && (
|
|
513
513
|
<div className="flex-1 flex items-center justify-center text-[var(--text-secondary)] h-full">
|
|
514
514
|
<p>Select a session from the tree to view</p>
|
package/package.json
CHANGED