From 7ef211ddd5633a4aadc6e3a784868940fb649d93 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Mon, 23 Mar 2026 21:07:17 +0100 Subject: [PATCH] docs: update readme version --- README.md | 8 ++++---- app/client/components/file-tree.tsx | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f15c02bb..44adc4dd 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ In order to run Zerobyte, you need to have Docker and Docker Compose installed o ```yaml services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.30 + image: ghcr.io/nicotsx/zerobyte:v0.32 container_name: zerobyte restart: unless-stopped cap_add: @@ -121,7 +121,7 @@ If you only need to back up locally mounted folders and don't require remote sha ```yaml services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.30 + image: ghcr.io/nicotsx/zerobyte:v0.32 container_name: zerobyte restart: unless-stopped ports: @@ -160,7 +160,7 @@ If you want to track a local directory on the same server where Zerobyte is runn ```diff services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.30 + image: ghcr.io/nicotsx/zerobyte:v0.32 container_name: zerobyte restart: unless-stopped cap_add: @@ -235,7 +235,7 @@ Zerobyte can use [rclone](https://rclone.org/) to support 40+ cloud storage prov ```diff services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.30 + image: ghcr.io/nicotsx/zerobyte:v0.32 container_name: zerobyte restart: unless-stopped cap_add: diff --git a/app/client/components/file-tree.tsx b/app/client/components/file-tree.tsx index 58e18b82..ca543893 100644 --- a/app/client/components/file-tree.tsx +++ b/app/client/components/file-tree.tsx @@ -704,5 +704,7 @@ function compareNodes(a: Node, b: Node): number { return a.kind === "folder" ? -1 : 1; } - return a.name.localeCompare(b.name); + if (a.name < b.name) return -1; + if (a.name > b.name) return 1; + return 0; }