Re: [Interest] X86 64 bit Qt5.4 Alpha build error

2014-10-20 Thread Ramakanthreddy Kesireddy
Thanks for your input. If I run make -j1, it fails with below error. Am I missing anything further? using python: /usr/bin/python version: 2.7.6 (default, Mar 22 2014, 22:59:56) [GCC 4.8.2] Using extra options found in

Re: [Interest] Loading QML plugins without registered types

2014-10-20 Thread Bo Thorsen
Den 19-10-2014 kl. 21:15 skrev Oleg Shparber: I have a plugin which does not provide any QML types and needs only initializeEngine() method to be executed. The problem is that the plugin is not registered with QML Engine when it doesn't have any types. That leads to an error with import

Re: [Interest] X86 64 bit Qt5.4 Alpha build error

2014-10-20 Thread Koehne Kai
-Original Message- From: Ramakanthreddy Kesireddy [..] ../../../src/3rdparty/chromium/sandbox/linux/services/credentials.cc:12:28: fatal error: sys/capability.h: No such file or directory #include sys/capability.h ^ compilation terminated. IIRC you

Re: [Interest] Qt5 QCoreApplication crashes

2014-10-20 Thread Koehne Kai
-Original Message- From: interest-bounces+kai.koehne=theqtcompany@qt-project.org [mailto:interest-bounces+kai.koehne=theqtcompany@qt-project.org] On Behalf Of Tamas Nagy Sent: Monday, October 20, 2014 7:19 AM To: interest@qt-project.org Subject: [Interest] Qt5

Re: [Interest] Loading QML plugins without registered types

2014-10-20 Thread Oleg Shparber
My plugin [1] provides new functions on the global object. So, it only needs QQmlEngine to export all of its stuff. It does not have any QML types, but it is still meant to be used in QML only apps too. 1. https://github.com/trollixx/node.qml/blob/master/src/imports/nodeqml/nodeqml_plugin.cpp On

Re: [Interest] Qt5 QCoreApplication crashes

2014-10-20 Thread Thiago Macieira
On Monday 20 October 2014 07:18:53 Tamás Nagy wrote: In spite of the empty main, it crashes randomly: 0x770a000c cc int3 That's a debug breakpoint in your application. Those should never appear in actual code, they should only be inserted by the debugger. Your toolchain is pretty broken if

[Interest] Qt5 and (lack of!) font rendering quality (Linux/X11)

2014-10-20 Thread René J . V . Bertin
I posted this on the Qt forums earlier, but it was suggested to repost here: I’m a bit of a font freak, so I have “bohoomil”‘s Ultimate version of the Infinality patches to libfreetype6 and fontconfig installed. It does wonders to my KDE4-based desktop, giving text a quality that’s just about

Re: [Interest] Qt5 and (lack of!) font rendering quality (Linux/X11)

2014-10-20 Thread Vadim Peretokin
It's not a bug, it's a feature! That is what I was told. Apparently Qt4 was getting the font boldness wrong and they fixed it in Qt5. Not sure if user experience was ever factored into the decision. Search Google for Qt5 font rendering, you will find that lots of other people have already ran

Re: [Interest] Apps crashing with ios8

2014-10-20 Thread Christophe Thomas
hello, I've move to 5.4, and also made some more test trying to find where and why my app was crashing. It finally turned out it was all our code fault, due to a NULL pointer somewhere. Thx all Chris, 2014-10-18 7:24 GMT+02:00 Christophe THOMAS oxygen77...@gmail.com: Do you mean when you

[Interest] more Qt font observations

2014-10-20 Thread René J . V . Bertin
Already evoked in my previous email about font rendering quality under Qt5/X11. here are 2 more font-related issues I opened https://bugreports.qt-project.org/browse/QTBUG-41710 https://bugreports.qt-project.org/browse/QTBUG-41711 The 2nd one is an especially annoying one. R.

Re: [Interest] Qt5 and (lack of!) font rendering quality (Linux/X11)

2014-10-20 Thread René J . V . Bertin
On Tuesday October 21 2014 05:45:51 Vadim Peretokin wrote: It's not a bug, it's a feature! That is what I was told. Apparently Qt4 was getting the font boldness wrong and they fixed it in Qt5. Not sure if user Yes, it does. Under OS X. Not under Linux, where Qt4 gives me perfect light,

Re: [Interest] Qt5 and (lack of!) font rendering quality (Linux/X11)

2014-10-20 Thread Mark Gaiser
On Mon, Oct 20, 2014 at 10:11 PM, René J.V. rjvber...@gmail.com wrote: On Tuesday October 21 2014 05:45:51 Vadim Peretokin wrote: It's not a bug, it's a feature! That is what I was told. Apparently Qt4 was getting the font boldness wrong and they fixed it in Qt5. Not sure if user Yes, it

[Interest] QSGGeometryNode painting with two different colours

2014-10-20 Thread Nuno Santos
Hi, I’m using scene graph to render to make a sequencing matrix. I have extended QQuickItem for the main class and i’m making several nodes for the various parts that compose the matrix. One of the parts, that I was intending to put on a single node is the keyboard keys which are black and

Re: [Interest] Qt5 and (lack of!) font rendering quality (Linux/X11)

2014-10-20 Thread Vadim Peretokin
That seems to be unrelated to the font boldness issue I see in Qt5. Just another artefact of the font rewrite in Qt5 introducing issues. On Tue, Oct 21, 2014 at 6:45 AM, Mark Gaiser mark...@gmail.com wrote: On Mon, Oct 20, 2014 at 10:11 PM, René J.V. rjvber...@gmail.com wrote: On Tuesday

Re: [Interest] Qt5 and (lack of!) font rendering quality (Linux/X11)

2014-10-20 Thread Allan Sandfeld Jensen
It sounds like you have a messy font setup. There is no difference between how KDE 4 or 5 sets fonts options (through fontconfig), which is also how Qt reads it. If were running in a GNOME or UNITY shell though, Qt would pick font- settings from XSettings that those desktop uses. Selection

[Interest] Qt/ iOS ready for 64bit?

2014-10-20 Thread Jason H
It seems that Apple will require all app submissions to be 64bit as of February 2015. ( http://arstechnica.com/apple/2014/10/apple-beginning-february-2015-app-store-submissions-need-to-be-64-bit/ ) Is Qt 5.3 or 5.4 ready? ___ Interest mailing list

Re: [Interest] QSGGeometryNode painting with two different colours

2014-10-20 Thread Gunnar Sletta
On 20 Oct 2014, at 23:16, Nuno Santos nunosan...@imaginando.pt wrote: Hi, I’m using scene graph to render to make a sequencing matrix. I have extended QQuickItem for the main class and i’m making several nodes for the various parts that compose the matrix. One of the parts, that I