converse-desktop/app/init.js

15 lines
499 B
JavaScript
Raw Normal View History

2020-05-09 15:07:42 +00:00
const angular = require('angular')
let angApp = angular.module('app', [])
2020-05-17 18:12:36 +00:00
angApp.constant('AppInfo', {
APP_NAME: 'Converse Desktop',
2020-08-07 12:49:44 +00:00
APP_VERSION: 'v0.1.0',
APP_HOME: 'https://github.com/conversejs/converse-desktop',
APP_RELEASES_CHECK_URL: 'https://api.github.com/repos/conversejs/converse-desktop/releases',
APP_RELEASES_URL: 'https://github.com/conversejs/converse-desktop/releases',
CONVERSE_VERSION: 'v7.0.4',
ELECTRON_VERSION: '11.2.3'
2020-05-17 18:12:36 +00:00
});
module.exports = angApp