mirror of
https://github.com/moparisthebest/mail
synced 2025-02-11 12:40:10 -05:00
![Tankred Hase](/assets/img/avatar_default.png)
* Upgrade to OpenPGP.js v0.6.5 * Migrate PGP wrapper for breaking OpenPGP.js api changes * Change PGP wrapper decrypt api to return one signature arg * Change emailDao and keychainDao calls respectively * Fix tests * Add tests keygen with empty passphrase * Add tests to check PGP verification with wrong public key
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
requirejs.config({
|
|
nodeRequire: (typeof module !== 'undefined' && module.exports) ? require : undefined,
|
|
baseUrl: 'lib',
|
|
paths: {
|
|
js: '../js',
|
|
test: '../../test',
|
|
underscore: 'underscore/underscore-min',
|
|
lawnchair: 'lawnchair/lawnchair-git',
|
|
lawnchairSQL: 'lawnchair/lawnchair-adapter-webkit-sqlite-git',
|
|
lawnchairIDB: 'lawnchair/lawnchair-adapter-indexed-db-git',
|
|
angular: 'angular/angular.min',
|
|
angularRoute: 'angular/angular-route.min',
|
|
angularSanitize: 'angular/angular-sanitize.min',
|
|
angularAnimate: 'angular/angular-animate.min',
|
|
uuid: 'uuid/uuid',
|
|
forge: 'forge/forge.min',
|
|
punycode: 'punycode.min',
|
|
openpgp: 'openpgp/openpgp',
|
|
fastclick: 'fastclick/fastclick'
|
|
},
|
|
shim: {
|
|
forge: {
|
|
exports: 'forge'
|
|
},
|
|
angular: {
|
|
exports: 'angular'
|
|
},
|
|
angularSanitize: {
|
|
exports: 'angular',
|
|
deps: ['angular']
|
|
},
|
|
angularRoute: {
|
|
exports: 'angular',
|
|
deps: ['angular']
|
|
},
|
|
angularAnimate: {
|
|
exports: 'angular',
|
|
deps: ['angular']
|
|
},
|
|
lawnchair: {
|
|
exports: 'Lawnchair'
|
|
},
|
|
lawnchairSQL: {
|
|
deps: ['lawnchair']
|
|
},
|
|
lawnchairIDB: {
|
|
deps: ['lawnchair', 'lawnchairSQL']
|
|
},
|
|
underscore: {
|
|
exports: '_'
|
|
}
|
|
}
|
|
});
|
|
|
|
}()); |