Fix #4 Added version with app name.

This commit is contained in:
Quentin Decaunes 2019-03-01 15:38:59 +01:00
parent f2458d2466
commit f78bdd9eff
3 changed files with 15 additions and 9 deletions

View File

@ -9,7 +9,7 @@
<script src="./node_modules/uikit/dist/js/uikit-icons.min.js"></script>
</head>
<body class="uk-animation-fade">
<h1>Ryzen Controller</h1>
<h1>Ryzen Controller <span id="version" class="uk-badge"></span></h1>
<ul uk-switcher uk-tab uk-sticky class="uk-background-default">
<li><a href="#">Controller</a></li>

View File

@ -4,6 +4,7 @@ ready(function(){
checkForAdminRights();
preFillSettings();
loadLatestUsedSettings();
displayVersion();
});
/**

View File

@ -205,3 +205,8 @@ function registerEventListenerForSettingsInput() {
});
});
}
function displayVersion() {
const pjson = require('./package.json');
document.getElementById('version').innerHTML = `v${pjson.version}`;
}