subscription license code additions

This commit is contained in:
2022-08-17 03:03:48 +00:00
parent d62356fd2f
commit ed23e20853
4 changed files with 20 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "ayanova", "name": "ayanova",
"version": "8.0.3", "version": "8.0.4",
"private": true, "private": true,
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",

View File

@@ -1,4 +1,4 @@
export default { export default {
version: "8.0.3", version: "8.0.4",
copyright: "© 1999-2022, Ground Zero Tech-Works Inc." copyright: "© 1999-2022, Ground Zero Tech-Works Inc."
}; };

View File

@@ -65,7 +65,7 @@ import chartBarHorizontalControl from "./components/chart-bar-horizontal-control
//************************************************************** //**************************************************************
//DEVELOPMENT MODE FLAG, SET FALSE FOR RELEASE //DEVELOPMENT MODE FLAG, SET FALSE FOR RELEASE
//************************************************************ //************************************************************
const DEV_MODE = false; const DEV_MODE = true;
//************************************************************ //************************************************************
//************************************************************** //**************************************************************
//************************************************************** //**************************************************************

View File

@@ -44,6 +44,19 @@
</v-list-item-content> </v-list-item-content>
</v-list-item> </v-list-item>
<v-list-item>
<v-list-item-content>
<v-list-item-title>{{
$ay.t("LicenseType")
}}</v-list-item-title>
<v-list-item-subtitle class="text-wrap">{{
currentLicenseInfo.perpetual
? $ay.t("LicenseTypePerpetual")
: $ay.t("LicenseTypeSubscription")
}}</v-list-item-subtitle>
</v-list-item-content>
</v-list-item>
<v-list-item v-if="currentLicenseInfo.licenseWillExpire"> <v-list-item v-if="currentLicenseInfo.licenseWillExpire">
<v-list-item-content> <v-list-item-content>
<v-list-item-title> <v-list-item-title>
@@ -641,7 +654,10 @@ async function fetchTranslatedText() {
"HelpRestore", "HelpRestore",
"CopyDbId", "CopyDbId",
"UserCountExceeded", "UserCountExceeded",
"ViewEULA" "ViewEULA",
"LicenseType",
"LicenseTypeSubscription",
"LicenseTypePerpetual"
]); ]);
} }
</script> </script>