converse-desktop/app/init.js
Keith Maika e2ae88894b
Update to Electron 16.
Application needed to be re-worked to not rely on nodeIntegration/contextIsolation for the upgrade to be possible.
2022-01-05 03:52:42 -05:00

13 lines
464 B
JavaScript

const angApp = angular.module('app', [])
angApp.constant('AppInfo', {
APP_NAME: 'Converse Desktop',
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: 'v9.0.0',
ELECTRON_VERSION: '13.6.6'
});
export default angApp;