This commit is contained in:
2023-02-21 23:15:23 +00:00
parent 23b81b69e3
commit 4d53fafe72
4 changed files with 16 additions and 79 deletions

View File

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

View File

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

File diff suppressed because one or more lines are too long

View File

@@ -67,7 +67,7 @@
<div>
<span class="ml-6 text-body-1">{{ $sock.t("Version") }}: </span>
<span class="text-body-2"
>{{ serverInfo.serverVersion }}&nbsp;{{ serverInfo.build }}</span
>{{ serverInfo.serverVersion }}</span
>
</div>
<div>
@@ -82,71 +82,7 @@
<span class="ml-6 text-body-1">Server time zone: </span>
<span class="text-body-2">{{ serverInfo.serverTimeZone }}</span>
</div>
<div v-if="canViewLicenseInfo()">
<v-divider class="mt-6"></v-divider>
<v-subheader>{{ $sock.t("HelpLicense") }}</v-subheader>
<div>
<span class="ml-6 text-body-1"
>{{ $sock.t("RegisteredUser") }}:
</span>
<span class="text-body-2">{{
serverInfo.license.license.licensedTo
}}</span>
</div>
<div>
<span class="ml-6 text-body-1">{{ $sock.t("DatabaseID") }}: </span>
<span class="text-body-2">{{
serverInfo.license.license.serverDbId
}}</span>
</div>
<div>
<span class="ml-6 text-body-1"
>{{ $sock.t("LicenseSerial") }}:
</span>
<span class="text-body-2">{{
serverInfo.license.license.keySerial
}}</span>
</div>
<div>
<span class="ml-6 text-body-1">{{ $sock.t("LicenseType") }}: </span>
<span class="text-body-2">{{
serverInfo.license.license.perpetual
? $sock.t("LicenseTypePerpetual")
: $sock.t("LicenseTypeSubscription")
}}</span>
</div>
<div>
<span class="ml-6 text-body-1"
>{{ $sock.t("LicenseExpiration") }}:
</span>
<span class="text-body-2">{{
$sock.dt(serverInfo.license.license.licenseExpiration)
}}</span>
</div>
<div>
<span class="ml-6 text-body-1"
>{{ $sock.t("SupportedUntil") }}:
</span>
<span class="text-body-2">{{
$sock.dt(serverInfo.license.license.maintenanceExpiration)
}}</span>
</div>
<v-divider class="mt-6"></v-divider>
<v-subheader data-cy="aboutlicensedoptions">{{
$sock.t("LicensedOptions")
}}</v-subheader>
<div
v-for="item in serverInfo.license.license.features"
:key="item.Feature"
>
<span class="ml-6 text-body-1">{{ item.Feature }}</span>
<span class="text-body-2">{{
item.Count ? ": " + item.Count : ""
}}</span>
</div>
</div>
<v-divider class="mt-6"></v-divider>
</v-card>