Skip to content

Commit 48a0120

Browse files
authored
Chore: website updates v0.7.0 (#955)
* Update `RoadmapSection` * Change version in `MixInstallTab` * Update What's new section * Update movie in whats new
1 parent 64b7122 commit 48a0120

3 files changed

Lines changed: 20 additions & 20 deletions

File tree

landing/src/components/RoadmapSection.astro

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ const accordionData = [
2525
// "Increased stability during application recompilation",
2626
// ],
2727
// },
28-
{
29-
versionNumber: "v0.7.0",
30-
bulletpoints: [
31-
"Extended filtering of global callback traces",
32-
"Links to source files defining the LiveView / LiveComponent",
33-
"Better support and representation of nested LiveViews",
34-
"More reliable association between browser windows and server processes",
35-
],
36-
},
28+
// {
29+
// versionNumber: "v0.7.0",
30+
// bulletpoints: [
31+
// "Extended filtering of global callback traces",
32+
// "Links to source files defining the LiveView / LiveComponent",
33+
// "Better support and representation of nested LiveViews",
34+
// "More reliable association between browser windows and server processes",
35+
// ],
36+
// },
3737
{
3838
versionNumber: "v0.8.0",
3939
bulletpoints: [

landing/src/components/WhatsNewSection.astro

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@ import { SquareCheckBig } from "lucide-react";
66
77
const newsBlocks = [
88
{
9-
title: "Ability to send custom messages to LiveViews",
9+
title: "Direct Source Code Navigation",
1010
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.",
1212
icon: SquareCheckBig,
1313
},
1414
{
15-
title: "Clearer error reporting for callback exceptions",
15+
title: "Trace Isolation & Filtering",
1616
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.",
1818
icon: SquareCheckBig,
1919
},
2020
{
21-
title: "Revisited highlighting mechanism",
21+
title: "Tree Structure for Nested LiveViews",
2222
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.",
2424
icon: SquareCheckBig,
2525
},
2626
{
27-
title: "Support for temporary assigns",
27+
title: "Stability & Workflow Improvements",
2828
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.",
3030
icon: SquareCheckBig,
3131
},
3232
];
@@ -41,7 +41,7 @@ const newsBlocks = [
4141
>
4242
<div class="flex flex-col items-center justify-center gap-4">
4343
<Badge variant="ternary"
44-
><p class="text-sm font-medium">LiveDebugger v0.6.0</p></Badge
44+
><p class="text-sm font-medium">LiveDebugger v0.7.0</p></Badge
4545
>
4646
<h2 class="text-primary text-center text-2xl font-bold">What’s new</h2>
4747
<h3 class="font-regular text-lg">
@@ -52,7 +52,7 @@ const newsBlocks = [
5252
<div class="aspect-video h-full w-full">
5353
<iframe
5454
class="h-full w-full"
55-
src="https://www.youtube.com/embed/G2KP0JdRmdo?si=iV2dolcoSBEcOXlr?controls=0"
55+
src="https://www.youtube.com/embed/SvKGXRNo-_E?si=bfcjcvP6c4e2e4s7?controls=0"
5656
title="YouTube video player"
5757
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
5858
referrerpolicy="strict-origin-when-cross-origin"

landing/src/components/getting-started-tabs-content/MixInstallTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { InlineCodeBlock } from "./InlineCodeBlock";
33

44
const mixCode1 = `defp deps do
55
[
6-
{:live_debugger, "~> 0.6.0", only: :dev}
6+
{:live_debugger, "~> 0.7.0", only: :dev}
77
]
88
end`;
99

0 commit comments

Comments
 (0)