Small updates

This commit is contained in:
varjolintu 2017-12-13 19:12:22 +02:00
parent 66db5486ba
commit fc6106638b
3 changed files with 15 additions and 4 deletions

View file

@ -1,3 +1,8 @@
0.4.4 (??-??-2017)
=========================
- Added support for OTP codes via context menu
- Fixed HTTP auth
0.4.3 (9-12-2017)
=========================
- Create password generator dialog only when clicking the icon

View file

@ -131,7 +131,9 @@ keepass.addCredentials = function(callback, tab, username, password, url) {
keepass.updateCredentials = function(callback, tab, entryId, username, password, url) {
page.debug('keepass.updateCredentials(callback, {1}, {2}, {3}, [password], {4})', tab.id, entryId, username, url);
page.tabs[tab.id].errorMessage = null;
if (tab && page.tabs[tab.id]) {
page.tabs[tab.id].errorMessage = null;
}
keepass.testAssociation((response) => {
if (!response) {
@ -200,7 +202,9 @@ keepass.retrieveCredentials = function(callback, tab, url, submiturl, forceCallb
return;
}
page.tabs[tab.id].errorMessage = null;
if (tab && page.tabs[tab.id]) {
page.tabs[tab.id].errorMessage = null;
}
if (!keepass.isConnected) {
callback([]);
@ -344,7 +348,9 @@ keepass.associate = function(callback, tab) {
return;
}
page.tabs[tab.id].errorMessage = null;
if (tab && page.tabs[tab.id]) {
page.tabs[tab.id].errorMessage = null;
}
const kpAction = kpActions.ASSOCIATE;
const key = nacl.util.encodeBase64(keepass.keyPair.publicKey);

View file

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "keepassxc-browser",
"version": "0.4.3",
"version": "0.4.4",
"description": "KeePassXC integration for modern web browsers",
"author": "Sami Vänttinen",
"icons": {