2004-11-15 01:58:30 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("docutil.php");
|
|
|
|
|
2005-03-22 05:30:32 +00:00
|
|
|
page_head("Download BOINC client software");
|
2005-03-08 00:23:58 +00:00
|
|
|
|
2005-03-22 05:30:32 +00:00
|
|
|
function dl_item($x, $y) {
|
|
|
|
echo "<tr><td valign=top align=right width=30% bgcolor=d8d8ff>$x</td>
|
|
|
|
<td>$y</td></tr>
|
|
|
|
";
|
2004-11-15 01:58:30 +00:00
|
|
|
}
|
|
|
|
|
2005-03-22 05:30:32 +00:00
|
|
|
function version($number, $desc, $filename, $date, $installer, $issues=null) {
|
2004-11-15 01:58:30 +00:00
|
|
|
$path = "dl/$filename";
|
2005-03-22 05:30:32 +00:00
|
|
|
$dlink = "<a href=http://boinc.berkeley.edu/$path>$filename</a>";
|
2004-11-22 19:17:13 +00:00
|
|
|
$md = md5_file($path);
|
2005-03-22 05:30:32 +00:00
|
|
|
$s = number_format(filesize($path)/1000000, 2);
|
2004-11-15 01:58:30 +00:00
|
|
|
|
2005-03-22 05:30:32 +00:00
|
|
|
list_start();
|
|
|
|
list_bar($desc);
|
|
|
|
dl_item("File (click to download)", "$dlink ($s MB)");
|
|
|
|
dl_item("Version number", $number);
|
|
|
|
dl_item("Release date", $date);
|
|
|
|
dl_item("Installer type", $installer);
|
|
|
|
dl_item("MD5 checksum of download file", $md);
|
|
|
|
if ($issues) {
|
|
|
|
dl_item ("Known issues", $issues);
|
|
|
|
}
|
2004-11-15 01:58:30 +00:00
|
|
|
list_end();
|
|
|
|
}
|
|
|
|
|
2005-03-05 23:12:31 +00:00
|
|
|
function win_old() {
|
2005-03-22 05:30:32 +00:00
|
|
|
return "<a href=client_windows.php>Single-mode Windows installer</a>";
|
2005-03-05 23:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function win_new() {
|
2005-03-22 05:30:32 +00:00
|
|
|
return "<a href=win_install.php>Multi-mode Windows installer</a>";
|
2005-03-05 23:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function bare_core() {
|
|
|
|
return "<a href=bare_core.php>Core client only (command-line)</a>";
|
|
|
|
}
|
|
|
|
|
|
|
|
function sea() {
|
|
|
|
return "<a href=sea.php>Self-extracting archive</a>";
|
|
|
|
}
|
|
|
|
|
|
|
|
function mac_simple() {
|
2005-03-09 20:40:57 +00:00
|
|
|
return "<a href=menubar.php>Menubar (simple GUI)</a>";
|
2005-03-05 23:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function mac_advanced() {
|
2005-03-22 05:30:32 +00:00
|
|
|
return "<a href=mac_advanced.php>Advanced GUI</a>";
|
2005-03-11 01:28:25 +00:00
|
|
|
}
|
|
|
|
|
2004-11-15 01:58:30 +00:00
|
|
|
echo "
|
2005-03-22 05:30:32 +00:00
|
|
|
BOINC client software is available for
|
|
|
|
<a href=#windows>Windows</a>,
|
|
|
|
<a href=#mac>Mac OS X</a>,
|
|
|
|
<a href=#linux>Linux/x86</a> and
|
|
|
|
<a href=#solaris>SPARC/Solaris</a>.
|
|
|
|
Click on your computer type, or scroll down.
|
|
|
|
<p>
|
|
|
|
If your computer is not of one of these types, you can
|
2004-11-15 01:58:30 +00:00
|
|
|
<ul>
|
2005-03-22 05:30:32 +00:00
|
|
|
<li> <a href=anonymous_platform.php>download the BOINC source code and compile it yourself</a> or
|
|
|
|
<li> <a href=download_other.php>download executables from a third-party site</a>.
|
2004-11-15 01:58:30 +00:00
|
|
|
</ul>
|
|
|
|
<p>
|
2005-01-18 23:35:53 +00:00
|
|
|
|
2005-03-22 05:30:32 +00:00
|
|
|
<a name=windows>
|
|
|
|
<h2>Microsoft Windows (all versions, Windows 95 and later)</h2>
|
2005-02-25 21:31:46 +00:00
|
|
|
";
|
2005-03-22 05:30:32 +00:00
|
|
|
version(
|
|
|
|
"4.25",
|
|
|
|
"Recommended version",
|
|
|
|
"boinc_4.25_windows_intelx86.exe",
|
|
|
|
"3 Mar 2005",
|
|
|
|
win_new(),
|
|
|
|
"<ul>
|
|
|
|
<li> The BOINC screensaver conflicts with Microsoft Intellitype software.
|
|
|
|
<li>
|
|
|
|
Applications that were built before October 2004 do not
|
|
|
|
display screensaver graphics
|
|
|
|
with the Service or Shared install type,
|
|
|
|
or the Single-user install type with the password protect screensaver
|
|
|
|
option on NT based machines.
|
|
|
|
<li>
|
|
|
|
If BOINC runs at the same time as Windows XP 3D screensavers,
|
|
|
|
the system becomes sluggish and unresponsive.
|
|
|
|
</ul>
|
|
|
|
If you experience any of these problems,
|
|
|
|
we recommend using BOINC version 4.19.
|
|
|
|
"
|
|
|
|
);
|
|
|
|
version(
|
|
|
|
"4.19",
|
|
|
|
"Older version",
|
|
|
|
"boinc_4.19_windows_intelx86.exe",
|
|
|
|
"25 Jan 2005",
|
|
|
|
win_old(),
|
|
|
|
"<ul>
|
|
|
|
<li> Doesn't work with some HTTP proxies (fixed in later versions).
|
|
|
|
</ul>
|
|
|
|
"
|
|
|
|
);
|
2005-02-25 21:31:46 +00:00
|
|
|
echo "
|
2005-03-22 05:30:32 +00:00
|
|
|
<a name=mac>
|
|
|
|
<h2>Macintosh OS/X (10.2 and later)</h2>
|
2005-02-25 21:31:46 +00:00
|
|
|
";
|
2005-03-22 05:30:32 +00:00
|
|
|
version(
|
|
|
|
"4.19",
|
|
|
|
"Recommended version",
|
|
|
|
"boinc_4.19_powerpc-apple-darwin.gz",
|
|
|
|
"25 Jan 2005",
|
|
|
|
bare_core()
|
|
|
|
);
|
|
|
|
version(
|
|
|
|
"4.25",
|
|
|
|
"Development version (simple GUI)",
|
|
|
|
"BOINC_Menubar_4.25_mac.zip",
|
|
|
|
"10 Mar 2005",
|
|
|
|
mac_simple()
|
|
|
|
);
|
|
|
|
version(
|
|
|
|
"4.25",
|
|
|
|
"Development version (command line)",
|
|
|
|
"boinc_4.25_powerpc-apple-darwin.gz",
|
|
|
|
"3 Mar 2005",
|
|
|
|
bare_core()
|
|
|
|
);
|
2005-02-25 21:31:46 +00:00
|
|
|
|
|
|
|
echo "
|
2005-03-22 05:30:32 +00:00
|
|
|
<a name=linux>
|
|
|
|
<h2>Linux/x86</h2>
|
|
|
|
";
|
|
|
|
version(
|
|
|
|
"4.19",
|
|
|
|
"Recommended version",
|
|
|
|
"boinc_4.19_i686-pc-linux-gnu.gz",
|
|
|
|
"25 Jan 2005",
|
|
|
|
bare_core()
|
|
|
|
);
|
|
|
|
version(
|
|
|
|
"4.27",
|
|
|
|
"Development version",
|
|
|
|
"boinc_4.27_i686-pc-linux-gnu.sh",
|
|
|
|
"16 Mar 2005",
|
|
|
|
sea()
|
|
|
|
);
|
|
|
|
echo "
|
|
|
|
<a name=solaris>
|
|
|
|
<h2>Solaris/SPARC</h2>
|
|
|
|
";
|
|
|
|
version(
|
|
|
|
"4.19",
|
|
|
|
"Recommended version",
|
|
|
|
"boinc_4.19_sparc-sun-solaris2.7.gz",
|
|
|
|
"25 Jan 2005",
|
|
|
|
bare_core()
|
|
|
|
);
|
|
|
|
version(
|
|
|
|
"4.26",
|
|
|
|
"Development version",
|
|
|
|
"boinc_4.26_sparc-sun-solaris2.7.sh",
|
|
|
|
"10 Mar 2005",
|
|
|
|
sea()
|
|
|
|
);
|
2005-03-19 21:39:17 +00:00
|
|
|
|
2005-03-22 05:30:32 +00:00
|
|
|
echo "
|
2005-03-19 21:39:17 +00:00
|
|
|
<h2>End-User License Agreement</h2>
|
|
|
|
Versions 4.27 and earlier may contain an erroneous
|
|
|
|
End-User Licence Agreement.
|
|
|
|
The correct text is:
|
|
|
|
<pre>
|
|
|
|
License Agreement
|
|
|
|
|
|
|
|
Please carefully read the following terms and conditions
|
|
|
|
before using this software. Your use of this software indicates
|
|
|
|
your acceptance of this license agreement and warranty.
|
|
|
|
|
|
|
|
Disclaimer of Warranty
|
|
|
|
|
|
|
|
THIS SOFTWARE AND THE ACCOMPANYING FILES ARE DISTRIBUTED \"AS IS\"
|
|
|
|
AND WITHOUT WARRANTIES AS TO PERFORMANCE OR MERCHANTABILITY OR ANY
|
|
|
|
OTHER WARRANTIES WHETHER EXPRESSED OR IMPLIED.
|
|
|
|
NO WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE IS OFFERED.
|
|
|
|
|
|
|
|
Restrictions
|
|
|
|
|
|
|
|
You may use this software on a computer system only if you own the system
|
|
|
|
or have the permission of the owner.
|
|
|
|
|
|
|
|
Distribution
|
|
|
|
|
|
|
|
This is free software.
|
|
|
|
It is distributed under the terms of the GNU Lesser General Public License
|
|
|
|
as published by the Free Software Foundation (http://www.fsf.org/).
|
|
|
|
The source code may be obtained
|
|
|
|
from the BOINC web site (http://boinc.berkeley.edu).
|
|
|
|
|
|
|
|
</pre>
|
2004-11-15 01:58:30 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|