From c024f63532c19892b3700c16b801bc851547ecdc Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Mon, 5 Aug 2024 20:11:59 +0200 Subject: [PATCH] Enable unstable downloads page for 3.3.13-RC1 --- src/Controller/DefaultController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Controller/DefaultController.php b/src/Controller/DefaultController.php index a38e893..35a57ef 100644 --- a/src/Controller/DefaultController.php +++ b/src/Controller/DefaultController.php @@ -114,11 +114,11 @@ public function docsRedirectAction($path): RedirectResponse public function downloadsAction(): Response { // Make this false when the most recent release is not an RC/Alpha/Beta - $latestDevelopment = false; + $latestDevelopment = true; - $previousVersions = ['3.3.11', '3.3.10', '3.3.9', '3.3.8', '3.3.7', '3.3.6', '3.3.5', '3.3.4', '3.3.3', '3.3.2', '3.3.1', '3.3.0', '3.2.10', '3.2.9', '3.2.8', '3.2.7', '3.2.6', '3.2.5', '3.2.4', '3.2.3', '3.2.2', '3.2.1', '3.2.0', '3.1.12', '3.1.11', '3.1.10', '3.1.9', '3.1.8', '3.1.7-pl1', '3.1.6', '3.1.5', '3.1.4', '3.1.3', '3.1.2', '3.1.1', '3.1.0']; - $currentVersion = '3.3.12-RC1'; - $mainPackageSha = 'b0ef4992c936b3ca1f51755eb567b2f41ce14c8cc1719c268137af24ddb78523'; + $previousVersions = ['3.3.12', '3.3.11', '3.3.10', '3.3.9', '3.3.8', '3.3.7', '3.3.6', '3.3.5', '3.3.4', '3.3.3', '3.3.2', '3.3.1', '3.3.0', '3.2.10', '3.2.9', '3.2.8', '3.2.7', '3.2.6', '3.2.5', '3.2.4', '3.2.3', '3.2.2', '3.2.1', '3.2.0', '3.1.12', '3.1.11', '3.1.10', '3.1.9', '3.1.8', '3.1.7-pl1', '3.1.6', '3.1.5', '3.1.4', '3.1.3', '3.1.2', '3.1.1', '3.1.0']; + $currentVersion = '3.3.13-RC1'; + $mainPackageSha = '34c58143ac6aa2ca249e8934ae8fd3a11c71980be36deb0e69c2ca8cae1c746a'; $currentBranch = '3.3/unstable'; $currentVersionFiles = 'https://download.phpbb.com/pub/release/' . $currentBranch . '/' . $currentVersion . '/';