web: separate Intel-only from Universal (PowerPC & Intel) clients on download-all page

svn path=/trunk/boinc/; revision=25551
This commit is contained in:
Charlie Fenton 2012-04-12 22:24:51 +00:00
parent dfc84b1916
commit cff3533f86
2 changed files with 37 additions and 2 deletions

View File

@ -3282,3 +3282,11 @@ David 12 Apr 2012
user/
tree_threader.php
Charlie 12 Apr 2012
- web: separate Intel-only from Universal (PowerPC & Intel) clients
on download-all page so that PowerPC clients don't tell users
to upgrade to intel-only version.
doc/
versions.inc

View File

@ -95,6 +95,14 @@ $m612 = array(
"type"=>"mac_advanced",
);
$m612_ppc = array(
"num"=>"6.12.35",
"status"=>"Recommended version (standard GUI)",
"file"=>"boinc_6.12.35_macOSX_universal.zip",
"date"=>"11 Aug 2011",
"type"=>"mac_advanced",
);
$m66 = array(
"num"=>"6.6.36",
"status"=>"Older version (standard GUI) (works on OS 10.3.9 - OS 10.5.8)",
@ -119,6 +127,14 @@ $m612c = array(
"type"=>"bare_core",
);
$m612c_ppc = array(
"num"=>"6.12.35",
"status"=>"Recommended version (Unix command-line version)",
"file"=>"boinc_6.12.35_universal-apple-darwin.zip",
"date"=>"11 Aug 2011",
"type"=>"bare_core",
);
$m66c = array(
"num"=>"6.6.36",
"status"=>"Older version (Unix command-line version) (works on OS 10.3.9 - OS 10.5.8)",
@ -202,14 +218,24 @@ $windowsx64 = array(
);
$mac = array(
"name"=>"Mac OS X",
"name"=>"Mac OS X (Intel only)",
"description"=>"Version 10.4.0+",
"dbname" => "powerpc-apple-darwin",
"dbname" => "i686-apple-darwin",
"versions"=>array(
$m70,
$m70c,
$m612,
$m612c,
)
);
$macppc = array(
"name"=>"Mac OS X (PowerPC & Intel)",
"description"=>"Version 10.4.0+",
"dbname" => "powerpc-apple-darwin",
"versions"=>array(
$m612_ppc,
$m612c_ppc,
$m66,
$m66c,
)
@ -258,6 +284,7 @@ $platforms = array(
"win"=>$windows,
"winx64"=>$windowsx64,
"mac"=>$mac,
"macppc" = $macppc,
"linux"=>$linux,
"linuxx64"=>$linuxx64,
"linuxcompat"=>$linuxcompat,