Created Test Environment test.freeplanet.app
and Server: /var/www/test.freeplanet_server
This commit is contained in:
@@ -228,7 +228,7 @@ canvas {
|
||||
}
|
||||
|
||||
.fa-facebook:before {
|
||||
content: url('../../../public/icons/flag_it.svg');
|
||||
content: url('../../../public/svg/flag_it.svg');
|
||||
}
|
||||
|
||||
.clIconOnline {
|
||||
|
||||
@@ -275,10 +275,10 @@ export default defineComponent({
|
||||
let strv = ''
|
||||
if (process.env.DEV) {
|
||||
strv = 'DEV '
|
||||
} else if (process.env.TEST) {
|
||||
} else if (tools.isTest()) {
|
||||
strv = 'TEST '
|
||||
}
|
||||
return `[${strv}${process.env.APP_VERSION}]`
|
||||
return `[${strv} ver. ${process.env.APP_VERSION}]`
|
||||
}
|
||||
|
||||
function getLangAtt() {
|
||||
@@ -344,7 +344,13 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function getappname() {
|
||||
return tools.getsuffisso() + tools.getappname(tools.isMobile())
|
||||
let mystr = tools.getsuffisso() + tools.getappname(tools.isMobile())
|
||||
//if (!tools.isMobile()) {
|
||||
mystr += ' ' + getAppVersion()
|
||||
//}
|
||||
|
||||
return mystr
|
||||
|
||||
}
|
||||
|
||||
function toggleanimation() {
|
||||
@@ -474,6 +480,7 @@ export default defineComponent({
|
||||
getMsgText,
|
||||
paotest,
|
||||
logoutHandler,
|
||||
isUserNotAuth,
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
@@ -29,7 +29,6 @@
|
||||
</div>
|
||||
|
||||
<q-btn
|
||||
ripple
|
||||
size="md"
|
||||
id="newvers" v-if="isNewVersionAvailable()" color="secondary" rounded icon="refresh"
|
||||
class="btnNewVersShow" @click="RefreshApp()" :label="t('notification.newVersionAvailable')">
|
||||
@@ -40,9 +39,6 @@
|
||||
<img :src="imglogo()" height="27" alt="Immagine Logo">
|
||||
</q-avatar>
|
||||
<div class="q-mx-sm titlesite">{{ getappname() }}</div>
|
||||
<template v-slot:subtitle>
|
||||
<div>{{ t('msg.myDescriz') }} {{ getAppVersion() }}</div>
|
||||
</template>
|
||||
</q-toolbar-title>
|
||||
|
||||
<!--
|
||||
|
||||
Reference in New Issue
Block a user