You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: landing/src/components/WhatsNewSection.astro
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -6,27 +6,27 @@ import { SquareCheckBig } from "lucide-react";
6
6
7
7
const newsBlocks = [
8
8
{
9
-
title: "Ability to send custom messages to LiveViews",
9
+
title: "Direct Source Code Navigation",
10
10
description:
11
-
"Directly craft and inject custom events or messages into your LiveView process to test logic in total isolation. This allows you to verify how your handlers behave instantly without manually triggering UI actions or background jobs.",
11
+
"Jump straight from the Node Inspector to the exact line where your LiveView is defined. A simple shortcut that cuts out the guesswork of finding specific components in your file tree.",
12
12
icon: SquareCheckBig,
13
13
},
14
14
{
15
-
title: "Clearer error reporting for callback exceptions",
15
+
title: "Trace Isolation & Filtering",
16
16
description:
17
-
"LiveDebugger now captures and displays callback exceptions directly within the tool. View the exact error and stack trace the moment a crash occurs, keeping your debugging workflow entirely in the browser.",
17
+
"Use the new component tree to isolate specific nodes within Global Traces. Easily filter out background noise to focus only on the interactions that matter for your current session.",
18
18
icon: SquareCheckBig,
19
19
},
20
20
{
21
-
title: "Revisited highlighting mechanism",
21
+
title: "Tree Structure for Nested LiveViews",
22
22
description:
23
-
"The revisited highlighting mechanism now extends beyond the node tree to include Active LiveViews and Streams. Simply hover over any item in the tool to instantly spotlight its corresponding element in the browser UI.",
23
+
"Replaced the flat list with a proper hierarchical Tree Structure for Active LiveViews, making navigation through complex, multi-layered apps feel completely natural and intuitive.",
24
24
icon: SquareCheckBig,
25
25
},
26
26
{
27
-
title: "Support for temporary assigns",
27
+
title: "Stability & Workflow Improvements",
28
28
description:
29
-
"LiveDebugger supports temporary assigns, giving you full visibility into data that doesn’t stay in the socket.",
29
+
"Dozens of smaller fixes and optimizations to ensure a rock-solid debugging experience.",
0 commit comments