Merge remote-tracking branch 'origin/master' into develop

This commit is contained in:
Jonathan White
2017-04-09 10:28:15 -04:00
15 changed files with 3896 additions and 1835 deletions

View File

@@ -19,6 +19,8 @@ AccessControlDialog::AccessControlDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::AccessControlDialog())
{
this->setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
ui->setupUi(this);
connect(ui->allowButton, SIGNAL(clicked()), this, SLOT(accept()));
connect(ui->denyButton, SIGNAL(clicked()), this, SLOT(reject()));

View File

@@ -28,7 +28,7 @@ static const char * const STR_SET_LOGIN = "set-login";
static const char * const STR_ASSOCIATE = "associate";
static const char * const STR_TEST_ASSOCIATE = "test-associate";
static const char * const STR_GENERATE_PASSWORD = "generate-password";
static const char * const STR_VERSION = "1.8.4.1";
static const char * const STR_VERSION = "1.8.4.2";
}/*namespace KeepassHttpProtocol*/