1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-20 06:56:40 +02:00
keeweb/app/scripts/comp/runtime-info.js
2017-12-16 13:12:30 +01:00

13 lines
306 B
JavaScript

const Launcher = require('../comp/launcher');
const RuntimeInfo = {
version: '@@VERSION',
beta: !!'@@BETA',
buildDate: '@@DATE',
commit: '@@COMMIT',
userAgent: navigator.userAgent,
launcher: Launcher ? Launcher.name + ' v' + Launcher.version : ''
};
module.exports = RuntimeInfo;