mirror of
https://gitlab.com/ryzen-controller-team/ryzen-controller.git
synced 2024-12-22 18:13:28 +07:00
Fix #4 Added version with app name.
This commit is contained in:
parent
f2458d2466
commit
f78bdd9eff
@ -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>
|
||||
|
@ -4,6 +4,7 @@ ready(function(){
|
||||
checkForAdminRights();
|
||||
preFillSettings();
|
||||
loadLatestUsedSettings();
|
||||
displayVersion();
|
||||
});
|
||||
|
||||
/**
|
||||
|
@ -205,3 +205,8 @@ function registerEventListenerForSettingsInput() {
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function displayVersion() {
|
||||
const pjson = require('./package.json');
|
||||
document.getElementById('version').innerHTML = `v${pjson.version}`;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user