From 47f64b51af025e0136f821040788cf994adb2a0c Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Thu, 11 Dec 2025 18:32:40 +0100 Subject: [PATCH] docs: update version in readme --- README.md | 10 +++++----- app/server/modules/notifications/builders/email.ts | 7 ++++--- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7c66bc92..257edb03 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.17 + image: ghcr.io/nicotsx/zerobyte:v0.18 container_name: zerobyte restart: unless-stopped cap_add: @@ -78,7 +78,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.17 + image: ghcr.io/nicotsx/zerobyte:v0.18 container_name: zerobyte restart: unless-stopped cap_add: @@ -146,7 +146,7 @@ Zerobyte can use [rclone](https://rclone.org/) to support 40+ cloud storage prov ```diff services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.17 + image: ghcr.io/nicotsx/zerobyte:v0.18 container_name: zerobyte restart: unless-stopped cap_add: @@ -205,7 +205,7 @@ In order to enable this feature, you need to change your bind mount `/var/lib/ze ```diff services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.17 + image: ghcr.io/nicotsx/zerobyte:v0.18 container_name: zerobyte restart: unless-stopped ports: @@ -236,7 +236,7 @@ In order to enable this feature, you need to run Zerobyte with several items sha ```diff services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.17 + image: ghcr.io/nicotsx/zerobyte:v0.18 container_name: zerobyte restart: unless-stopped cap_add: diff --git a/app/server/modules/notifications/builders/email.ts b/app/server/modules/notifications/builders/email.ts index 9a8e4a9e..cec160dd 100644 --- a/app/server/modules/notifications/builders/email.ts +++ b/app/server/modules/notifications/builders/email.ts @@ -1,9 +1,10 @@ import type { NotificationConfig } from "~/schemas/notifications"; export function buildEmailShoutrrrUrl(config: Extract): string { - const auth = config.username && config.password - ? `${encodeURIComponent(config.username)}:${encodeURIComponent(config.password)}@` - : ""; + const auth = + config.username && config.password + ? `${encodeURIComponent(config.username)}:${encodeURIComponent(config.password)}@` + : ""; const host = `${config.smtpHost}:${config.smtpPort}`; const toRecipients = config.to.map((email) => encodeURIComponent(email)).join(","); const useStartTLS = config.useTLS ? "yes" : "no";