keeweb/app/scripts/comp/runtime-info.js

12 lines
284 B
JavaScript
Raw Normal View History

2017-01-31 07:50:28 +01:00
const Launcher = require('../comp/launcher');
2015-10-23 22:12:12 +02:00
2017-01-31 07:50:28 +01:00
const RuntimeInfo = {
2015-10-22 20:03:44 +02:00
version: '@@VERSION',
buildDate: '@@DATE',
2015-11-14 09:39:22 +01:00
commit: '@@COMMIT',
2015-10-22 20:03:44 +02:00
userAgent: navigator.userAgent,
2015-10-23 22:12:12 +02:00
launcher: Launcher ? Launcher.name + ' v' + Launcher.version : ''
2015-10-22 20:03:44 +02:00
};
module.exports = RuntimeInfo;