converse-desktop/app/init.js

12 lines
432 B
JavaScript
Raw Normal View History

const 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',
2022-01-05 00:34:28 +00:00
ELECTRON_VERSION: '13.6.6'
2020-05-17 18:12:36 +00:00
});
export default angApp;