Commit: 8f17e3b4c89ee67556f4fd0d693404b4d09727f7 Author: Christoph M. Becker <[email protected]> Tue, 19 Jan 2021 12:04:08 +0100 Parents: e7c62d718b8d697eaa6ebb1188854d9796b15620 Branches: master
Link: http://git.php.net/?p=web/windows.git;a=commitdiff;h=8f17e3b4c89ee67556f4fd0d693404b4d09727f7 Log: PHP 7.2 is EOL Changed paths: M docroot/listing.php M script/generate_snap_page.php M templates/snaps.php Diff: diff --git a/docroot/listing.php b/docroot/listing.php index 0862b0f..1ef8022 100644 --- a/docroot/listing.php +++ b/docroot/listing.php @@ -36,14 +36,8 @@ include __DIR__ . '/../include/listing.php'; $baseurl = '/' . $dir_to_parse . '/'; $versions = generate_listing($dir_to_parse, $nmode); -$major_order = array('8.0', '7.4', '7.3', '7.2'); +$major_order = array('8.0', '7.4', '7.3'); $minor_order = array( - '7.2' => array( - 'nts-VC15-x64', - 'ts-VC15-x64', - 'nts-VC15-x86', - 'ts-VC15-x86' - ), '7.3' => array( 'nts-VC15-x64', 'ts-VC15-x64', diff --git a/script/generate_snap_page.php b/script/generate_snap_page.php index 3b33d28..113881b 100644 --- a/script/generate_snap_page.php +++ b/script/generate_snap_page.php @@ -3,7 +3,7 @@ include __DIR__ . '/../include/config.php'; /* TODO: use exported branches list when available instead */ -$active_branches = array('master', '7.4', '7.3', '7.2'); +$active_branches = array('master', '8.0', '7.4', '7.3'); $builds = array( 'master' => array( @@ -30,12 +30,6 @@ $builds = array( 'nts-windows-vc15-x86-avx', 'ts-windows-vc15-x86-avx' ), - '7.2' => array( - 'nts-windows-vc15-x64', - 'ts-windows-vc15-x64', - 'nts-windows-vc15-x86', - 'ts-windows-vc15-x86' - ), ); function parse_meta($path) diff --git a/templates/snaps.php b/templates/snaps.php index 3b94b37..cad8a61 100644 --- a/templates/snaps.php +++ b/templates/snaps.php @@ -1,7 +1,7 @@ <?php include __DIR__ . '/../include/tools.php'; -$major_order = array('7.4', '7.3', '7.2', 'master'); +$major_order = array('8.0', '7.4', '7.3', 'master'); $minor_order = array( 'master' => array( 'nts-windows-vs16-x64', @@ -27,12 +27,6 @@ $minor_order = array( 'nts-windows-vc15-x64-avx', 'ts-windows-vc15-x64-avx', ), - '7.2' => array( - 'nts-windows-vc15-x64', - 'ts-windows-vc15-x64', - 'nts-windows-vc15-x86', - 'ts-windows-vc15-x86' - ), ); $labels = array( -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
