@aion0/forge 0.10.66 → 0.10.67
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/RELEASE_NOTES.md +3 -6
- package/app/chat/page.tsx +18 -8
- package/package.json +1 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
# Forge v0.10.
|
|
1
|
+
# Forge v0.10.67
|
|
2
2
|
|
|
3
3
|
Released: 2026-06-10
|
|
4
4
|
|
|
5
|
-
## Changes since v0.10.
|
|
5
|
+
## Changes since v0.10.66
|
|
6
6
|
|
|
7
|
-
### Other
|
|
8
|
-
- fix(login-status): IdP probe honors auth_required_selector — no more same-host login-page false positives
|
|
9
7
|
|
|
10
|
-
|
|
11
|
-
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.65...v0.10.66
|
|
8
|
+
**Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.66...v0.10.67
|
package/app/chat/page.tsx
CHANGED
|
@@ -715,16 +715,26 @@ export default function ChatPage() {
|
|
|
715
715
|
{markers.length >= 2 && (
|
|
716
716
|
<div className="absolute right-0.5 top-2 bottom-2 w-3 z-10 pointer-events-none">
|
|
717
717
|
{markers.map((mk) => (
|
|
718
|
-
<
|
|
718
|
+
<div
|
|
719
719
|
key={mk.mid}
|
|
720
|
-
|
|
721
|
-
onClick={() => {
|
|
722
|
-
const el = scrollRef.current;
|
|
723
|
-
if (el) el.scrollTo({ top: Math.max(0, mk.offset - 12), behavior: 'smooth' });
|
|
724
|
-
}}
|
|
725
|
-
className="pointer-events-auto absolute right-0 -translate-y-1/2 h-1.5 w-1.5 rounded-full bg-[var(--text-secondary)] opacity-40 hover:opacity-100 hover:w-2.5 hover:bg-[var(--accent)] transition-all"
|
|
720
|
+
className="group pointer-events-auto absolute right-0 -translate-y-1/2"
|
|
726
721
|
style={{ top: `${Math.min(99, Math.max(1, mk.pct))}%` }}
|
|
727
|
-
|
|
722
|
+
>
|
|
723
|
+
<button
|
|
724
|
+
onClick={() => {
|
|
725
|
+
const el = scrollRef.current;
|
|
726
|
+
if (el) el.scrollTo({ top: Math.max(0, mk.offset - 12), behavior: 'smooth' });
|
|
727
|
+
}}
|
|
728
|
+
className="block h-1.5 w-1.5 rounded-full bg-[var(--text-secondary)] opacity-40 group-hover:opacity-100 group-hover:w-2.5 group-hover:bg-[var(--accent)] transition-all"
|
|
729
|
+
/>
|
|
730
|
+
{/* Instant hover preview (native title lags ~1s). Sits to the
|
|
731
|
+
left of the rail; truncates to one ellipsised line. */}
|
|
732
|
+
{mk.label && (
|
|
733
|
+
<div className="pointer-events-none absolute right-4 top-1/2 -translate-y-1/2 hidden group-hover:block z-20 max-w-[280px] truncate rounded-md border border-[var(--border)] bg-[var(--bg-secondary)] px-2 py-1 text-xs text-[var(--text-primary)] shadow-lg">
|
|
734
|
+
{mk.label}
|
|
735
|
+
</div>
|
|
736
|
+
)}
|
|
737
|
+
</div>
|
|
728
738
|
))}
|
|
729
739
|
</div>
|
|
730
740
|
)}
|
package/package.json
CHANGED