root/homepage/trunk/download.php

Revision 783, 2.4 kB (checked in by arjanmol, 3 years ago)

updated download page

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-Strict.dtd">
3 <html>
4 <head>
5
6 <?php
7     include "func.php";
8     $latest_release     = "0.8.1";
9     $gnome_python_version    = "2.8";
10     $python_version        = "2.4.0";
11     $libxml_version        = "2.4.21";
12     $diacanvas_version    = "0.14.3";
13     $automake_version    = "1.6";
14 ?>
15
16 <?php head(); ?>
17
18 </head>
19 <body>
20
21   <?php nav(); ?>
22
23   <div id="main">
24     <h1>Download</h1>
25
26     <h2>Releases</h2>
27     <p>You can download the latest version of Gaphor from the
28     <a href="http://sourceforge.net/project/showfiles.php?group_id=42141">download area</a>.
29     </p>
30     <p>The latest release is <? print $latest_release; ?>.</p>
31
32     <p><a href="http://www.freebsd.org">FreeBSD</a> users can find Gaphor in
33     their ports tree (devel/gaphor).</p>
34
35     <p>Windows users can download <tt>gaphor-<? print $latest_release; ?>-win32.zip</tt> from the
36     <a href="http://sourceforge.net/project/showfiles.php?group_id=42141">download
37     area</a>. You have to download and install Python (2.3 or 2.4) separately from
38     <a href="http://www.python.org">python.org</a>.</p>
39
40     <h2>Subversion</h2>
41     <p>Those of you who do not fear can download the latest version from the
42     <a href="http://svn.sourceforge.net/viewcvs.cgi/gaphor/">repository</a>.
43     You'll find instructions
44     <a href="http://sourceforge.net/svn/?group_id=42141">here</a>.</p>
45
46     <h2>Requirements</h2>
47     <ul>
48       <li>A recent version of <a href="http://www.gnome.org">GNOME</a> 2.0 (at lease <a href="http://www.gtk.org">GTK+ 2.0</a>, <a href="http://www.pango.org">Pango</a> and GnomeCanvas).</li>
49       <li><a href="http://www.python.org">Python <?php print $python_version; ?></a>
50     (<a href="http://www.python.org/ftp/python/<?php print $python_version; ?>/">source .tar.gz</a>).</li>
51       <li><a href="http://www.daa.com.au/~james/gnome/">Gnome-python</a>
52       (since we need GnomeCanvas bindings), version <?php print $gnome_python_version; ?> or newer
53       (<a href="ftp://ftp.gtk.org/pub/gtk/python/v<?php print $gnome_python_version; ?>/">PyGTK</a>,
54       <a href="ftp://ftp.gnome.org/pub/GNOME/sources/gnome-python/<?php print $gnome_python_version; ?>/">gnome-python</a>)</li>
55       <li>The <a href="http://diacanvas.sourceforge.net">DiaCanvas2</a> library, version <?php print $diacanvas_version ?>.</li>
56     </ul>
57
58     <p><b>NOTE:</b> Gaphor 0.6.0 does not work with DiaCanvas2 0.14.0 or newer. You'll need DiaCanvas2 0.13.0.</p>
59
60   </div>
61 </body>
62 </html>
63
Note: See TracBrowser for help on using the browser.