Skip to content

Commit ea48bc6

Browse files
committed
Update read me
1 parent 89d3fb0 commit ea48bc6

6 files changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ It lets you **inspect logs, variables, performance metrics, and errors in real-t
1616

1717
---
1818

19+
![log tab](docs/images/logs.png)
20+
![performance tab](docs/images/performance.png)
21+
![observability tab](docs/images/observable.png)
22+
1923
## 📦 Installation
2024

2125
1. **Download Feather**

docs/images/logs.png

2.09 MB
Loading

docs/images/observable.png

1.26 MB
Loading

docs/images/performance.png

1.5 MB
Loading

src-lua/main.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function love.update(dt)
160160
if a > 1 then
161161
print(a)
162162
a = 0
163-
debugger:observe("a", a)
163+
debugger:observe("awesome variable", a)
164164
print(math.random(1, 2))
165165
print({
166166
type = "feather:finish",
@@ -199,7 +199,7 @@ function love.update(dt)
199199
},
200200
})
201201

202-
debugger:observe("object", {
202+
debugger:observe("complex table", {
203203
type = "feather:finish",
204204
body = {
205205
lol = "hey",

src/pages/observable/section-cards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function SectionCards({
1111
onSelect: (key: string) => void;
1212
}) {
1313
return (
14-
<div className="*:data-[slot=card]:from-primary/5 *:data-[slot=card]:to-card dark:*:data-[slot=card]:bg-card grid grid-cols-2 gap-4 px-4 *:data-[slot=card]:bg-gradient-to-t *:data-[slot=card]:shadow-xs lg:px-6 @xl/main:grid-cols-5 @5xl/main:grid-cols-8">
14+
<div className="*:data-[slot=card]:from-primary/5 *:data-[slot=card]:to-card dark:*:data-[slot=card]:bg-card grid grid-cols-1 gap-4 px-4 *:data-[slot=card]:bg-gradient-to-t *:data-[slot=card]:shadow-xs lg:px-6 @xl/main:grid-cols-4 @5xl/main:grid-cols-6">
1515
{data.map((item) => {
1616
return (
1717
<Card

0 commit comments

Comments
 (0)