I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 4d874568 authored by str4d's avatar str4d
Browse files

Reworked downloads list to enable better theming

parent 6df80e96
No related branches found
No related tags found
No related merge requests found
...@@ -12,43 +12,95 @@ Java Runtime 1.5 or higher. ...@@ -12,43 +12,95 @@ Java Runtime 1.5 or higher.
<a href="http://java.com/en/download/installed.jsp?detect=jre&amp;try=1">Determine your installed Java version here</a> <a href="http://java.com/en/download/installed.jsp?detect=jre&amp;try=1">Determine your installed Java version here</a>
or type <tt>java -version</tt> at your command prompt. or type <tt>java -version</tt> at your command prompt.
<h3>Clean installs</h3> <h3>Clean installs</h3>
<ul class="downloadlist"> <div class="downloadlist">
<li><b>Windows Graphical installer:</b><br />
<div class="package">
<h1>Windows</h1>
<div class="file">
<a href="{{ url_for('downloads_select', file=ver('i2pinstall_%s_windows.exe')) }}">i2pinstall_{{ ver() }}_windows.exe</a> <a href="{{ url_for('downloads_select', file=ver('i2pinstall_%s_windows.exe')) }}">i2pinstall_{{ ver() }}_windows.exe</a>
(SHA256 <div class="sig">
(SHA256
c76bea15a6b7d98227466cc8025b1eb9069997e40e9d71ff49e55b2c8ac0b995 c76bea15a6b7d98227466cc8025b1eb9069997e40e9d71ff49e55b2c8ac0b995
<a href="{{ url_for('downloads_select', file=ver('i2pinstall_%s_windows.exe.sig')) }}">sig</a>)<br /> <a href="{{ url_for('downloads_select', file=ver('i2pinstall_%s_windows.exe.sig')) }}">sig</a>)
</div>
</div>
<div class="details">
Download that file and run it. Download that file and run it.
</li> </div>
</div>
<li><b>Linux / OS X / BSD / Solaris Graphical installer:</b><br /> <div class="package">
<h1>Mac OS X</h1>
<div class="file">
<a href="{{ url_for('downloads_select', file=ver('i2pinstall_%s.jar')) }}">i2pinstall_{{ ver() }}.jar</a> <a href="{{ url_for('downloads_select', file=ver('i2pinstall_%s.jar')) }}">i2pinstall_{{ ver() }}.jar</a>
(SHA256 <div class="sig">
(SHA256
8e670ba26c04176ace9246d91a09951975e2965b89628f620f5a3dff917298e4 8e670ba26c04176ace9246d91a09951975e2965b89628f620f5a3dff917298e4
<a href="{{ url_for('downloads_select', file=ver('i2pinstall_%s.jar.sig')) }}">sig</a>)<br /> <a href="{{ url_for('downloads_select', file=ver('i2pinstall_%s.jar.sig')) }}">sig</a>)
</div>
</div>
<div class="details">
Download that file and double-click it (if that works) or Download that file and double-click it (if that works) or
type <code>java -jar i2pinstall_{{ ver() }}.jar</code> in a terminal to run the type <code>java -jar i2pinstall_{{ ver() }}.jar</code> in a terminal to run the
installer. installer.
On some platforms you may be able to right-click and select On some platforms you may be able to right-click and select
&quot;Open with Java&quot;.</li> &quot;Open with Java&quot;.
<li><b>Linux / OS X / BSD / Solaris Command line (headless) install:</b><br /> <h2>Command line (headless) install:</h2>
Download the graphical installer file above and Download the graphical installer file above and
run <code>java -jar i2pinstall_{{ ver() }}.jar -console</code> from the command line. run <code>java -jar i2pinstall_{{ ver() }}.jar -console</code> from the command line.
</li> </div>
</div>
<li><a href="{{ url_for('downloads_select', lang=g.lang, file='debian') }}">Packages for Debian &amp; Ubuntu</a></li> <div class="package">
<h1>GNU/Linux / BSD / Solaris</h1>
<div class="file">
<a href="{{ url_for('downloads_select', file=ver('i2pinstall_%s.jar')) }}">i2pinstall_{{ ver() }}.jar</a>
<div class="sig">
(SHA256
8e670ba26c04176ace9246d91a09951975e2965b89628f620f5a3dff917298e4
<a href="{{ url_for('downloads_select', file=ver('i2pinstall_%s.jar.sig')) }}">sig</a>)
</div>
</div>
<div class="details">
Download that file and double-click it (if that works) or
type <code>java -jar i2pinstall_{{ ver() }}.jar</code> in a terminal to run the
installer.
On some platforms you may be able to right-click and select
&quot;Open with Java&quot;.
<li><b>Source install:</b><br /> <h2>Command line (headless) install:</h2>
Download the graphical installer file above and
run <code>java -jar i2pinstall_{{ ver() }}.jar -console</code> from the command line.
</div>
</div>
<div class="package">
<h1>Debian / Ubuntu</h1>
<div class="file">
<a href="{{ url_for('downloads_select', lang=g.lang, file='debian') }}">Packages for Debian &amp; Ubuntu</a>
</div>
</div>
<div class="package">
<h1>Source package</h1>
<div class="file">
<a href="{{ url_for('downloads_select', file=ver('i2psource_%s.tar.bz2')) }}">i2psource_{{ ver() }}.tar.bz2</a> <a href="{{ url_for('downloads_select', file=ver('i2psource_%s.tar.bz2')) }}">i2psource_{{ ver() }}.tar.bz2</a>
(SHA256 <div class="sig">
(SHA256
1b7d9695555ed42142b04ad6bcda083cd1a064f6354b639ad2aef4d9cd474e06 1b7d9695555ed42142b04ad6bcda083cd1a064f6354b639ad2aef4d9cd474e06
<a href="{{ url_for('downloads_select', file=ver('i2psource_%s.tar.bz2.sig')) }}">sig</a>)<br /> <a href="{{ url_for('downloads_select', file=ver('i2psource_%s.tar.bz2.sig')) }}">sig</a>)
</div>
</div>
<div class="details">
Alternately, you can fetch the source from <a href="{{ site_url('volunteer/guides/newdevelopers') }}#getting-the-i2p-code">monotone</a>. Alternately, you can fetch the source from <a href="{{ site_url('volunteer/guides/newdevelopers') }}#getting-the-i2p-code">monotone</a>.
<br /> <br />
Run <code>(tar xjvf i2psource_{{ ver() }}.tar.bz2 ; cd i2p-{{ ver() }} ; ant pkg)</code> then either Run <code>(tar xjvf i2psource_{{ ver() }}.tar.bz2 ; cd i2p-{{ ver() }} ; ant pkg)</code> then either
run the GUI installer or headless install as above</li> run the GUI installer or headless install as above.
</ul> </div>
</div>
</div>
The files are signed by zzz, The files are signed by zzz,
<a href="release-signing-key.html">whose key is here</a>. <a href="release-signing-key.html">whose key is here</a>.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment