Skip to content

Commit

Permalink
v2.0-RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
607011 committed Sep 3, 2015
1 parent 8891857 commit ce8059e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ctSESAM/deploy/ctSESAM.nsi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
!define VERSIONMAJOR "2"
!define VERSIONMINOR "0"
!define VERSIONPATCH "-BETA"
!define VERSIONPATCH "0"
!define VERSION "${VERSIONMAJOR}.${VERSIONMINOR}${VERSIONPATCH}"
!define GUID "{f25f512a-7d58-4e2f-a52b-3663fd8ca813}"
!define APP "ctSESAM"
Expand Down
6 changes: 3 additions & 3 deletions ctSESAM/global.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
#include "global.h"
#include <QSysInfo>

const QString AppCompanyName = "c't";
const QString AppName = "Qt SESAM";
const QString AppVersion = "2.0 BETA";
const QString AppCompanyName = "ct";
const QString AppName = "QtSESAM";
const QString AppVersion = "2.0.0";
const QString AppURL = "https://github.com/ola-ct/Qt-SESAM";
const QString AppAuthor = "Oliver Lau";
const QString AppAuthorMail = "[email protected]";
Expand Down
5 changes: 0 additions & 5 deletions ctSESAM/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,6 @@ void MainWindow::mergeLocalAndRemoteData(void)
{
Q_D(MainWindow);
QStringList allDomainNames = d->remoteDomains.keys() + d->domains.keys();
qDebug() << "mergeLocalAndRemoteData() combined domain names =" << allDomainNames;
allDomainNames.removeDuplicates();
foreach(QString domainName, allDomainNames) {
const DomainSettings &remoteDomainSetting = d->remoteDomains.at(domainName);
Expand Down Expand Up @@ -1334,10 +1333,6 @@ void MainWindow::sendToSyncServer(const QByteArray &cipher)
void MainWindow::onDomainSelected(const QString &domain)
{
Q_D(MainWindow);
qDebug() << "MainWindow::onDomainSelected(" << domain << ")";
qDebug() << "ui->domainsComboBox->currentText() =" << ui->domainsComboBox->currentText();
qDebug() << "ui->domainsComboBox->currentIndex() =" << ui->domainsComboBox->currentIndex();

if (ui->domainsComboBox->currentIndex() == 0 && !d->parameterSetDirty) {
newDomain();
}
Expand Down
4 changes: 4 additions & 0 deletions ctSESAM/translations/i18n_de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,10 @@
<source>Choose certificate file</source>
<translation type="vanished">Zertifikatskettendatei wählen</translation>
</message>
<message>
<source>Write backup files</source>
<translation>Backups schreiben</translation>
</message>
</context>
<context>
<name>ProgressDialog</name>
Expand Down

0 comments on commit ce8059e

Please sign in to comment.