From 4b45c0a2a2b7e4efa618b9df5aa85b0610b13486 Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Thu, 10 Apr 2025 02:22:38 -0700 Subject: [PATCH] feat: add release category to template --- tvapp2/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tvapp2/index.js b/tvapp2/index.js index 3a4961b8..d9f8181a 100755 --- a/tvapp2/index.js +++ b/tvapp2/index.js @@ -67,6 +67,7 @@ const FOLDER_WWW = 'www'; Define > Environment Variables || Defaults */ +const envAppRelease = process.env.RELEASE || 'stable'; const envUrlRepo = process.env.URL_REPO || 'https://git.binaryninja.net/binaryninja'; const envStreamQuality = process.env.STREAM_QUALITY || 'hd'; const envFileURL = process.env.FILE_URL || 'urls.txt'; @@ -1270,6 +1271,7 @@ const server = http.createServer( ( request, response ) => dateGZP: FILE_GZP_MODIFIED, healthTimer: envHealthTimer, + appRelease: envAppRelease, appName: name, appVersion: version, appUrlGithub: repository.url,