From bceb13f4dd9b1b3c27095e6a91517d9a7c651fc8 Mon Sep 17 00:00:00 2001 From: kikootwo Date: Tue, 10 Feb 2026 22:01:01 -0500 Subject: [PATCH] Bump version to 1.0.6 and document auth envs Bump package version from 1.0.5 to 1.0.6. Add two commented environment variable examples to docker-compose.yml for authentication configuration: DISABLE_LOCAL_LOGIN (force OAuth) and ALLOW_WEAK_PASSWORD (remove minimum password length). These entries are documented examples only and do not change runtime behavior. --- docker-compose.yml | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 9cd7eaf..1d5cf7b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -71,6 +71,9 @@ services: # PLEX_CLIENT_IDENTIFIER: "readmeabook-custom-id" # PLEX_PRODUCT_NAME: "ReadMeABook" # LOG_LEVEL: "info" + # DISABLE_LOCAL_LOGIN: "true" # Set to "true" to disable local login (force OAuth) + # ALLOW_WEAK_PASSWORD: "true" # Set to "true" to remove minimum password length requirement + # ======================================================================== # IMPORTANT: Public URL Configuration (Required for OAuth) diff --git a/package.json b/package.json index f517e13..397046a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "readmeabook", - "version": "1.0.5", + "version": "1.0.6", "private": true, "scripts": { "dev": "next dev",