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

13 lines
296 B
JavaScript
Raw Normal View History

2019-09-15 14:16:32 +02:00
import { Launcher } from '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',
2017-12-16 13:12:30 +01:00
beta: !!'@@BETA',
2015-10-22 20:03:44 +02:00
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
};
2019-09-15 14:16:32 +02:00
export { RuntimeInfo };