Re: [Interest] QtWidget examples not being run

2020-07-17 Thread Ramakanth Kesireddy
Hello Thiago, Thanks for your feedback. As you pointed out different configure options and patches is the reason. Now with the single Qt build, it works fine on target. However, the rotation of linux framebuffer doesnot works in Qt 5.6 using export QT_QPA_PLATFORM=linuxfb:fb=/dev/fb0:rotation=18

Re: [Interest] QWebSocketServer via https

2020-07-17 Thread Alexander Carôt
P.P.S.: Just solved the problem myself - it was indeed related to the localhost.cert and the localhot.key files, which I had to replace with the respective server's files. All working fine now - thanks anyways ! -- http://www.carot.de Email : alexan...@carot.de Tel.: +49 (0)177 5719797 > G

Re: [Interest] List on moderation

2020-07-17 Thread Sze Howe Koh
On Fri, 17 Jul 2020 at 21:32, Andy Shaw wrote: > > This seems as a good summary as any. Thanks Swe-Howe. > > We have taken the list off moderation now, so please do not do post personal > attacks or insult and be derogatory. We don't want to have to moderate the > list and want everything to be

Re: [Interest] List on moderation

2020-07-17 Thread Andy Shaw
This seems as a good summary as any. Thanks Swe-Howe. We have taken the list off moderation now, so please do not do post personal attacks or insult and be derogatory. We don't want to have to moderate the list and want everything to be open for all and that this community is a safe one for eve

Re: [Interest] List on moderation

2020-07-17 Thread Sze Howe Koh
On Fri, 17 Jul 2020 at 13:37, Bernhard Lindner wrote: > > > Ps: I usually don't read emails from xyz fully, but every now and then, I > > like the > > critical approach, I just wish that these emails were straight to the point. > > Same here. > > Roland, maybe you would reach more people if you c

Re: [Interest] List on moderation

2020-07-17 Thread Andy Shaw
Just to reiterate, the moderation is only a temporary measure and it will be lifted in the very near short term. The reason it was set was because there was starting to be an increase on personal attacks, not just from one person so it was done just to give everyone a chance to calm down. Kind

Re: [Interest] List on moderation

2020-07-17 Thread mail
Hi, sorry to write again about this. I wanted to not respond to anything about this after my mail from 19/02/08. But to see the whole list go on moderation because one individual member is not capable or not willing to change his trolling behaviour, seems odd to me. Am 17.07.2020 um 00:22 schrie

Re: [Interest] QWebSocketServer via https

2020-07-17 Thread Alexander Carôt
P.S.: I also added to the constructor the following: QSslConfiguration sslConfiguration; QFile certFile(QStringLiteral(":/localhost.cert")); QFile keyFile(QStringLiteral(":/localhost.key")); certFile.open(QIODevice::ReadOnly); keyFile.open(QIODevice::ReadOnly); QSslCertificate certificate(&ce

[Interest] QWebSocketServer via https

2020-07-17 Thread Alexander Carôt
Hello all, I have been running a QWebSocketServer for a couple of years already and decided to switch from non-secure to secure mode now. My implementation is based on the Qt example Echoserver.cpp and what I did is this: 1.) Replaced the call m_pWebSocketServer(new QWebSocketServer(QStringLi