This commit is contained in:
@@ -47,7 +47,9 @@ CURRENT TODOs
|
||||
|
||||
SHELL / NAV / MENUS / LAYOUT
|
||||
|
||||
TODO: WHEN GET TO HERE, POST TO SERVER AND TEST DRIVE AGAIN WITH ALL BROWSERS / DEVICES
|
||||
TODO: Upgrade front and back end libs / tools / frameworks
|
||||
- is .net 3.1 released yet? Jesus! :)
|
||||
- Vue / vuetify etc
|
||||
|
||||
TODO: Enforce role rights for menu items once it's stubbed out
|
||||
|
||||
|
||||
@@ -215,7 +215,7 @@
|
||||
|
||||
<script>
|
||||
/* Xeslint-disable */
|
||||
import aboutInfo from "./api/aboutinfo";
|
||||
import ayaNovaVersion from "./api/ayanova-version";
|
||||
import gzconfirm from "./components/gzconfirm";
|
||||
import gznotify from "./components/gznotify";
|
||||
//import gztest from "./components/gztest";
|
||||
@@ -278,10 +278,10 @@ export default {
|
||||
return this.$store.state.navItems;
|
||||
},
|
||||
copyright() {
|
||||
return aboutInfo.copyright;
|
||||
return ayaNovaVersion.copyright;
|
||||
},
|
||||
version() {
|
||||
return aboutInfo.version;
|
||||
return ayaNovaVersion.version;
|
||||
},
|
||||
helpUrl() {
|
||||
return this.$store.state.helpUrl;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
export default {
|
||||
version: "8.0.0-alpha.2019.Dec.27",
|
||||
version: "8.0.0-alpha.2019.Dec.31",
|
||||
copyright:
|
||||
"Copyright © 1999-2019, Ground Zero Tech-Works Inc. All Rights Reserved",
|
||||
browser: {
|
||||
@@ -13,7 +13,7 @@
|
||||
>
|
||||
</v-col>
|
||||
<v-col>
|
||||
<v-card id="aboutinfocard">
|
||||
<v-card id="ayaNovaVersioncard">
|
||||
<v-subheader>{{ lt("ClientApp") }}</v-subheader>
|
||||
<div>
|
||||
<span class="ml-6 body-1">{{ lt("Version") }}:</span>
|
||||
@@ -134,7 +134,7 @@
|
||||
|
||||
<script>
|
||||
/* xeslint-disable */
|
||||
import aboutInfo from "../api/aboutinfo";
|
||||
import ayaNovaVersion from "../api/ayanova-version";
|
||||
|
||||
/////////////////////////////
|
||||
//
|
||||
@@ -148,7 +148,7 @@ function clickHandler(menuItem) {
|
||||
switch (m.key) {
|
||||
case "copysupportinfo":
|
||||
//put the support info on the clipboard:
|
||||
var element = document.getElementById("aboutinfocard");
|
||||
var element = document.getElementById("ayaNovaVersioncard");
|
||||
var text = element.innerText || element.textContent;
|
||||
|
||||
var logText = "";
|
||||
@@ -243,7 +243,7 @@ export default {
|
||||
beforeDestroy() {},
|
||||
mounted() {
|
||||
this.clientInfo = {};
|
||||
this.clientInfo = aboutInfo;
|
||||
this.clientInfo = ayaNovaVersion;
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user