This commit is contained in:
2020-03-02 23:59:15 +00:00
parent 6465f04d9e
commit 80a949b909
2 changed files with 9 additions and 1 deletions

View File

@@ -239,6 +239,14 @@ export default {
//get current version now
var currentVersion = window.$gz.clientInfo.version;
if (currentVersion != window.$gz.store.state.lastClientVersion) {
window.$gz.store.commit(
"logItem",
"##### New version detected ##### cleared form settings cache (" +
window.$gz.store.state.lastClientVersion +
" -> " +
currentVersion +
")"
);
window.$gz.store.commit("setLastClientVersion", currentVersion);
window.$gz.store.commit("clearAllFormSettings");
}

View File

@@ -1,5 +1,5 @@
export default {
version: "8.0.0-alpha.2020.Feb-29",
version: "8.0.0-alpha.2020.March-02",
copyright:
"Copyright © 1999-2020, Ground Zero Tech-Works Inc. All Rights Reserved"
};