2004-06-09 19:09:16 +00:00
|
|
|
<?php
|
2004-03-02 03:46:04 +00:00
|
|
|
require_once("docutil.php");
|
|
|
|
page_head("update_versions");
|
|
|
|
echo "
|
|
|
|
|
2004-05-31 18:13:01 +00:00
|
|
|
<h2>Releasing application versions</h2>
|
2003-09-11 22:26:42 +00:00
|
|
|
|
2004-05-31 18:13:01 +00:00
|
|
|
The <code>update_versions</code> script
|
2004-03-02 03:46:04 +00:00
|
|
|
releases new application versions.
|
|
|
|
It makes the needed database entries and copies files
|
2004-05-31 18:13:01 +00:00
|
|
|
to the download directory.
|
2003-09-11 22:26:42 +00:00
|
|
|
<p>
|
|
|
|
To use:
|
|
|
|
<ul>
|
|
|
|
<li> Create an 'apps directory' under the project directory.
|
2004-03-02 03:46:04 +00:00
|
|
|
Add an ", htmlspecialchars("<app_dir>"),
|
|
|
|
" element to config.xml giving the path of the apps directory.
|
2003-09-11 22:26:42 +00:00
|
|
|
<li> Create a subdirectory for each application,
|
|
|
|
with the same name as the application.
|
|
|
|
Put new application versions here.
|
|
|
|
<code>update_versions</code>
|
2004-05-31 18:13:01 +00:00
|
|
|
scans these directories for new application versions.
|
|
|
|
</ul>
|
2003-09-11 22:26:42 +00:00
|
|
|
<p>
|
|
|
|
|
|
|
|
File names must be of the form <code>NAME_VERSION_PLATFORM[.ext]</code>, e.g.:
|
|
|
|
<pre>
|
|
|
|
boinc_3.17_i686-pc-linux-gnu.gz
|
|
|
|
astropulse_7.17_windows_intelx86.exe
|
|
|
|
</pre>
|
2004-11-25 21:19:01 +00:00
|
|
|
The prefix name and extensions .gz, .exe, .sig are ignored.
|
2004-10-01 22:00:39 +00:00
|
|
|
<p>
|
|
|
|
Important notes:
|
|
|
|
<ul>
|
|
|
|
<li> <b>Platform strings must match the names of platforms in the database.</b>
|
|
|
|
If needed, <a href=tool_xadd.php>add the platform to the DB</a>.
|
|
|
|
<li> <b>Your application must have the same major version number
|
|
|
|
as your BOINC server software</b>.
|
|
|
|
</ul>
|
2003-09-04 06:17:15 +00:00
|
|
|
|
2003-09-11 22:26:42 +00:00
|
|
|
<p>
|
2004-08-19 15:36:30 +00:00
|
|
|
If a file of the form
|
|
|
|
<pre>
|
|
|
|
EXEC_FILENAME.sig
|
|
|
|
</pre>
|
|
|
|
is found, its contents will be used as a digital signature
|
|
|
|
for the corresponding file.
|
|
|
|
Recommended code-signing practices are described
|
|
|
|
<a href=code_signing.php>here</a>.
|
|
|
|
|
2003-09-04 06:17:15 +00:00
|
|
|
|
2004-09-25 00:27:25 +00:00
|
|
|
<h3>Minimum core version</h3>
|
|
|
|
Application versions have a field <code>min_core_version</code> which,
|
|
|
|
if nonzero, indicates the minimum core client version number
|
|
|
|
to which the application version should be sent.
|
|
|
|
Update_versions, by default, sets this to the largest
|
|
|
|
core client version number in the database.
|
|
|
|
You can disable this by editing update_versions,
|
|
|
|
or by manually changing the app_version record.
|
|
|
|
|
2004-03-02 03:46:04 +00:00
|
|
|
<h3>Multiple-file application versions</h3>
|
|
|
|
|
|
|
|
Application versions can consist of multiple files.
|
|
|
|
Follow the above procedure, but create a directory
|
|
|
|
with the given name, and put the files in that directory.
|
|
|
|
The executable file with the lexicographically first name
|
|
|
|
will be treated as the main program.
|
|
|
|
|
|
|
|
|
2004-05-31 18:13:01 +00:00
|
|
|
<h2>Releasing core client versions</h2>
|
2004-03-02 03:46:04 +00:00
|
|
|
|
|
|
|
The same mechanism is used to release core client versions:
|
|
|
|
Create a subdirectory 'boinc' in the apps directory,
|
|
|
|
put new core client installer files there, and run update_versions.
|
|
|
|
Core client versions will be visible to participants
|
|
|
|
on your project's 'Download BOINC' web page.
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<b>NOTE</b>: the files distributed in this way are installers,
|
|
|
|
not executables.
|
|
|
|
Instructions for creating installers are
|
|
|
|
<a href=ssl_client_release_instructions.txt>here</a>.
|
|
|
|
<p>
|
|
|
|
<b>NOTE</b>: in the interests of consistency,
|
|
|
|
we recommend that BOINC projects not distribute core client versions,
|
|
|
|
but rather set the 'Download BOINC' link on their web page
|
|
|
|
to point to the download page on the main BOINC site.
|
2004-11-02 23:12:29 +00:00
|
|
|
Use this URL:
|
|
|
|
http://setiweb.ssl.berkeley.edu/sah/download_boinc.php
|
2003-09-04 06:17:15 +00:00
|
|
|
|
2003-09-11 22:26:42 +00:00
|
|
|
";
|
2003-09-04 06:17:15 +00:00
|
|
|
page_tail();
|
|
|
|
?>
|
|
|
|
|