chore: bump version

- update demo and main.c for 3588s display
- add *.o to .gitignore to exclude build artifacts
- version 1.5.4 -> 1.5.5
This commit is contained in:
2026-06-14 16:09:18 +08:00
parent dac0ca3fed
commit 3c3f216e8c
5 changed files with 5 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
node_modules/
*.log
.env
*.o

Binary file not shown.

View File

@@ -287,6 +287,9 @@ static void update_ip_ui(void)
{
char eth[32] = {0}, wifi[32] = {0};
get_ip("enP4p65s0", eth, sizeof(eth));
if (eth[0] == '\0') {
get_ip("eth0", eth, sizeof(eth));
}
get_ip("wlan0", wifi, sizeof(wifi));
if (eth[0]) {

View File

@@ -1,6 +1,6 @@
{
"name": "clawd",
"version": "1.5.4",
"version": "1.5.5",
"description": "Claw Box daemon - connects local Linux box to claw.cutos.ai via WebSocket",
"main": "lib/client.js",
"bin": {