Changes between Initial Version and Version 1 of LatestRelease


Ignore:
Timestamp:
Apr 1, 2010, 12:00:20 AM (14 years ago)
Author:
Philip Taylor
Comment:

split out the release info

Legend:

Unmodified
Added
Removed
Modified
  • LatestRelease

    v1 v1  
     1= Obtaining the latest release =
     2
     3'''Warning''': The game is currently under heavy development, and many features are currently missing. This release is a '''development snapshot''', not a completed playable game - please check our [http://www.wildfiregames.com/0ad/ site] and [http://www.wildfiregames.com/forum/index.php?showforum=135 forums] for future updates!
     4
     5== Windows ==
     6
     7Download and run [http://releases.wildfiregames.com/0ad-r07413-pre-alpha-win32.exe 0ad-win32.exe] (114 MB) (self-extracting [http://www.7-zip.org/ 7-Zip]), then select a location to extract the files. This includes all the source code and data files, and precompiled binaries.
     8
     9Run the game from `binaries\system\pyrogenesis.exe`. If you want to modify and compile the game yourself, follow the [BuildInstructions#Windows build instructions] using the files from this release instead of downloading from SVN.
     10
     11SHA1 digest (to verify the download):
     12{{{
     1326b7dbcf9ce346c278ac5e2bacc583f61069534c  0ad-r07413-pre-alpha-win32.exe
     14}}}
     15
     16== Linux packages ==
     17
     18Unofficial packages may exist or be in development for several distros:
     19 * [http://bugs.gentoo.org/show_bug.cgi?id=278541 Gentoo]
     20 * [http://aur.archlinux.org/packages.php?ID=28560 Arch] (current out of date)
     21 * [https://bugs.launchpad.net/getdeb.net/+bug/543277 Ubuntu] (currently unavailable)
     22If you use a different distro, or if these packages are outdated, or if you want to edit or debug the code, see the next section. If you want to help create a package yourself, we have some [BuildInstructions#CreatingLinuxpackages rough guidance].
     23
     24== Compiling on Linux and OS X ==
     25
     26You need two files:
     27 * [http://releases.wildfiregames.com/0ad-r07413-pre-alpha-unix-build.tar.xz 0ad-unix-build.tar.xz] (6 MB) ''or'' [http://releases.wildfiregames.com/0ad-r07413-pre-alpha-unix-build.tar.bz2 0ad-unix-build.tar.bz2] (8 MB)
     28 * [http://releases.wildfiregames.com/0ad-r07413-pre-alpha-unix-data.tar.xz 0ad-unix-data.tar.xz] (92 MB) ''or'' [http://releases.wildfiregames.com/0ad-r07413-pre-alpha-unix-data.tar.bz2 0ad-unix-data.tar.bz2] (106 MB)
     29The `.xz` files are smaller but may require you to install [http://tukaani.org/xz/ XZ Utils].
     30
     31SHA1 digests:
     32{{{
     3366657a2799fbc05edf07de5d33e8d59319839a3f  0ad-r07413-pre-alpha-unix-build.tar.xz
     34ba9ed5d4545e29b19c27f33b68c605342337ed7f  0ad-r07413-pre-alpha-unix-build.tar.bz2
     359d2c25f1ec54c5b6a3a8ff59577d3effb35b4eb8  0ad-r07413-pre-alpha-unix-data.tar.xz
     3606fbf94bb38f3b3069df6efe0ccf93c6dd1ffc56  0ad-r07413-pre-alpha-unix-data.tar.bz2
     37}}}
     38
     39Extract both files to the same location:
     40{{{
     41# Extract .xz version into the current directory:
     42tar xvJf 0ad-r07413-pre-alpha-unix-build.tar.xz
     43tar xvJf 0ad-r07413-pre-alpha-unix-data.tar.xz
     44# Or, if your tar is older than 1.22:
     45xz -cd 0ad-r07413-pre-alpha-unix-build.tar.xz | tar xv
     46xz -cd 0ad-r07413-pre-alpha-unix-data.tar.xz | tar xv
     47# Or, if you have the .bz2 version:
     48tar xvjf 0ad-r07413-pre-alpha-unix-build.tar.bz2
     49tar xvjf 0ad-r07413-pre-alpha-unix-data.tar.bz2
     50}}}
     51
     52Then follow the [BuildInstructions#Unix build instructions] using the files from this release instead of downloading from SVN.