Adding version info

This commit is contained in:
Félix Aime
2021-02-19 13:56:21 +01:00
parent 6350241a35
commit ecf1281290
3 changed files with 13 additions and 41 deletions

View File

@ -1,6 +1,6 @@
<template>
<div class="center">
<h3 class="lobster">{{ $t("home.welcome_msg") }}</h3>
<h3 class="lobster">{{ $t("home.welcome_msg") }}<sup>{{current_version}}</sup></h3>
<p>{{ $t("home.help_msg") }}</p>
<button class="btn btn-primary" v-on:click="next()">{{ $t("home.start_btn") }}</button>
</div>
@ -15,6 +15,7 @@ export default {
data() {
return {
translation: {},
current_version:""
}
},
methods: {
@ -31,6 +32,10 @@ export default {
internet: internet } });
}
}
},
created: function() {
if ('current_version' in window)
this.current_version = window.current_version
}
}
</script>

View File

@ -1,6 +1,6 @@
<template>
<div class="center">
<p><strong>TinyCheck needs to be updated from the version {{current_version}} to the version {{next_version}}.</strong><br />
<p><strong>TinyCheck needs to be updated to the next version ({{next_version}}).</strong><br />
<span v-if="!update_launched">Please click on the button below to update it.</span>
<span v-else>The process can take few minutes, please wait...</span>
</p>
@ -60,7 +60,6 @@
} else {
window.location.href = "/";
}
}
}
</script>