Skip to content

Commit

Permalink
Merge pull request #118 from phpbb/release/3.3.14-RC1
Browse files Browse the repository at this point in the history
Enable unstable downloads page for 3.3.14-RC1
  • Loading branch information
marc1706 authored Oct 22, 2024
2 parents b2acc0c + 0d9d24b commit 9317ea1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Controller/DefaultController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.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';
$previousVersions = ['3.3.13', '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.14-RC1';
$mainPackageSha = 'b69716053bd9e6637980313f683a81f518808c922758cc672d5314fc8e2e7364';
$currentBranch = '3.3/unstable';
$currentVersionFiles = 'https://download.phpbb.com/pub/release/' . $currentBranch
. '/' . $currentVersion . '/';
Expand Down

0 comments on commit 9317ea1

Please sign in to comment.