From d355b3167f41792368b57fe86bc85b3a18724d1c Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Thu, 2 Feb 2023 09:41:14 +0000 Subject: [PATCH] fix GOESBUILD for newer go versions switched to 'go install' syntax. for #248. --- Makefile | 2 +- config/config-base.json | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cf2d704..4bf1ac7 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,7 @@ npm: @if [ "$(GOESBUILD)" = "off" ]; then\ npm install esbuild;\ else\ - go get -u github.com/evanw/esbuild/cmd/esbuild;\ + go install github.com/evanw/esbuild/cmd/esbuild@latest;\ fi configuration: diff --git a/config/config-base.json b/config/config-base.json index 17eee6a..492180d 100644 --- a/config/config-base.json +++ b/config/config-base.json @@ -265,6 +265,14 @@ "value": "", "advanced": true, "description": "Set a different URL for the sign-up form to redirect the user to when they've signed up. Default to 'Public Server' or 'Server' in the Jellyfin tab." + }, + "auto_redirect": { + "name": "Auto redirect on success", + "required": false, + "requires_restart": true, + "type": "bool", + "value": false, + "description": "Navigate directly to the above URL instead of needing the user to click \"Continue\"." } } },