From e7076859b7d9bbb118a2d9cea9a66ca2344b1529 Mon Sep 17 00:00:00 2001 From: MasterDraco Date: Wed, 5 Mar 2025 10:26:50 +0000 Subject: [PATCH] Fix version display for fresh installs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The server.js template in file-creator-module.sh had a hardcoded version of 1.2.0, causing fresh installations to display the wrong version number on the dashboard. Updated to display 2.0.6. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- modules/file-creator-module.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/file-creator-module.sh b/modules/file-creator-module.sh index 8317476..d987933 100644 --- a/modules/file-creator-module.sh +++ b/modules/file-creator-module.sh @@ -269,7 +269,7 @@ app.use(bodyParser.urlencoded({ extended: true, limit: '50mb' })); app.get('/api/status', (req, res) => { res.json({ status: 'running', - version: '1.2.0', + version: '2.0.6', transmissionConnected: !!transmissionClient, postProcessorActive: postProcessor && postProcessor.processingIntervalId !== null, rssFeedManagerActive: rssFeedManager && rssFeedManager.updateIntervalId !== null,