mirror of https://github.com/perkeep/perkeep.git
website: the 0.9 release is now named Astrakhan, and out.
And fix some text and redirects. Change-Id: I8cf26a028fe79b6daa8817caff85279e314d12c6
This commit is contained in:
parent
33ce243eb9
commit
cf0c847fbf
|
@ -893,10 +893,7 @@ func releaseRedirect(w http.ResponseWriter, r *http.Request) {
|
|||
http.Redirect(w, r, "https://camlistore.org/download/", http.StatusFound)
|
||||
return
|
||||
}
|
||||
dest := "https://storage.googleapis.com/camlistore-release/"
|
||||
if len(r.URL.Path) > len("/dl/") {
|
||||
dest += r.URL.Path[1:]
|
||||
}
|
||||
dest := "https://storage.googleapis.com/camlistore-release/" + strings.TrimPrefix(r.URL.Path, "/dl/")
|
||||
http.Redirect(w, r, dest, http.StatusFound)
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
<h1>Release 0.9 ("?")</h1>
|
||||
<h1>Release 0.9 ("Astrakhan")</h1>
|
||||
|
||||
<p><b>2015-??-??</b></p>
|
||||
<p><b>2015-12-30</b></p>
|
||||
|
||||
<p>Hello, long time no see. It's been over a year since our release,
|
||||
but we have fun stuff to share in our ninth release, named after the
|
||||
Russian city of <a
|
||||
href="https://en.wikipedia.org/wiki/Astrakhan">Astrakhan</a>.</p>
|
||||
|
||||
<p> For this release we have mainly focused on ease of use and ease of
|
||||
installation for new users. Recognizing that most users don't have
|
||||
|
@ -63,7 +68,7 @@ Binary release, new in this release:
|
|||
<center>
|
||||
<div style='font-size:18pt;font-weight:bold;'>
|
||||
<a href="/dl/0.9/camlistore0.9-linux.tar.gz">Linux</a>,
|
||||
<a href="/dl/0.9/camlistore0.9-osx.tar.gz">OS X</a>,
|
||||
<a href="/dl/0.9/camlistore0.9-darwin.tar.gz">OS X</a>,
|
||||
<a href="/dl/0.9/camlistore0.9-windows.zip">Windows</a>
|
||||
</div>
|
||||
</center>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
<h1>Download Camlistore</h1>
|
||||
|
||||
<p>The latest release is <a href="/docs/release/0.8">0.8 ("Tokyo")</a>.</p>
|
||||
<p>The latest release is <a href="/docs/release/0.9">0.9 ("Astrakhan")</a>.</p>
|
||||
|
||||
<p>Or, the canonical git repo is:</p>
|
||||
<pre>$ git clone https://camlistore.googlesource.com/camlistore</pre>
|
||||
|
||||
<p><a href="http://golang.org/doc/install">Download and install Go</a> if you don't have that installed already. Camlistore requires <a href="https://golang.org/dl/">Go 1.3 or newer</a>.</p>
|
||||
<p><a href="http://golang.org/doc/install">Download and install Go</a> if you don't have that installed already. Camlistore requires <a href="https://golang.org/dl/">Go 1.5 or newer</a>.</p>
|
||||
|
||||
<p>Build Camlistore by running this command in the folder you downloaded or checked out:</p>
|
||||
|
||||
|
@ -28,6 +28,7 @@
|
|||
<p>Previous release notes:</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="/docs/release/0.9">0.9 ("Astrakhan")</a>, 2015-12-30</li>
|
||||
<li><a href="/docs/release/0.8">0.8 ("Tokyo")</a>, 2014-08-03</li>
|
||||
<li><a href="/docs/release/0.7">0.7 ("Brussels")</a>, 2014-02-27</li>
|
||||
<li><a href="/docs/release/0.6">0.6 ("Cannon Beach")</a>, 2013-12-25</li>
|
||||
|
|
Loading…
Reference in New Issue