summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2015-07-28 01:11:11 +0200
committerAnne Jan Brouwer <brouwer@annejan.com>2015-07-28 01:11:11 +0200
commit8090a049752504a19506f377afe075d8209684c3 (patch)
tree6830ceb52da6f2dcb8091b8a1401d750acbb730f
parent84d41897f9f17fee0ab0392c29d558ad0094643a (diff)
version and more checkability
-rw-r--r--dialog.cpp4
-rw-r--r--qtpass.iss2
-rw-r--r--qtpass.pro2
3 files changed, 6 insertions, 2 deletions
diff --git a/dialog.cpp b/dialog.cpp
index 1489001d..22192eaa 100644
--- a/dialog.cpp
+++ b/dialog.cpp
@@ -615,6 +615,10 @@ void Dialog::on_toolButtonPwgen_clicked()
QString pwgen = selectExecutable();
if (!pwgen.isEmpty()) {
ui->pwgenPath->setText(pwgen);
+ ui->checkBoxUsePwgen->setEnabled(true);
+ } else {
+ ui->checkBoxUsePwgen->setEnabled(false);
+ ui->checkBoxUsePwgen->setChecked(false);
}
}
diff --git a/qtpass.iss b/qtpass.iss
index ca77df3c..2cd3556a 100644
--- a/qtpass.iss
+++ b/qtpass.iss
@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "QtPass"
-#define MyAppVersion "0.8.6"
+#define MyAppVersion "0.9.1"
#define MyAppPublisher "IJhack"
#define MyAppURL "http://qtpass.org/"
#define MyAppExeName "qtpass.exe"
diff --git a/qtpass.pro b/qtpass.pro
index d1589b7a..1607f770 100644
--- a/qtpass.pro
+++ b/qtpass.pro
@@ -18,7 +18,7 @@ macx {
}
TEMPLATE = app
-VERSION = 0.9.0
+VERSION = 0.9.1
SOURCES += main.cpp\
mainwindow.cpp \