[Interest] 5.11.1 offline installer doesn't select Qt 5.11.1

2018-09-18 Thread Jason H
I noticed that when using the offline installer that the Qt 5.11.1 box is not checked by default. It would be good if it came pre-checked because that's what I'm trying to do. :-) It's too easy to blow past that and get an install were Qt Creator doesn't work...

Re: [Interest] QML Pointer Handlers: how to use 'GrabPermissions'

2018-09-18 Thread Shawn Rutledge
> On 18 Sep 2018, at 18:48, Shawn Rutledge wrote: > Because it accepts the point, that means the event will not propagate to the > other TapHandler. Oops that’s quite a wrong explanation… after more debugging and reading the code yet again, now I realize I was right the first time when I

Re: [Interest] AmbientLightSensor dead on iOS

2018-09-18 Thread Artem Sidyakin
I’ve tried it on my iPhone, but result is the same as yours. I’ve also tried checking connectedToBackend property and it is false, so I guess that’s the reason. But I don’t know why it’s not connected, because for other sensors it is true and I can get their readings. --- Artem Sidyakin > On

Re: [Interest] qtwebview with qtwebchannel

2018-09-18 Thread Artem Sidyakin
Glad that you have succeeded. Meanwhile, I’ve done some tests and most importantly finally read the documentation (https://doc.qt.io/qt-5.11/qml-qtwebview-webview.html#url-prop), so loading documents to WebView through qrc:/ is actually not supported. However, it does work on Mac OS :) but I

Re: [Interest] QML Pointer Handlers: how to use 'GrabPermissions'

2018-09-18 Thread Shawn Rutledge
> On 18 Sep 2018, at 14:36, Alexander Ivash wrote: > > Hi Shawn, > > I'm still curious about best practices on implementing use case I > mentioned previously: To refresh memory I need a 'canvas' with some > 'items' inside. Simplified version looks like this: > > ApplicationWindow { >

[Interest] AmbientLightSensor dead on iOS

2018-09-18 Thread Jason H
http://doc.qt.io/qt-5/compatmap.html states that AmbientLightSensor is on iOS. AmbientLightSensor { active: true skipDuplicates: false onReadingChanged: { console.log("lightLevel", reading.lightLevel);

Re: [Interest] IFW issue: HTTP request returns a Not Acceptable

2018-09-18 Thread Kevin Wang
Are you sure your server is serving the correct data now? Like I mentioned, I do not have much experience with web servers. I'm not really sure, as it seems to be a basic web server set up with Bluehost, nothing fancy. All I know is that I uploaded the generated repository via FTP. The

Re: [Interest] IFW issue: HTTP request returns a Not Acceptable

2018-09-18 Thread Thiago Macieira
On Tuesday, 18 September 2018 07:28:51 PDT Kevin wrote: > > Is it possible for you to lighten the restriction on the User-Agent in > > ModSecurity in this case? > > I have tried to disable modsecurity completely to debug this issue, and > it does not help unfortunately. Are you sure your server

Re: [Interest] Qbs-built application deployed with macdeployqt doesn't start

2018-09-18 Thread Mitch Curtis
Ah, thanks. So it seems like there’s not much difference between using a shared library or framework in this case. On 9/18/18, 3:30 PM, "Alexandru Croitor" wrote: Line 29 disables the Qbs Bundle module functionality, in this case "tiled" will be a shared library "tiled.dylib" instead of

Re: [Interest] IFW issue: HTTP request returns a Not Acceptable

2018-09-18 Thread coroberti .
On Tue, Sep 18, 2018 at 5:28 PM, Kevin wrote: > > Thanks for all the responses > > My guess is the "?-915259074 " part of the url is what makes the server fail. > > To prevent caching, you may wish instead to add header: > Cache-Control: no-store > > For the above suggestions, how do I do that

Re: [Interest] IFW issue: HTTP request returns a Not Acceptable

2018-09-18 Thread Kevin
Thanks for all the responses An xml file can be compressed , too  Accept-Encoding is just a hint to the server which compression the client accepts, and the server is free to ignore it. So I doubt that's the issue. I am just uploading whatever the repogen tool created for me. My guess is

Re: [Interest] Qbs-built application deployed with macdeployqt doesn't start

2018-09-18 Thread Alexandru Croitor
Line 29 disables the Qbs Bundle module functionality, in this case "tiled" will be a shared library "tiled.dylib" instead of a framework "tiled.framework". Line 30, see http://doc-snapshots.qt.io/qbs/qml-qbsmodules-cpp.html#sonamePrefix-prop , it's equivalent to

Re: [Interest] QML Pointer Handlers: how to use 'GrabPermissions'

2018-09-18 Thread Alexander Ivash
Hi Shawn, I'm still curious about best practices on implementing use case I mentioned previously: To refresh memory I need a 'canvas' with some 'items' inside. Simplified version looks like this: ApplicationWindow { visible: true width: 640 height: 480 ScrollView {

Re: [Interest] Qbs-built application deployed with macdeployqt doesn't start

2018-09-18 Thread Mitch Curtis
> -Original Message- > From: Interest On > Behalf Of Mitch Curtis > Sent: Tuesday, 18 September 2018 1:34 PM > To: Thorbjørn Lindeijer ; interest@qt-project.org > Subject: Re: [Interest] Qbs-built application deployed with macdeployqt > doesn't start > > > > > -Original

Re: [Interest] Qbs-built application deployed with macdeployqt doesn't start

2018-09-18 Thread Mitch Curtis
> -Original Message- > From: Interest On > Behalf Of Thorbjørn Lindeijer > Sent: Tuesday, 18 September 2018 12:23 PM > To: interest@qt-project.org > Subject: Re: [Interest] Qbs-built application deployed with macdeployqt > doesn't start > > On Tue, Sep 18, 2018, at 10:24, Mitch Curtis

Re: [Interest] Qbs-built application deployed with macdeployqt doesn't start

2018-09-18 Thread Thorbjørn Lindeijer
On Tue, Sep 18, 2018, at 10:24, Mitch Curtis wrote: > I’m getting the following error message when trying to launch my Qbs- > built application that has been deployed with macdeployqt: > > Dyld Error Message: > Library not loaded: @rpath/QtCore.framework/Versions/5/QtCore > Referenced from:

[Interest] Qbs-built application deployed with macdeployqt doesn't start

2018-09-18 Thread Mitch Curtis
I’m getting the following error message when trying to launch my Qbs-built application that has been deployed with macdeployqt: Dyld Error Message: Library not loaded: @rpath/QtCore.framework/Versions/5/QtCore Referenced from: /Volumes/*/slate.app/Contents/MacOS/slate Reason: image not

Re: [Interest] IFW issue: HTTP request returns a Not Acceptable

2018-09-18 Thread coroberti .
On Tue, Sep 18, 2018 at 9:59 AM, Kai Koehne wrote: > > >> -Original Message- >> From: Interest On >> Behalf Of Kevin Wang >> Sent: Tuesday, September 18, 2018 1:33 AM >> To: Qt Project >> Subject: [Interest] IFW issue: HTTP request returns a Not Acceptable >> >> Hi All, >> >> >> I am

Re: [Interest] IFW issue: HTTP request returns a Not Acceptable

2018-09-18 Thread Mårten Nordheim
Hey, I used curl a bit to test things out with the address you provided. The request is rejected by "Mod_Security" seemingly due to the User-Agent. The options here are limited since it seems IFW doesn't let you change User-Agent ( https://bugreports.qt.io/browse/QTIFW-671 ). Is it possible

Re: [Interest] IFW issue: HTTP request returns a Not Acceptable

2018-09-18 Thread Kai Koehne
> -Original Message- > From: Interest On > Behalf Of Kevin Wang > Sent: Tuesday, September 18, 2018 1:33 AM > To: Qt Project > Subject: [Interest] IFW issue: HTTP request returns a Not Acceptable > > Hi All, > > > I am attempting to utilize the Qt Installer Framework for our