blob: ad1ee76f70c6805b26b140c4e7820c56b422697f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
<?php
/*
Download page (old releases)
Copyright (C) 2015 Francis Rowe <info@gluglug.org.uk>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
?>
<?php
include_once "../../variables.php";
include_once "../../torrents.php";
include_once "../../functions.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="../../css/main.css" />
<title>Download <?php echo $lbProjectName; ?> (old)</title>
</head>
<body>
<div class="contain">
<div id="libreboot" class="section intro">
<p>
<a href="../../images/welcome_screen.png"><img class="homepage_logo" src="../../images/welcome_screen_small.jpg" alt="" title="<?php include "../../images/welcome_screen.png.license.txt"; ?>" /></a>
</p>
<h1>Download <?php echo $lbProjectName; ?> (old)</h1>
<p>
This page is for old releases, distributed via the bittorrent network.
</p>
<p>
Information about these releases can be found at <a href="../../docs/release.html">../../docs/release.html</a>.
Documentation for a given release can be found under /docs/ in that release archive. The same documentation
can also be found in the <a href="../#git">git repository</a> by reverting to the tag used for that release.
</p>
<!-- <p>
TODO: set up RSS and Atom feeds for the bittorrent links (but not the HTTP mirrors).
The main gitweb page (for the main git repository) already generates atom/rss feeds.
</p> -->
<p>
<a href="../">Back to main download page</a>
</p>
</div>
<div class="section" id="gpg">
<h1 id="gpg">GPG signing key</h1>
<p>
<?php echo $lbProjectGpgKeyInfo; ?>
</p>
<p>
Download the key:<br/>
$ <b>gpg --recv-keys <?php echo $lbProjectGpgKeyID; ?></b>
</p>
<p>
You can verify the downloaded archives as follows:<br/>
$ <b>for signature in $(ls *.sig); do gpg --verify $signature; done</b>
</p>
</div>
<div class="section" id="torrent">
<p><b>Torrent links do not work yet. Use the HTTP downloads.</b></p>
<h1>Bittorrent</h1>
<p>
The following is a list of links to old releases.
</p>
<?php
/* Show all versions before the current stable release */
echo torrent_list($lbTorrentLink, 1, count($lbTorrentLink));
?>
<p><b>Torrent links do not work yet. Use the HTTP downloads.</b></p>
</div>
<div class="section footer">
<?php
include "../../footer.php";
?>
</div>
</div>
</body>
</html>
|