diff --git a/website/camweb.go b/website/camweb.go index 0e09144aa..3d6e9cd02 100644 --- a/website/camweb.go +++ b/website/camweb.go @@ -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) } diff --git a/website/content/docs/release/0.9 b/website/content/docs/release/0.9 index 9dc1bd796..b85b94f71 100644 --- a/website/content/docs/release/0.9 +++ b/website/content/docs/release/0.9 @@ -1,6 +1,11 @@ -
2015-??-??
+2015-12-30
+ +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 Astrakhan.
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:
The latest release is 0.8 ("Tokyo").
+The latest release is 0.9 ("Astrakhan").
Or, the canonical git repo is:
$ git clone https://camlistore.googlesource.com/camlistore-
Download and install Go if you don't have that installed already. Camlistore requires Go 1.3 or newer.
+Download and install Go if you don't have that installed already. Camlistore requires Go 1.5 or newer.
Build Camlistore by running this command in the folder you downloaded or checked out:
@@ -28,6 +28,7 @@Previous release notes: