Skip to content

Commit

Permalink
- CHG: Version number bump.
Browse files Browse the repository at this point in the history
- FIX: Fixed missing API import.
  • Loading branch information
sebastian-raubach committed Apr 20, 2022
1 parent 63d07db commit 2a9010f
Show file tree
Hide file tree
Showing 2 changed files with 4 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": "germinate",
"version": "4.2.1",
"version": "4.3.0",
"description": "Germinate is an open source plant database infrastructure and application programming platform on which complex data from genetic resource collections can be stored, queried and visualized",
"author": "Sebastian Raubach",
"scripts": {
Expand Down
5 changes: 3 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import { Detector } from '@/plugins/browser-detect.js'
import utilMixin from '@/mixins/util'
import miscApiMixin from '@/mixins/api/misc'
import baseApiMixin from '@/mixins/api/base'
import statsApiMixin from '@/mixins/api/stats'
const emitter = require('tiny-emitter/instance')
Expand All @@ -40,7 +41,7 @@ export default {
'storeAppState'
])
},
mixins: [baseApiMixin, miscApiMixin, utilMixin],
mixins: [baseApiMixin, miscApiMixin, utilMixin, statsApiMixin],
methods: {
isLocalhost: function () {
return window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1' || window.location.hostname === ''
Expand Down Expand Up @@ -138,7 +139,7 @@ export default {
const data = {
application: 'Germinate',
id: id,
version: '4.2.1',
version: '4.3.0',
locale: this.storeLocale,
os: `${config.os} ${config.osVersion}`
}
Expand Down

0 comments on commit 2a9010f

Please sign in to comment.