{{ define "main" }}
{{ .Content }} {{ $urlPre := "https://api.github.com" }} {{ $releases := getJSON $urlPre "/repos/ufz/ogs/releases" }} {{ $latest := getJSON $urlPre "/repos/ufz/ogs/releases/latest" }} {{ $statuses := getJSON $urlPre "/repos/ufz/ogs/commits/" $latest.tag_name "/statuses" }}

Content

Downloads

Links

Current Release: {{ $latest.tag_name }}

{{ if not (eq $latest.tag_name $latest.name)}}{{ $latest.name }}{{ end }}

Released on {{ dateFormat "Monday, Jan 2, 2006" $latest.published_at }}

{{ $latest.body | markdownify }}

Latest development version

{{ $head := getJSON $urlPre "/repos/ufz/ogs/git/refs/heads/master" }} {{ $head_commit := getJSON $urlPre "/repos/ufz/ogs/commits/" $head.object.sha }} {{ $head_statuses := getJSON $urlPre "/repos/ufz/ogs/commits/" $head.object.sha "/statuses" }}

Here you can find the latest version of OpenGeoSys. But be warned: although this version was successfully tested by the continuous integration system it may be unstable or incomplete...

Commit Info

{{ dateFormat "Monday, Jan 2, 2006" $head_commit.commit.author.date }} by {{ $head_commit.commit.author.name }}:

{{ $head_commit.commit.message }} GitHub Commit Link

{{ range first 1 (where $head_statuses ".context" "continuous-integration/jenkins/branch") }} Jenkins Build with Downloads (Select the Artifacts-tab!) {{ end }}

Older releases

We also provide binaries for OpenGeoSys-5!

{{ end }}