diff --git a/src/components/controlComponents/paneStatus.vue b/src/components/controlComponents/paneStatus.vue
index e45879eb..e4e0616e 100644
--- a/src/components/controlComponents/paneStatus.vue
+++ b/src/components/controlComponents/paneStatus.vue
@@ -19,6 +19,10 @@
Server version:
{{ configuration.application.version }}
+
+ OpenFlexure eV version:
+ {{ clientVersionName }}
+
@@ -88,7 +92,9 @@ export default {
return {
configuration: null,
settings: null,
- systemActionLinks: {}
+ systemActionLinks: {},
+ clientVersion: process.env.PACKAGE.version,
+ liteMode: process.env.VUE_APP_LITEMODE == "true" ? true : false
};
},
@@ -101,6 +107,11 @@ export default {
},
actionsUri: function() {
return `${this.$store.getters.baseUri}/api/v2/actions`;
+ },
+ clientVersionName: function() {
+ const liteMode = process.env.VUE_APP_LITEMODE == "true" ? true : false;
+ const suffix = liteMode ? "-Lite" : "";
+ return `${process.env.PACKAGE.version}${suffix}`;
}
},