2000-05-08 02:39:55 +00:00
|
|
|
<? // Preamble
|
|
|
|
$pageName = "Files";
|
2002-10-01 11:38:47 +00:00
|
|
|
$focused = "download"; // Dock icon name to get a border
|
2001-10-17 05:46:43 +00:00
|
|
|
$currPage = "files"; // Name of the page, for the menu
|
2000-07-18 17:24:34 +00:00
|
|
|
require "parts/preamble.php"; // Load most of document
|
2000-05-08 02:39:55 +00:00
|
|
|
?>
|
2000-07-18 17:24:34 +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 ']';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2003-07-18 06:18:44 +00:00
|
|
|
function fileDownloadLinkGPG ($baseUrl, $extensions $mode)
|
2002-10-10 05:12:57 +00:00
|
|
|
{
|
|
|
|
$extension = explode (' ', $extensions);
|
|
|
|
$count = count ($extension);
|
2003-07-18 06:18:44 +00:00
|
|
|
|
|
|
|
if ($mode)
|
|
|
|
echo '<br>PGP Signatures (to verify archive authenticity) ';
|
|
|
|
else
|
|
|
|
echo 'PGP ';
|
2002-10-10 05:12:57 +00:00
|
|
|
for ($i = 0 ; $i < $count ; $i++) {
|
|
|
|
if ($i == 0) {
|
|
|
|
echo '[ ';
|
|
|
|
}
|
|
|
|
echo '<A href="' . $baseUrl . '.' . $extension[$i] . '.asc">' . $extension[$i] . '</A> ';
|
|
|
|
if (($i+1) < $count) {
|
|
|
|
echo '| ';
|
|
|
|
} else {
|
|
|
|
echo ']';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2000-05-08 02:39:55 +00:00
|
|
|
?>
|
2000-10-03 05:47:36 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<P>QuakeForge and <A href="#quake2">Quake2Forge</A> are always in constant
|
|
|
|
development. Our development versions have the latest features, but they change
|
|
|
|
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
|
2003-07-08 00:51:53 +00:00
|
|
|
branch to fix known bugs. <strong>Note: the game data is still non-free; you need either the shareware data (see below) or the registered data.</strong>
|
2000-05-22 03:55:46 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<H2>Current Releases</H2>
|
2001-01-11 20:03:41 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<H3>QuakeForge</H3>
|
2001-05-15 04:04:07 +00:00
|
|
|
|
2001-12-20 23:20:24 +00:00
|
|
|
<P>This is our new development tree (we're back to "quakeforge"),
|
2002-10-01 11:38:47 +00:00
|
|
|
where we're again in the process of merging Quake and QuakeWorld...but
|
|
|
|
this time, it's much better. This series will eventually provide the 0.6
|
2001-12-20 23:20:24 +00:00
|
|
|
versions of QuakeForge.
|
2002-10-01 11:38:47 +00:00
|
|
|
|
2001-12-20 23:20:24 +00:00
|
|
|
<P>While almost always in working order, it's under heavy development so
|
|
|
|
be prepared to encounter some issues <STRONG>(Wear your hard hat!)</STRONG>.
|
|
|
|
Please check the <a href="documentation.php">docs</a>.
|
2002-10-01 11:38:47 +00:00
|
|
|
<!--
|
|
|
|
<P><STRONG>UNIX users:</STRONG> because of the diversity of machines QuakeForge
|
|
|
|
runs on, we do not provide UNIX binaries. You need to compile QuakeForge
|
|
|
|
yourself. However, QuakeForge is very easy to compile once you have the
|
|
|
|
following packages installed:
|
2002-08-29 19:48:52 +00:00
|
|
|
<UL>
|
|
|
|
<LI>GNU autoconf 2.50 or later
|
|
|
|
<LI>GNU automake 1.6 or later
|
|
|
|
<LI>GNU libtool 1.4 or later
|
|
|
|
<LI>GNU bison
|
|
|
|
<LI>GNU flex
|
2002-08-29 19:58:04 +00:00
|
|
|
<LI>GNU make (BSD make doesn't like some constructs used)
|
2002-08-29 19:48:52 +00:00
|
|
|
</UL>
|
|
|
|
The following are recommended:
|
|
|
|
<UL>
|
2002-08-29 20:05:46 +00:00
|
|
|
<LI>zlib devel (<em>highly</em> recommended for compressed file and download support)
|
|
|
|
<LI>Ogg Vorbis libs (for compressed sound effects support)
|
2002-08-29 20:00:44 +00:00
|
|
|
<LI>X11 devel (for X11-based clients: software and OpenGL)
|
2002-10-01 11:38:47 +00:00
|
|
|
<LI>SVGAlib (for console-based clients: software and 3dfx)
|
|
|
|
<LI>Glide and Mesa, or another OpenGL-compatible library.
|
2002-08-29 19:48:52 +00:00
|
|
|
</UL>
|
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<P><STRONG>Note:</STRONG> The main reason we have Win32 downloads is that it's
|
|
|
|
hard to compile the Win32 version, and unless we built Win32 versions ourselves,
|
|
|
|
very few people on Windows would be able to play. <STRONG>:)</STRONG>
|
|
|
|
-->
|
2003-07-18 06:10:54 +00:00
|
|
|
<H4>QuakeForge, Version 0.5.4 (released 18 Jul 2003)</H4>
|
|
|
|
<UL>
|
|
|
|
<LI>Source code
|
|
|
|
<?
|
|
|
|
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-0.5.4", "tar.bz2 tar.gz zip");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-0.5.4", "tar.bz2 tar.gz zip", 1);
|
2003-07-18 06:10:54 +00:00
|
|
|
?>
|
|
|
|
</LI>
|
|
|
|
<LI>Win32 binaries (Made with <A href="http://www.mingw.org/">MinGW</A> (GCC) in Linux)
|
|
|
|
<?
|
2003-07-18 06:15:20 +00:00
|
|
|
echo '<br>SDL (sw) client';
|
2003-07-18 06:10:54 +00:00
|
|
|
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-client-sdl-0.5.4-win32", "zip");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-client-sdl-0.5.4-win32", "zip", 0);
|
2003-07-18 06:13:20 +00:00
|
|
|
echo '<br>SDL32 (32 bpp sw) client';
|
2003-07-18 06:10:54 +00:00
|
|
|
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-client-sdl32-0.5.4-win32", "zip");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-client32-sdl-0.5.4-win32", "zip", 0);
|
2003-07-18 06:13:20 +00:00
|
|
|
echo '<br>SGL (SDL OpenGL) client';
|
2003-07-18 06:10:54 +00:00
|
|
|
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-client-sgl-0.5.4-win32", "zip");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-client-sgl-0.5.4-win32", "zip", 0);
|
2003-07-18 06:13:20 +00:00
|
|
|
echo '<br>WGL (native OpenGL) client';
|
2003-07-18 06:10:54 +00:00
|
|
|
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-client-wgl-0.5.4-win32", "zip");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-client-wgl-0.5.4-win32", "zip", 0);
|
2003-07-18 06:13:20 +00:00
|
|
|
echo '<br>servers';
|
2003-07-18 06:10:54 +00:00
|
|
|
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-server-0.5.4-win32", "zip");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-server-0.5.4-win32", "zip", 0);
|
2003-07-18 06:13:20 +00:00
|
|
|
echo '<br>tools';
|
2003-07-18 06:10:54 +00:00
|
|
|
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-tools-0.5.4-win32", "zip");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-tools-0.5.4-win32", "zip", 0);
|
2003-07-18 06:15:20 +00:00
|
|
|
echo '<br>libs and header files';
|
2003-07-18 06:10:54 +00:00
|
|
|
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-devel-0.5.4-win32", "zip");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-devel-0.5.4-win32", "zip", 0);
|
2003-07-18 06:10:54 +00:00
|
|
|
?>
|
|
|
|
</LI>
|
|
|
|
<LI><A href="http://www.debian.org/">Debian GNU/Linux</A> packages for the
|
|
|
|
i386 architecture are available by using APT. Use the following
|
|
|
|
<TT>/etc/apt/sources.list</TT> recipe:
|
|
|
|
<PRE>deb http://www.quakeforge.net/packages/debian unstable contrib non-free</PRE>
|
|
|
|
</LI>
|
|
|
|
<LI>RPM packages are available <A href="/packages/rpm/">here</A>.</LI>
|
|
|
|
<LI>The packages do not contain the menu file because it would seriously
|
|
|
|
screw up future upgrades. This will be fixed in 0.5.3. If you want menus,
|
|
|
|
you will have to download <TT>menu.dat</TT>
|
|
|
|
<?
|
|
|
|
fileDownloadLink("files/menu.dat", "gz");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("files/menu.dat", "gz", 1);
|
2003-07-18 06:10:54 +00:00
|
|
|
?>
|
|
|
|
<BR>This goes into your <TT>id1</TT> directory. However, this will override any
|
|
|
|
<TT>menu.dat</TT> we supply in the future which will possibly cause
|
|
|
|
problems.
|
|
|
|
</LI>
|
|
|
|
<LI>Patch to fix a bug in 0.5.2 that causes pak to generate broken pak
|
|
|
|
files on BSD systems (seen as linking errors in the ruamoko directory).
|
|
|
|
<?
|
|
|
|
fileDownloadLink("files/Qseek", "diff");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("files/Qseek", "diff", 1);
|
2003-07-18 06:10:54 +00:00
|
|
|
?>
|
|
|
|
</LI>
|
|
|
|
</UL>
|
2002-10-01 11:38:47 +00:00
|
|
|
<H4>QuakeForge, Version 0.5.2 (released 01 Oct 2002)</H4>
|
2001-06-28 20:55:25 +00:00
|
|
|
<UL>
|
|
|
|
<LI>Source code
|
2002-10-01 11:38:47 +00:00
|
|
|
<?
|
|
|
|
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-0.5.2", "tar.bz2 tar.gz zip");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-0.5.2", "tar.bz2 tar.gz zip", 1);
|
2002-10-01 11:38:47 +00:00
|
|
|
?>
|
2001-06-28 20:55:25 +00:00
|
|
|
</LI>
|
2001-11-06 05:16:06 +00:00
|
|
|
<LI>Win32 binaries (Made with <A href="http://www.mingw.org/">MinGW</A> (GCC) in Linux)
|
|
|
|
<?
|
2002-10-01 11:38:47 +00:00
|
|
|
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-0.5.2-win32", "zip");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-0.5.2-win32", "zip", 1);
|
2001-11-06 05:16:06 +00:00
|
|
|
?>
|
|
|
|
</LI>
|
2002-10-01 11:38:47 +00:00
|
|
|
<LI><A href="http://www.debian.org/">Debian GNU/Linux</A> packages for the
|
|
|
|
i386 architecture are available by using APT. Use the following
|
|
|
|
<TT>/etc/apt/sources.list</TT> recipe:
|
|
|
|
<PRE>deb http://www.quakeforge.net/packages/debian unstable contrib non-free</PRE>
|
|
|
|
</LI>
|
|
|
|
<LI>RPM packages are available <A href="/packages/rpm/">here</A>.</LI>
|
2002-10-01 15:44:04 +00:00
|
|
|
<LI>The packages do not contain the menu file because it would seriously
|
|
|
|
screw up future upgrades. This will be fixed in 0.5.3. If you want menus,
|
2002-10-01 15:46:06 +00:00
|
|
|
you will have to download <TT>menu.dat</TT>
|
2002-10-01 15:44:04 +00:00
|
|
|
<?
|
2002-10-10 05:12:57 +00:00
|
|
|
fileDownloadLink("files/menu.dat", "gz");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("files/menu.dat", "gz", 1);
|
2002-10-10 05:12:57 +00:00
|
|
|
?>
|
|
|
|
<BR>This goes into your <TT>id1</TT> directory. However, this will override any
|
2002-10-01 15:46:06 +00:00
|
|
|
<TT>menu.dat</TT> we supply in the future which will possibly cause
|
|
|
|
problems.
|
2002-10-01 15:44:04 +00:00
|
|
|
</LI>
|
2002-11-20 16:59:17 +00:00
|
|
|
<LI>Patch to fix a bug in 0.5.2 that causes pak to generate broken pak
|
|
|
|
files on BSD systems (seen as linking errors in the ruamoko directory).
|
|
|
|
<?
|
|
|
|
fileDownloadLink("files/Qseek", "diff");
|
2003-07-18 06:18:44 +00:00
|
|
|
fileDownloadLinkGPG("files/Qseek", "diff", 1);
|
2002-11-20 16:59:17 +00:00
|
|
|
?>
|
|
|
|
</LI>
|
2001-06-28 20:55:25 +00:00
|
|
|
</UL>
|
2001-05-15 04:04:07 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<P>Development snapshots (updated daily)
|
2001-01-11 20:03:41 +00:00
|
|
|
<UL>
|
|
|
|
<LI>Source code
|
2002-10-01 11:38:47 +00:00
|
|
|
<? fileDownloadLink("files/quakeforge-current", "tar.gz tar.bz2 zip"); ?>
|
|
|
|
<BR>
|
|
|
|
<STRONG>Note:</STRONG> this is an anonymous CVS-ready tree. To update, all you need to do is the following:
|
|
|
|
<BLOCKQUOTE>
|
|
|
|
<CODE>cvs login </code>(only need this once, press enter for the password)<br>
|
|
|
|
<CODE>cvs up </code>(creating <a href="cvsrc.txt">~/.cvsrc</a> is <STRONG>highly</STRONG> recommended)
|
|
|
|
</BLOCKQUOTE>
|
|
|
|
</LI>
|
|
|
|
<LI>Win32 binaries (Made with <A href="http://www.mingw.org/">MinGW</A> (GCC) in Linux)
|
2001-01-11 20:03:41 +00:00
|
|
|
<?
|
2003-07-08 18:21:30 +00:00
|
|
|
$ftime = filemtime ("files/qf-win32-server.zip");
|
2003-06-05 18:31:11 +00:00
|
|
|
echo " Updated " . gmdate ("M. j, g:i a", $ftime) . " UTC";
|
2003-07-08 18:22:06 +00:00
|
|
|
echo " <UL>";
|
2003-07-08 18:26:05 +00:00
|
|
|
echo " <LI>SDL (software) client ";
|
2003-07-08 18:21:30 +00:00
|
|
|
fileDownloadLink("files/qf-win32-client-sdl", "zip");
|
2003-07-08 18:22:06 +00:00
|
|
|
echo " </LI>";
|
2003-07-08 18:26:05 +00:00
|
|
|
echo " <LI>SDL-32 (32bpp software) client ";
|
2003-07-08 18:21:30 +00:00
|
|
|
fileDownloadLink("files/qf-win32-client-sdl32", "zip");
|
2003-07-08 18:22:06 +00:00
|
|
|
echo " </LI>";
|
2003-07-08 18:26:05 +00:00
|
|
|
echo " <LI>SGL (SDL OpenGL) client ";
|
2003-07-08 18:21:30 +00:00
|
|
|
fileDownloadLink("files/qf-win32-client-sgl", "zip");
|
2003-07-08 18:22:06 +00:00
|
|
|
echo " </LI>";
|
2003-07-08 18:26:05 +00:00
|
|
|
echo " <LI>WGL (OpenGL) client ";
|
2003-07-08 18:21:30 +00:00
|
|
|
fileDownloadLink("files/qf-win32-client-wgl", "zip");
|
2003-07-08 18:22:06 +00:00
|
|
|
echo " </LI>";
|
2003-07-08 18:26:05 +00:00
|
|
|
echo " <LI>developement stuff (libs, headers etc) ";
|
2003-07-08 18:21:30 +00:00
|
|
|
fileDownloadLink("files/qf-win32-devel", "zip");
|
2003-07-08 18:22:06 +00:00
|
|
|
echo " </LI>";
|
2003-07-08 18:26:05 +00:00
|
|
|
echo " <LI>servers ";
|
2003-07-08 18:21:30 +00:00
|
|
|
fileDownloadLink("files/qf-win32-server", "zip");
|
2003-07-08 18:22:06 +00:00
|
|
|
echo " </LI>";
|
2003-07-08 18:26:05 +00:00
|
|
|
echo " <LI>tools (qfcc, qfbsp ...) ";
|
2003-07-08 18:21:30 +00:00
|
|
|
fileDownloadLink("files/qf-win32-tools", "zip");
|
2003-07-08 18:22:06 +00:00
|
|
|
echo " </LI>";
|
|
|
|
echo " </UL>";
|
2001-01-11 20:03:41 +00:00
|
|
|
?>
|
2002-10-01 11:38:47 +00:00
|
|
|
</LI>
|
2001-01-11 20:03:41 +00:00
|
|
|
</UL>
|
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<A name="quake2"></A><H3>Quake2Forge</H3>
|
2001-01-11 20:03:41 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<P><STRONG>Are you ready to rail?</STRONG> Good, 'cause we sure are.
|
2001-01-11 20:03:41 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<P>Quake2Forge is the Quake II engine, with a QuakeForge "flavor".
|
|
|
|
Undergoing slow but steady development, it aims to be a portable, stable code
|
|
|
|
base maintaining backward-compatibility with Id Software's version.
|
2001-05-15 04:04:07 +00:00
|
|
|
|
2003-02-06 23:34:38 +00:00
|
|
|
<h4>Version 0.2.1 (released 06/02/03)</h4>
|
|
|
|
<ul>
|
|
|
|
<li>Source code
|
|
|
|
<?fileDownloadLink("http://download.sourceforge.net/quake/quake2-0.2.1", "tar.gz tar.bz2");?>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2003-02-02 11:32:36 +00:00
|
|
|
<h4>Version 0.2 (released 01/02/03)</h4>
|
|
|
|
<ul>
|
|
|
|
<li>Source code
|
2003-02-06 23:34:38 +00:00
|
|
|
<?fileDownloadLink("http://download.sourceforge.net/quake/quake2-0.2", "tar.gz tar.bz2");?>
|
2003-02-02 11:32:36 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<H4>Version 0.1 (released 17 Sep 2002)</H4>
|
2001-01-11 20:03:41 +00:00
|
|
|
<UL>
|
2003-02-06 23:34:38 +00:00
|
|
|
<LI>Source code
|
|
|
|
<?fileDownloadLink ("http://download.sourceforge.net/quake/quake2-0.1", "tar.gz tar.bz2");?>
|
|
|
|
</LI>
|
2001-01-11 20:03:41 +00:00
|
|
|
</UL>
|
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<P>The latest code can be retreived from our server, with the following commands:
|
|
|
|
<BLOCKQUOTE>
|
|
|
|
<TT>
|
|
|
|
cvs -d :pserver:anonymous@cvs.quakeforge.net:/project/cvs login<BR>
|
|
|
|
cvs -d :pserver:anonymous@cvs.quakeforge.net:/project/cvs -z3 co quake2
|
|
|
|
</TT>
|
|
|
|
</BLOCKQUOTE>
|
2002-09-18 05:48:56 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<P>The anonymous password is empty, just hit Enter when prompted for one.
|
|
|
|
</P>
|
2001-01-11 20:03:41 +00:00
|
|
|
<HR>
|
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<H2>Older Releases</H2>
|
2001-01-11 20:03:41 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<H3>QuakeForge: Newtree</H3>
|
|
|
|
|
|
|
|
<P>Newtree is our sta^H^H^H<EM>dead</EM> tree. If we work on it again, it will
|
|
|
|
provide the 0.3 and 0.4 series of QuakeForge releases. Most activity has moved
|
|
|
|
to the development tree, though.
|
2001-02-12 09:45:48 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<H4>QuakeForge: Newtree, Version 0.3.0 (released 11 Feb 2001)</H4>
|
2001-02-07 05:48:59 +00:00
|
|
|
<UL>
|
|
|
|
<LI>Source code
|
2002-10-01 11:38:47 +00:00
|
|
|
<? fileDownloadLink ("http://download.sourceforge.net/quake/quakeforge-0.3.0", "tar.gz tar.bz2 zip"); ?>
|
2001-02-07 05:48:59 +00:00
|
|
|
<LI>Win32 binaries (Made with Microsoft Developer Studio)
|
2002-10-01 11:38:47 +00:00
|
|
|
<? fileDownloadLink ("http://download.sourceforge.net/quake/quakeforge-0.3.0-win32", "zip"); ?>
|
2001-02-07 05:48:59 +00:00
|
|
|
<LI>Win32 binaries (Made with <A href="http://www.mingw.org/">MinGW</A> (GCC)) (experimental)
|
2002-10-01 11:38:47 +00:00
|
|
|
<? fileDownloadLink ("http://download.sourceforge.net/quake/quakeforge-0.3.0-mingw-i386", "zip"); ?>
|
2001-02-07 05:48:59 +00:00
|
|
|
<LI>Win32 binaries (Made with <A href="http://www.mingw.org/">MinGW</A> (GCC), i686 optimised) (experimental)
|
2002-10-01 11:38:47 +00:00
|
|
|
<? fileDownloadLink ("http://download.sourceforge.net/quake/quakeforge-0.3.0-mingw-i686", "zip"); ?>
|
2001-02-07 05:48:59 +00:00
|
|
|
</UL>
|
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<H3>QuakeForge: NUQ</H3>
|
2000-11-09 04:39:50 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<P>QuakeForge: NUQ (pronounced "Nuke") is, basically, the Classic
|
|
|
|
Quake version of Newtree. NUQ is based on the WinQuake engine, but with lots of
|
|
|
|
enhancements from the merged tree and Newtree. Being the inverse Newtree, there
|
|
|
|
is no support for QuakeWorld multiplayer protocols.
|
2000-10-28 09:28:07 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<P>The NUQ tree is also dead. Our quakeforge tree has the netquake and
|
|
|
|
quakeworld code together with the bulk of the code merged, so it's now
|
|
|
|
redundant. And since nobody works on it anyway, that's a good thing.
|
2000-10-14 23:50:02 +00:00
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<P>Even though it's dead, NUQ here anyway. If you want single player, grab
|
|
|
|
quakeforge-current instead, it's <STRONG>much</STRONG> better.
|
2000-10-01 03:49:15 +00:00
|
|
|
<UL>
|
|
|
|
<LI>Source code
|
2002-10-01 11:38:47 +00:00
|
|
|
<? fileDownloadLink("files/nuq-current", "tar.gz tar.bz2 zip"); ?>
|
2000-10-01 03:49:15 +00:00
|
|
|
</UL>
|
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<H3>QuakeForge Merged Tree</H3>
|
2000-09-21 04:45:34 +00:00
|
|
|
|
|
|
|
<P>Since current work is based on Newtree and NUQ, the merged tree snapshots
|
|
|
|
are no longer being made. You can still get it directly out of CVS, however.
|
2000-07-18 17:24:34 +00:00
|
|
|
|
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>
|
2000-05-22 06:16:14 +00:00
|
|
|
<LI>Source code
|
2000-07-18 17:24:34 +00:00
|
|
|
<? fileDownloadLink ("http://download.sourceforge.net/quake/quakeforge-0.1.1", "tar.gz tar.bz2 zip"); ?>
|
2000-10-03 05:47:36 +00:00
|
|
|
<LI>Win32 binaries [ n/a ]
|
2000-05-22 03:55:46 +00:00
|
|
|
</UL>
|
|
|
|
|
2001-01-11 20:03:41 +00:00
|
|
|
<HR>
|
|
|
|
|
2002-10-01 11:38:47 +00:00
|
|
|
<H2>Miscellaneous Files</H2>
|
2000-07-09 07:12:44 +00:00
|
|
|
<UL>
|
2001-02-09 21:01:50 +00:00
|
|
|
<LI>QuakeForge pack (currently only has conback.lmp)
|
|
|
|
<? fileDownloadLink ("files/pakQF", "pak"); ?>
|
|
|
|
</LI>
|
2001-03-20 05:44:05 +00:00
|
|
|
<LI>Skybox pack (internally compressed)
|
|
|
|
<? fileDownloadLink ("files/skyboxes", "pak"); ?>
|
|
|
|
</LI>
|
2000-07-09 07:12:44 +00:00
|
|
|
<LI>Quake Shareware
|
2001-01-21 16:08:59 +00:00
|
|
|
<? fileDownloadLink ("files/quake-shareware-1.06", "tar.gz tar.bz2 zip"); ?>
|
2000-07-09 07:12:44 +00:00
|
|
|
</LI>
|
2002-08-19 15:34:47 +00:00
|
|
|
<LI>Original Quake source release
|
|
|
|
<? fileDownloadLink ("files/q1source", "zip"); ?>
|
|
|
|
</LI>
|
2000-10-01 03:49:15 +00:00
|
|
|
<LI>zlib home page. Needed for compressed pak support.
|
2000-09-28 17:55:54 +00:00
|
|
|
<A href="http://www.info-zip.org/pub/infozip/zlib/">http://www.info-zip.org/pub/infozip/zlib/</a>
|
|
|
|
</LI>
|
2000-07-09 07:12:44 +00:00
|
|
|
</UL>
|
2000-05-08 02:39:55 +00:00
|
|
|
<!--NOSEARCH-->
|
|
|
|
<?
|
2000-07-18 17:24:34 +00:00
|
|
|
require "parts/postamble.php"; // Finish this sucker up
|
2000-05-08 02:39:55 +00:00
|
|
|
?>
|