Skip to content

Commit

Permalink
- CHG: Preparations for 1.14.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-raubach committed Jan 24, 2023
1 parent 49057db commit 5980057
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gridscore",
"version": "1.13.0",
"version": "1.14.0",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 1 addition & 1 deletion src/mixin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { mapGetters } from 'vuex'
export default {
data: function () {
return {
gridScoreVersion: '1.13.0',
gridScoreVersion: '1.14.0',
multiTraitMethods: {
// TODO: Handle dates!
last: {
Expand Down
16 changes: 16 additions & 0 deletions src/plugins/changelog/de_DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,21 @@
"text": "Es war zuvor nicht möglich den Wert eines numerischen Merkmals komplett zu entfernen. Dies wurde in dieser Version behoben."
}
]
},
{
"version": "1.14.0",
"date": "2023-01-24",
"items": [
{
"type": "new",
"title": "Nicht zusammengerechnete Mehrfachmessungen für Export zu Germinate",
"text": "Bisher musst beim Exportieren von Mehrfachmessungen in die Germinate Datenvorlagen immer eine Zusammenrechnungsmethode gewählt werden. Dies musste eine dieser Optionen sein: Durchschnitt, Summe oder zuletzt gemessener Wert. Jetzt können alle aufgezeichneten Werte individuell exportiert werden durch das Abwählen einer Zusammenrechnungsmethode. Dies resultiert in einer Datei die alle einzelnen Messungen enthält."
},
{
"type": "new",
"title": "Heatmap-Zeitreihen-Diagramm",
"text": "Für Mehrfachmessungen ist es jetzt möglich sich alle aufgezeichneten Werte über die Zeit in Form einer Heatmap anzeigen zu lassen. Um dies zu erreichen haben wir eine neue Darstellungsoption hinzugefügt die 'Zeitreihe' heißt. Diese aktiviert einen Zeit-Schieberegler um den dargestellten Zeitpunkt zu ändern und zu sehen wie die Mehrfachmessungen sich über die Zeit verhalten."
}
]
}
]
16 changes: 16 additions & 0 deletions src/plugins/changelog/en_GB.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,21 @@
"text": "It was previously impossible to remove the value of a numeric trait. This has been fixed in this release."
}
]
},
{
"version": "1.14.0",
"date": "2023-01-24",
"items": [
{
"type": "new",
"title": "Non-aggregated multi-trait export to Germinate",
"text": "Until now whenever exporting multi-trait data into the Germinate data templates, an aggregation method per multi-trait had to be selected. This was one of these options: average, sum or last recorded value. You can now export all individual data points for a multi-trait by de-selecting the aggregation during export. This will result in a file containing all individual measurements."
},
{
"type": "new",
"title": "Heatmap timeline chart",
"text": "For multi-traits it's now possible to to look at all recorded values over time in the form of a heatmap. For this purpose, we added a new visualization option called 'Show timeline' which will activate a time slider to move through time and see how the multi-trait changed over time."
}
]
}
]
2 changes: 1 addition & 1 deletion src/views/Export.vue
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export default {
'storeTraitColors'
]),
canExportShapefile: function () {
return this.storeCornerPoints && this.storeCornerPoints.length === 4
return this.storeCornerPoints && this.storeCornerPoints.length === 4 && this.storeCornerPoints.every(cp => cp !== null)
},
hasMultiTrait: function () {
if (!this.storeTraits) {
Expand Down

0 comments on commit 5980057

Please sign in to comment.