fix #1271: loading custom plugins from config

This commit is contained in:
antelle 2019-09-28 23:40:17 +02:00
parent b635281428
commit b6be4375bd
2 changed files with 5 additions and 2 deletions

View File

@ -115,7 +115,7 @@ const KdbxwebInit = {
});
},
workerPostRun() {
workerPostRun: function() {
self.postMessage({ op: 'postRun' });
self.onmessage = e => {
try {
@ -128,7 +128,7 @@ const KdbxwebInit = {
};
},
calcHash(Module, args) {
calcHash: function(Module, args) {
let { password, salt } = args;
const { memory, iterations, length, parallelism, type, version } = args;
const passwordLen = password.byteLength;

View File

@ -1,5 +1,8 @@
Release notes
-------------
##### v1.11.2 (2019-09-29)
`-` fix #1272: Argon2 error
##### v1.11.1 (2019-09-28)
`-` fix #1270: password change control focus
`-` fix #1271: loading custom plugins from config