website/files.php

95 lines
3.2 KiB
PHP
Raw Normal View History

2000-05-08 02:39:55 +00:00
<? // Preamble
$pageName = "Files";
$focused = "none"; // Dock icon name to get a border
require "parts/preamble.php"; // Load most of document
2000-05-08 02:39:55 +00:00
?>
2000-05-08 02:39:55 +00:00
<?
2000-05-22 03:55:46 +00:00
function fileDownloadLink ($baseUrl, $extensions)
{
$extension = explode (' ', $extensions);
$count = count ($extension);
for ($i = 0 ; $i < $count ; $i++) {
if ($i == 0) {
echo '[ ';
}
echo '<A href="' . $baseUrl . '.' . $extension[$i] . '">' . $extension[$i] . '</A> ';
if (($i+1) < $count) {
echo '| ';
} else {
echo ']';
}
}
}
2000-05-08 02:39:55 +00:00
?>
2000-05-22 03:55:46 +00:00
<P>QuakeForge is always in constant development. Our development version has
the latest features, but changes rapidly as bugs are fixed and features are
added. Stable versions do not change significantly once released, though we
sometimes make revisions of the stable branch to fix known bugs.
2000-06-17 04:43:07 +00:00
<H4>QuakeForge Newtree Development Snapshots (updated daily)</H4>
2000-06-17 04:43:07 +00:00
<P>Newtree is the beginning of a new way of thinking about the source tree.
The code in this tree is based specifically on Id Software's QuakeWorld 2.40
source code. There is no support for NetQuake/UQuake in this tree in order
to keep it as bug-free as possible. Development is fast and furious, here's
where the action is!
<UL>
2000-07-09 06:13:54 +00:00
<LI>Source code
<? fileDownloadLink("files/newtree-current", "tar.gz tar.bz2 zip"); ?>
2000-07-18 17:29:44 +00:00
<LI>Win32 binaries (Made with Borland C++)
<? fileDownloadLink ("http://www.saunalahti.fi/~mipes/nt-win32-borl", "zip"); ?>
2000-06-17 04:43:07 +00:00
<LI>Win32 newtree binaries (Made with Microsoft VC++)
2000-07-09 06:13:54 +00:00
<? fileDownloadLink("files/newtree-win32-current", "zip"); ?>
2000-07-18 17:29:44 +00:00
<? $ftime = filemtime("files/newtree-win32-current.zip"); echo " Updated " . date("M. j, g:i a", $ftime) . " PT";?>
2000-06-17 04:43:07 +00:00
</UL>
<H4>QuakeForge Merged Tree Development Snapshots (updated daily)</H4>
<P>Our current version, considered beta but no longer in active development.
We're fixing bugs in it as people report them to us, but all of the real work
is going into newtree. If you find a bug, <A HREF="contact.php">
please let us know</A>! After newtree above has hit its second milestone and
supports single-player games, will probably discontinue support of this tree.
<UL>
<LI>Source code
<? fileDownloadLink ("files/quakeforge-current", "tar.gz tar.bz2 zip"); ?>
2000-06-17 04:43:07 +00:00
<LI>Win32 binaries (Made with Microsoft VC++)
<? fileDownloadLink ("files/quakeforge-win32-current", "zip"); ?>
<? echo " Built from CVS on " . date ("M. j, g:i a", filemtime ("files/quakeforge-win32-current.zip")) . " PT"; ?>
</UL>
2000-05-22 03:55:46 +00:00
<H4>QuakeForge Stable release (0.1.1, released 27 Feb 2000)</H4>
2000-04-16 21:06:46 +00:00
2000-05-22 05:48:26 +00:00
<P>QuakeForge 0.1 is our initial offering to the public. It's not really for
end-users, but served as a proof of concept that the Quake and QuakeWorld
trees are more closely related than initial look would indicate.
2000-05-08 02:39:55 +00:00
2000-05-22 03:55:46 +00:00
<UL>
<LI>Source code
<? fileDownloadLink ("http://download.sourceforge.net/quake/quakeforge-0.1.1", "tar.gz tar.bz2 zip"); ?>
2000-05-22 05:52:47 +00:00
<LI>Win32 binaries [ not available ]
2000-05-22 03:55:46 +00:00
</UL>
2000-05-08 02:39:55 +00:00
<H4>Miscellaneous Files</H4>
<UL>
<LI>Quake Shareware
<? fileDownloadLink ("files/quake-shareware", "tar.gz tar.bz2 zip"); ?>
</LI>
<LI>PAK, GtkPAK (Packfile manager), source
<? fileDownloadLink ("files/pak-0.2.2", "tar.gz tar.bz2 zip"); ?>
</LI>
</UL>
2000-05-08 02:39:55 +00:00
<!--NOSEARCH-->
<?
require "parts/postamble.php"; // Finish this sucker up
2000-05-08 02:39:55 +00:00
?>