[Interest] Porting custom QML plugin to the Qt6

2021-04-28 Thread Jakub Narolewski
Lately, mostly for fame and glory, I decided to port some of my stuff from Qt5 to Qt6. Most of it went ok'ish - after some CMakeLists.txt hacking and 'modernizing' the code I was able to compile two of my dynamic libraries under Qt6. Problems started with my custom QML plugin. Here after

Re: [Interest] Qt Creator licensing for companies with Qt Commercial developers

2020-03-27 Thread Jakub Narolewski
Commercial developers Maybe I misunderstood something so just correct me.If I use – commercially – QtCreator as my daily IDE without using Qt library or attached modules, I still need to pay for full Qt license? Cheers,Jakub Narolewski From: Jérôme GodboutSent: 27 March 2020 14:22To: Tuukka Turunen

Re: [Interest] Qt Creator licensing for companies with Qt Commercial developers

2020-03-27 Thread Jakub Narolewski
Maybe I misunderstood something so just correct me.If I use – commercially – QtCreator as my daily IDE without using Qt library or attached modules, I still need to pay for full Qt license? Cheers,Jakub Narolewski From: Jérôme GodboutSent: 27 March 2020 14:22To: Tuukka Turunen; Vyacheslav Lanovets

[Interest] QAbstractEventDispatcher - registerSocketNotifier(), unregisterSocketNotifier()

2019-12-28 Thread Jakub Narolewski
I have this pet project of mine in which I'm testing the possibility of integrating libuv's event loop cleanly with Qt.After some research I come to conclusion that custom class based on QAbstractEventDispatcher will be perfect for this. Some prototyping later and - give or take few bugs - it

Re: [Interest] windeployqt

2019-11-27 Thread Jakub Narolewski
 I believe that QtCore5’s broken sig is due to the funky patching windeployqt does to paths hardcoded in it.I never had problems with it though. It seems like a maybe QML related problem.If you don’t redirect qWarnings / qInfos somewhere you could always use SysInternal’s DebugView to ‘spy’ on

Re: [Interest] Static build of Qt - debug mode and plugins

2019-08-30 Thread Jakub Narolewski
makes a difference to me. Jakub Narolewski From: Thiago Macieira Sent: 26 August 2019 07:40 To: interest@qt-project.org Subject: Re: [Interest] Static build of Qt - debug mode and plugins On Sunday, 25 August 2019 08:59:23 PDT Jakub Narolewski wrote: > # small hack to properly set LZ4 libr

Re: [Interest] Static build of Qt - debug mode and plugins

2019-08-26 Thread Jakub Narolewski
Correct! Somewhat. I’m using VS under Windows configured to use ‘Unix Makefiles’ as generator when I’m connected to remote Linux boxes. Under Windows I use Ninja. Narolewski Jakub From: Elvis Stansvik Sent: 26 August 2019 18:54 To: Matthew Woehlke Cc: interest@qt-project.org Interest; Jakub

Re: [Interest] Static build of Qt - debug mode and plugins

2019-08-25 Thread Jakub Narolewski
Sound really awesome – the less steps the better. Does this feature already exist on the dev branch of qt? Can check it out by compiling Qt directly from git? Narolewski Jakub From: Alexandru Croitor Sent: 25 August 2019 20:07 To: Jakub Narolewski; Thiago Macieira; interest@qt-project.org

Re: [Interest] Static build of Qt - debug mode and plugins

2019-08-25 Thread Jakub Narolewski
Ah yes, mystery solved. As usual – the butler did it. I suppose I should read my own code more carefully. In case of Release builds I’m adding “-flto” switch to the resulting object using this line of code: if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug") if (WIN32)

Re: [Interest] Static build of Qt - debug mode and plugins

2019-08-25 Thread Jakub Narolewski
ypto Narolewski Jakub From: Thiago Macieira Sent: 25 August 2019 17:46 To: interest@qt-project.org Subject: Re: [Interest] Static build of Qt - debug mode and plugins On Sunday, 25 August 2019 00:25:50 PDT Jakub Narolewski wrote: > /usr/local/Qt-5.13.0/lib/libQt5Core.a > /usr/local/Qt-5.13.0/

Re: [Interest] Static build of Qt - debug mode and plugins

2019-08-25 Thread Jakub Narolewski
Stansvik Sent: 25 August 2019 09:09 To: Thiago Macieira Cc: interest@qt-project.org Interest Subject: Re: [Interest] Static build of Qt - debug mode and plugins Den sön 25 aug. 2019 kl 02:56 skrev Thiago Macieira : > > On Saturday, 24 August 2019 10:53:45 PDT Jakub Narolewski wrote: &g

[Interest] Static build of Qt - debug mode and plugins

2019-08-24 Thread Jakub Narolewski
Hello :] I'm having a bit of a problem compiling my application in debug build mode under Linux. Generally, under *nixes, I'm using self build, static Qt version. To configure Qt I'm using this simple one-liner: // CONFIGURE START ./configure \ -opensource \ -confirm-license \ -static \

[Interest] Registering .pragma library files in custom QML plugins

2019-07-13 Thread Jakub Narolewski
Hello :] My question is essentially something I already asked about on Qt's forums sometime in 2018: https://forum.qt.io/topic/89775/registering-pragma-singleton-libraries-in-custom-plugins We set the requirements such as: - project is an application which usues a bunch of my custom QML

Re: [Interest] QWebSocketServer - server randomly stopsacceptingconnections

2019-04-04 Thread Jakub Narolewski
or will try to use QTcpServer to hack around it. From: Jason H Sent: 04 April 2019 19:07 To: Jakub Narolewski Cc: interest@qt-project.org Subject: Re: RE: [Interest] QWebSocketServer - server randomly stopsacceptingconnections Wow, a P1 that was abandoned. https://codereview.qt-project.org/#/c/179030

Re: [Interest] QWebSocketServer - server randomly stops acceptingconnections

2019-04-04 Thread Jakub Narolewski
I just found this old report: https://bugreports.qt.io/browse/QTBUG-57026 which sounds suspiciously similar to what I am observing. Hmm, I wonder if you hit the jackpot writing earlier to use QTcpServer to initialize connections. If I could still use SSL with

Re: [Interest] QWebSocketServer - server randomly stops acceptingconnections

2019-04-03 Thread Jakub Narolewski
parameter value: m_wsServer->listen(QHostAddress::Any, m_port) No proxy is used. No other custom, network oriented software is running on this box. Only vanilla stuff that came post VPS provisioning. From: Jason H Sent: 03 April 2019 18:23 To: Jakub Narolewski Cc: interest@qt-project.org Subject:

[Interest] QWebSocketServer - server randomly stops accepting connections

2019-04-03 Thread Jakub Narolewski
I have this one, strange problem with QWebSocketServer that is driving me insane. My project is a very simple, websocket-based online game server. It uses Qt SQL modules and makes use of some light QEvent'ing. Up until recently I used uWebSockets to drive my wss communications. To make matters