Re: [Interest] qml cache vs compiler

2017-01-25 Thread Thiago Macieira
Em quinta-feira, 26 de janeiro de 2017, às 14:00:49 PST, Tim Blechmann escreveu: > Is it precompiled in 5.8 or is it kind of jit compilation? > >>> > >>> It's a cache of the JIT > >>> > >> How does it improve the startup time? is it persistant between > >> execution? > > > > Yes, it's pe

Re: [Interest] webenginewidgets and Qt 5.8 for WinRT armv7 kit

2017-01-25 Thread Charles-Elie Gentil
Hi, You can rebuild WebKit from community release : http://download.qt.io/community_releases/5.8/5.8.0-final/ For WebView, I think that it’s the same problem that I’ve had (in my case, WebView could not remember the login, password, … but on Android device). To fixe this issue, I've modified

Re: [Interest] qml cache vs compiler

2017-01-25 Thread Tim Blechmann
Is it precompiled in 5.8 or is it kind of jit compilation? >>> >>> It's a cache of the JIT >>> >> How does it improve the startup time? is it persistant between execution? > > Yes, it's persistent between executions. It gets invalidated if the QtQml > library changes or if the source file d

[Interest] Qt/Mac: 2-finger-tap right-click and context menu

2017-01-25 Thread René J . V . Bertin
Hello, Has anything changed between Qt 5.6 and 5.7.1 in the processing of native right-click events leading up to the emission of the aboutToShow signal for context menus? There are 2 ways to produce a right-click with a standard Mac mouse or trackpad: with a Ctrl-Click of the unique mouse but

[Interest] TypeError during cythonize

2017-01-25 Thread Frank Rueter | OHUfx
Hi all, I have run into this issue a couple of times now: Some of my class declarations look like this: class DBTaskQueue(QtCore.QObject): def __init__(self, npdbInstance, task=None, parent=None): super(DBTaskQueue, self).__init__(parent) This works fine when run as pur

Re: [Interest] Qt, openssl and redistribution (of binary packages)

2017-01-25 Thread Thiago Macieira
Em quarta-feira, 25 de janeiro de 2017, às 11:02:22 PST, René J. V. Bertin escreveu: > Thiago Macieira wrote: > > Qt changed licences with 5.7: it's now GPLv2 and LGPLv3 (plus commercial). > > GPLv3 is mentioned explicitly in the licence headers but it's implicitly > > required by the LGPLv3 anywa

Re: [Interest] webenginewidgets and Qt 5.8 for WinRT armv7 kit

2017-01-25 Thread Alexander Dyagilev
WebView does not allow to access its cookies (or modify them)... Webkit is deprecated... Any chance an ability to at least read WebView's cookies will be added in the near future? On 1/25/2017 3:36 PM, Charles-Élie G wrote: Hi, For me, this module is only supported on desktop device (Linux

Re: [Interest] QML lint

2017-01-25 Thread Ronan Jouchet
On 2017-01-25 09:40, Jérôme Godbout wrote: Then you will need to do your own team convention lint executable to achieve that. Qmllint only check basic syntax. But you probably can try a javascript indent lint like this one: http://eslint.org/docs/rules/indent not sure it will work but could wor

Re: [Interest] QML lint

2017-01-25 Thread Jérôme Godbout
Then you will need to do your own team convention lint executable to achieve that. Qmllint only check basic syntax. But you probably can try a javascript indent lint like this one: http://eslint.org/docs/rules/indent not sure it will work but could worth a try [image: bodycad]

Re: [Interest] webenginewidgets and Qt 5.8 for WinRT armv7 kit

2017-01-25 Thread Charles-Élie G
Hi, For me, this module is only supported on desktop device (Linux, OS X and Windows). For Android, iOS and WinRT,  you have to use WebView or Webkit. Bye Charlie Envoyé de mon Galaxy S6 Orange Message d'origine De : Alexander Dyagilev Date : 25/01/2017 13:30 (GMT+01:00) À :

Re: [Interest] webenginewidgets and Qt 5.8 for WinRT armv7 kit

2017-01-25 Thread Alexandru Croitor
Hello, WebEngine is not supported on WinRT platform. It works only on Windows Desktop, Linux and macOS. Regards, Alex. > On 25 Jan 2017, at 13:30, Alexander Dyagilev wrote: > > Hello, > > Says: > > Project ERROR: Unknown module(s) in QT: webenginewidgets > > I could not find any information

[Interest] webenginewidgets and Qt 5.8 for WinRT armv7 kit

2017-01-25 Thread Alexander Dyagilev
Hello, Says: Project ERROR: Unknown module(s) in QT: webenginewidgets I could not find any information about supported platforms for this module. Is this error means it's not supported there? ___ Interest mailing list Interest@qt-project.org http://

Re: [Interest] Qt, openssl and redistribution (of binary packages)

2017-01-25 Thread René J . V . Bertin
Thiago Macieira wrote: > Qt changed licences with 5.7: it's now GPLv2 and LGPLv3 (plus commercial). > GPLv3 is mentioned explicitly in the licence headers but it's implicitly > required by the LGPLv3 anyway. Thanks. So you think we don't need (as in, it's safer) to list GPL3 explicitly if we lis

Re: [Interest] QML lint

2017-01-25 Thread Sérgio Martins
On Wed, Jan 25, 2017 at 5:11 AM, Станислав Сальников wrote: > Thanks for the answer! > Is there any way to configure qmllint? We have some conventions in my team > and some of default qmllint`s warnings are okay for us. > And the main question is about codestyle. Is there any way to check > inden

Re: [Interest] Problem transfering bigger data amounts over Websockets on iOS

2017-01-25 Thread Markus Steinhilber
We already had a keep-alive mechanism which did send pings periodically around every 3 seconds. This did not help. No, the app is not backgrounded. I am using idleTimerDisabled to prevent the backgrounding. Also i tried to transfer while touching the UI every minute so it won't go to background. T