Re: [Development] FreeBSD / Clang / Raspberry Pi

2016-05-17 Thread Ralf Nolden
Hi Sylvain, You may want to get in contact with Oleksandr who has also done a porting: http://kernelnomicon.org/?p=598 Olelksandr is in the process of merging his additions to the dev branch while I'm doing the ports integration in the meanwhile by using patches to the freebsd ports at https://

[Development] New Qt 5.7.0 RC snapshot available

2016-05-17 Thread Jani Heikkinen
Hi all, New Qt 5.7.0 RC snapshot available Windows: http://download.qt.io/snapshots/qt/5.7/5.7.0-rc/456/ Linux: http://download.qt.io/snapshots/qt/5.7/5.7.0-rc/424/ Mac: http://download.qt.io/snapshots/qt/5.7/5.7.0-rc/354/ src: http://download.qt.io/snapshots/qt/5.7/5.7.0-rc/latest_src/subm

[Development] FreeBSD / Clang / Raspberry Pi

2016-05-17 Thread Sylvain Garrigues
Hello, I have ported Qt 5.6 to FreeBSD / Raspberry Pi and would like to share my config. I have a question though. I have created a « device » mkspec (mkspecs/device/freebsd-rasp-pi-clang/ to follow the scheme) and I am using it with '-platform freebsd-clang -device freebsd-rasp-pi-clang’ bu

Re: [Development] QML Signal handlers order.

2016-05-17 Thread filippocucchetto
On martedì 17 maggio 2016 17:58:27 CEST Sorokin Vasiliy wrote: > Hello. > > Example: > > MyButton.qml > > import QtQuick 2.5 > > import QtQuick.Controls 1.4 > > > Button { > > onClicked: { > > console.log("inner") > > } > > } > > > mail.qml > > import QtQuick 2.5 > > i

[Development] QML Signal handlers order.

2016-05-17 Thread Sorokin Vasiliy
Hello. Example: MyButton.qml import QtQuick 2.5 import QtQuick.Controls 1.4 Button { onClicked: { console.log("inner") } } mail.qml import QtQuick 2.5 import QtQuick.Window 2.2 import QtQuick.Controls 1.4 Window { visible: true MyButton { text: "O

[Development] QML Signal handlers order.

2016-05-17 Thread Sorokin Vasiliy
Hello. Example: MyButton.qml import QtQuick 2.5 import QtQuick.Controls 1.4 Button { onClicked: { console.log("inner") } } mail.qml import QtQuick 2.5 import QtQuick.Window 2.2 import QtQuick.Controls 1.4 Window { visible: true MyButton { text: "O

[Development] [HEADS UP]: gerrit notification mails lost

2016-05-17 Thread Oswald Buddenhagen
somewhen in the last days, gerrit started to silently fail to send most notification mails. the problem was "fixed" with a restart, but the already missed notifications are lost. so it is a good idea to check your dashboard for recent activity if you're usually relying on a notification-based workf

Re: [Development] dev CI integration stuck for 3½ days

2016-05-17 Thread Oswald Buddenhagen
On Tue, May 17, 2016 at 06:08:50AM +, Simon Hausmann wrote: > I just looked into it and it looks like an inconsistency in the gerrit > database. The latest builds branch points to a set of changes that are in > staged state, while the change that is in integrating change is not in that > bra

Re: [Development] Bluetooth Services problem

2016-05-17 Thread Matías Néstor Ares
Hello Alex, nice to meet you. I'm working on an android app right now. The issue is the same in many devices, (tablets and phones). I'm using QT 5.6.0 and 5.6.1 using android NDK r10e version (I will update to 11) Both, I downloaded from http://download.qt.io/snapshots/qt/5.6/ *How do I check the

Re: [Development] QVariant performance

2016-05-17 Thread Marc Mutz
On Monday 16 May 2016 12:52:57 Sean Harmer wrote: > We have a WIP to replace the use of QVariant on the backend of Qt 3D but > it would benefit all of Qt (including Qt 3D frontend to backend change > notifications) if we can also improve the locking behaviour of QVariant. > We have some ideas here