fix SSL fingerprint text and about box copyright text
This commit is contained in:
parent
99b16334b5
commit
0929086428
|
@ -52,7 +52,7 @@
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><p>
|
<string><p>
|
||||||
Keyboard and mouse sharing application. Cross platform and open source.<br /><br />
|
Keyboard and mouse sharing application. Cross platform and open source.<br /><br />
|
||||||
Copyright © 2012-2018 Debauchee Open Source Group<br />
|
Copyright © 2018 Debauchee Open Source Group<br />
|
||||||
Copyright © 2012-2016 Symless Ltd.<br />
|
Copyright © 2012-2016 Symless Ltd.<br />
|
||||||
Copyright © 2002-2012 Chris Schoeneman, Nick Bolton, Volker Lanz.<br /><br />
|
Copyright © 2002-2012 Chris Schoeneman, Nick Bolton, Volker Lanz.<br /><br />
|
||||||
Barrier is released under the GNU General Public License (GPLv2).<br /><br />
|
Barrier is released under the GNU General Public License (GPLv2).<br /><br />
|
||||||
|
|
|
@ -133,6 +133,8 @@ MainWindow::MainWindow(QSettings& settings, AppConfig& appConfig) :
|
||||||
m_pComboServerList->hide();
|
m_pComboServerList->hide();
|
||||||
m_pLabelPadlock->hide();
|
m_pLabelPadlock->hide();
|
||||||
|
|
||||||
|
sslToggled(appConfig.getCryptoEnabled());
|
||||||
|
|
||||||
connect (this, SIGNAL(windowShown()),
|
connect (this, SIGNAL(windowShown()),
|
||||||
this, SLOT(on_windowShown()), Qt::QueuedConnection);
|
this, SLOT(on_windowShown()), Qt::QueuedConnection);
|
||||||
|
|
||||||
|
@ -494,12 +496,6 @@ void MainWindow::restartBarrier()
|
||||||
|
|
||||||
void MainWindow::proofreadInfo()
|
void MainWindow::proofreadInfo()
|
||||||
{
|
{
|
||||||
if (m_AppConfig->getCryptoEnabled()) {
|
|
||||||
m_pSslCertificate = new SslCertificate(this);
|
|
||||||
m_pSslCertificate->generateCertificate();
|
|
||||||
}
|
|
||||||
updateLocalFingerprint();
|
|
||||||
saveSettings();
|
|
||||||
int oldState = m_BarrierState;
|
int oldState = m_BarrierState;
|
||||||
m_BarrierState = barrierDisconnected;
|
m_BarrierState = barrierDisconnected;
|
||||||
setBarrierState((qBarrierState)oldState);
|
setBarrierState((qBarrierState)oldState);
|
||||||
|
|
Loading…
Reference in New Issue