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: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,16 @@
2
2
3
3
All notable changes to the ZBR project are documented here and in the [changelog](https://zbr-website.vercel.app/docs/changelog) website.
4
4
5
+
## v1.4.1 - Parser fix and Zupdate interaction
6
+
7
+
This release addresses a critical parser bug and introduces a new interaction feature for better message management in Discord.
8
+
9
+
### Core
10
+
-**Fixed Parser Data Loss** — Resolved a bug in `parse_arg` where arguments containing multiple function calls (e.g., inside `Zif`) were being truncated.
11
+
12
+
### New Functions
13
+
-`Zupdate{}` — Signals that an interaction (button/select menu) should update the original message instead of sending a new reply.
14
+
5
15
---
6
16
7
17
## v1.4.0 - Centralized error handling across all functions
Copy file name to clipboardExpand all lines: docs/functions.json
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7636,6 +7636,14 @@
7636
7636
],
7637
7637
"example": "Zuppercase{Hello World}"
7638
7638
},
7639
+
{
7640
+
"name": "Zupdate",
7641
+
"description": "Signals that the interaction response should update the original message instead of sending a new reply. Only valid inside interaction handlers (buttons, select menus).",
7642
+
"syntax": "Zupdate{}",
7643
+
"variadic": false,
7644
+
"arguments": [],
7645
+
"example": "Zupdate{}"
7646
+
},
7639
7647
{
7640
7648
"name": "Zuptime",
7641
7649
"description": "Returns the bot's uptime since startup, formatted as a human-readable string of days, hours, minutes, and seconds.",
0 commit comments