-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #378 from jef-n/main
updates
- Loading branch information
Showing
8 changed files
with
85 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{{ with index .Site.Data.conf -}} | ||
{{ $release := apply (split .release ".") "cast.ToInt" "." -}} | ||
{{ $ltrrelease := apply (split .ltrrelease ".") "cast.ToInt" "." -}} | ||
{{ $devversion := apply (split .devversion ".") "cast.ToInt" "." -}} | ||
{ | ||
"latest": { | ||
"versionint": {{ printf "%d%02d%02d" (index $release 0) (index $release 1) (index $release 2) }}, | ||
"version": "{{ .version }}", | ||
"name": "{{ .codename }}", | ||
"note": "{{ .releasenote }}", | ||
"binary": "{{ .binary }}", | ||
"date": "{{ .releasedate }}", | ||
"major": {{ index $release 0 }}, | ||
"minor": {{ index $release 1 }}, | ||
"patch": {{ index $release 2 }} | ||
}, | ||
"ltr": { | ||
"versionint": {{ printf "%d%02d%02d" (index $ltrrelease 0) (index $ltrrelease 1) (index $ltrrelease 2) }}, | ||
"version": "{{ .Params.ltrversion }}", | ||
"name": "{{ .ltrcodename }}", | ||
"note": "{{ .ltrreleasenote }}", | ||
"binary": "{{ .ltrbinary }}", | ||
"date": "{{ .ltrreleasedate }}", | ||
"major": {{ index $ltrrelease 0 }}, | ||
"minor": {{ index $ltrrelease 1 }}, | ||
"patch": {{ index $ltrrelease 2 }} | ||
}, | ||
"dev": { | ||
"version": "{{ .devversion }}", | ||
"versionint": {{ printf "%d%02d%02d" (index $devversion 0) (index $devversion 1) 0 }}, | ||
"major": {{ index $devversion 0 }}, | ||
"minor": {{ index $devversion 1 }}, | ||
"patch": 0 | ||
}, | ||
"freezedate": "{{ .nextfreezedate }}", | ||
"nextreleasedate": "{{ .nextreleasedate }}", | ||
"nextversion": "{{ .nextversion }}" | ||
} | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{{ with index .Site.Data.conf -}} | ||
{{ $release := apply (split .ltrrelease ".") "cast.ToInt" "." -}} | ||
#QGIS Version {{ (printf "%d%02d%02d" (index $release 0) (index $release 1) (index $release 2)) }}|Visit https://download.qgis.org to get your copy of version {{ .ltrrelease }}|<html><body> | ||
<ul> | ||
<li>The current available LTR version of QGIS is {{ .ltrrelease }}. | ||
<li>The latest available version of QGIS is {{ .release }}. | ||
<li>We are working on {{ .devversion }}-Master. It will go into feature freeze on {{ .nextfreezedate }} and be released as {{ .nextversion }} on {{ .nextreleasedate }}. | ||
<li>Details on changes can be found on github at <a href="https://github.com/qgis/QGIS/commits/master">https://github.com/qgis/QGIS/commits/master</a>. | ||
</body> | ||
</html> | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{{ with index .Site.Data.conf -}} | ||
{{ $release := apply (split .release ".") "cast.ToInt" "." -}} | ||
#QGIS Version {{ (printf "%d%02d%02d" (index $release 0) (index $release 1) (index $release 2)) }}|Visit https://download.qgis.org to get your copy of version {{ .release }}|<html><body> | ||
<ul> | ||
<li>The current released version of QGIS is {{ .release }}. | ||
<li>We are working on {{ .devversion }}-Master. It will go into feature freeze on {{ .nextfreezedate }} and be released as {{ .nextversion }} on {{ .nextreleasedate }}. | ||
<li>Details on changes can be found on github at <a href="https://github.com/qgis/QGIS/commits/master">https://github.com/qgis/QGIS/commits/master</a>. | ||
</body> | ||
</html> | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters