Skip to content

Commit

Permalink
- CHG: Version bump.
Browse files Browse the repository at this point in the history
- ADD: Added changelog information for 2.1.0.
  • Loading branch information
sebastian-raubach committed Aug 31, 2023
1 parent 6a5aade commit 9a2a928
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 5 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": "2.0.2",
"version": "2.1.0",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
10 changes: 7 additions & 3 deletions src/components/modals/ChangelogModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,14 @@ export default {
}
},
totalCount: function () {
if (this.changelog) {
return this.changelog.length
if (this.prevVersion) {
return 1
} else {
return 0
if (this.changelog) {
return this.changelog.length
} else {
return 0
}
}
},
changelog: function () {
Expand Down
21 changes: 21 additions & 0 deletions src/plugins/changelog/de_DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -203,5 +203,26 @@
"text": "Bisher konnte es vorkommen, dass Zeitzonen-Probleme beim Darstellen oder Exportieren von Daten auftraten. Dies lag an der Art und Weise in der Daten gespeichert wurden und ist jetzt behoben dadurch, dass GridScore UTC-Zeitpunkte speichert."
}
]
},
{
"version": "2.1.0",
"date": "2023-08-31",
"items": [
{
"type": "new",
"title": "Datendarstellungs-Konfiguration",
"text": "Wir haben Konfigurationsoptionen für die Haupt-Datenanzeige hinzugefügt. Diese beinhalten andere Symbole für Datenpunkte, Anpassung der Größe und Dichte welche es erlauben eine kompaktere oder gelockerte Darstellung zu wählen."
},
{
"type": "update",
"title": "Bildertagging auf iOS",
"text": "Wir haben ein Banner hinzugefügt welches auf iOS Geräten darauf hinweist, dass ein zusätzlicher Schritt beim Speichern von Bildern nötig sein kann, da iOS den Download von Bildern anders handhabt als andere Betriebssysteme."
},
{
"type": "bugfix",
"title": "Betrachtercode Probleme",
"text": "Es gab Probleme mit Betrachterberechtigungen wo es Betrachtern nicht möglich war Änderungen vom Server zu laden. Dies wurde behoben."
}
]
}
]
21 changes: 21 additions & 0 deletions src/plugins/changelog/en_GB.json
Original file line number Diff line number Diff line change
Expand Up @@ -203,5 +203,26 @@
"text": "Previously, due to the way the old GridScore stored dates, there were timezone issues when displaying and exporting data. These have been resolved in this version as we're now storing UTC timestamps."
}
]
},
{
"version": "2.1.0",
"date": "2023-08-31",
"items": [
{
"type": "new",
"title": "Data display configuration",
"text": "We have added options to configure the main data display. These include changing the circles to squares, adjusting the size of the data points as well as their density to allow for more compact or relaxed displays."
},
{
"type": "update",
"title": "Image tagging iOS",
"text": "We have added a notification banner on iOS devices to the image tagging as iOS handles the download of images differently to any other OS. An additional step may be required to actually save the images."
},
{
"type": "bugfix",
"title": "Viewer code issues",
"text": "There was an issue with trial viewer permissions where a viewer wasn't able to load remote changes to a trial. This has been resolved."
}
]
}
]
2 changes: 1 addition & 1 deletion src/plugins/constants.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const gridScoreVersion = '2.0.2'
const gridScoreVersion = '2.1.0'

const NAVIGATION_MODE_DRAG = 'DRAG'
const NAVIGATION_MODE_JUMP = 'JUMP'
Expand Down

0 comments on commit 9a2a928

Please sign in to comment.