Re: [Development] Bringing Qt's high-dpi support to more platforms

2014-05-26 Thread Friedemann Kleint
Hi, for Desktop Windows, this is tracked by https://bugreports.qt-project.org/browse/QTBUG-38993 . On Windows, the application can choose between several levels of DPI-Awareness. The idea is right now to leave the choice to the programmer and make sure Qt does not get in the way and does

[Development] FYI: first Qt5.3.1 snapshot available

2014-05-26 Thread Heikkinen Jani
Hi all, First snapshot from stable branch (Qt5.3.1) available here: http://download.qt-project.org/snapshots/qt/5.3/5.3.1/2014-05-23_96/ Br, Jani ___ Development mailing list Development@qt-project.org

Re: [Development] The rowsAboutToBeRemoved signal in ListModel

2014-05-26 Thread Ben Lau
Reported: [#QTBUG-39279] ListModel : rowsAboutToBeRemoved is emitted after the row's removal - Qt Bug Trackerhttps://bugreports.qt-project.org/browse/QTBUG-39279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel On 23 May 2014 19:30, Kuba Ober k...@mareimbrium.org wrote:

Re: [Development] New branching scheme (was: RE: HEADS UP: Qt 5.3.0 - merge stable into release)

2014-05-26 Thread Heikkinen Jani
Hi all, I shortly discussed with Lars about how we proceed. First steps are to close current release branch rename it to 5.3.0. Merge from release to stable is done already. Creating 5.3 branch etc will most probably happen in Qt CS. Qt 5.3.1 can be branched from stable when needed if new

Re: [Development] Bringing Qt's high-dpi support to more platforms

2014-05-26 Thread Sorvig Morten
On 23 May 2014, at 18:30, Thiago Macieira thiago.macie...@intel.com wrote: Em sex 23 maio 2014, às 07:20:42, Sorvig Morten escreveu: Adding support to QtWayland looks like a win to me. Do we want to add platform-indepent support to Qt? I think my question is: why wouldn't we? The platform

Re: [Development] Bringing Qt's high-dpi support to more platforms

2014-05-26 Thread Sorvig Morten
On 26 May 2014, at 07:59, Ziller Eike eike.zil...@digia.com wrote: On May 23, 2014, at 6:03 PM, m...@rpzdesign.com wrote: Sorvig: From the latest new front: http://bgr.com/2014/03/18/nexus-9-specs-details/ Digitimes on Tuesday cited its own research arm in reporting that Google

Re: [Development] Bringing Qt's high-dpi support to more platforms

2014-05-26 Thread m...@rpzdesign.com
Morten: Hopefully you are going to developer days in Berlin this summer. And Hopefully you are giving a presentation that will be available on youtube titled, Qt Quick Developer Quick Start to developing QML Opengl Core Graphics Code for Android and IOS on 5.3+ I think you guys who are veterans

Re: [Development] Bringing Qt's high-dpi support to more platforms

2014-05-26 Thread Thiago Macieira
Em seg 26 maio 2014, às 09:04:28, m...@rpzdesign.com escreveu: Hopefully you are going to developer days in Berlin this summer. And Hopefully you are giving a presentation that will be available on youtube titled, Qt Quick Developer Quick Start to developing QML Opengl Core Graphics Code for

Re: [Development] Bringing Qt's high-dpi support to more platforms

2014-05-26 Thread m...@rpzdesign.com
Thiago: Maybe you could broach the subject at the contributors summit that maybe the group could share in a public way best practices and lessons learned so others can jump into a build/debug contributory role quicker. I recently reported a bug to the QT bug tracker and the very nice people at

Re: [Development] Bringing Qt's high-dpi support to more platforms

2014-05-26 Thread Thiago Macieira
Em seg 26 maio 2014, às 13:05:50, m...@rpzdesign.com escreveu: Thiago: Maybe you could broach the subject at the contributors summit that maybe the group could share in a public way best practices and lessons learned so others can jump into a build/debug contributory role quicker. No need.

[Development] Enginio build artifacts and naming conventions

2014-05-26 Thread Stephen Kelly
Hello, This tweet was brought to my attention: https://twitter.com/Korchkidu/status/470850176366968832 and it is true that the cmake files generated contain the incorrect filename, compared to the actual files shipped. The Enginio files are called something like libEnginio.so.1.0.5

Re: [Development] Enginio build artifacts and naming conventions

2014-05-26 Thread Sergio Ahumada
El 26/05/14 20:54, Stephen Kelly escribió: Hello, This tweet was brought to my attention: https://twitter.com/Korchkidu/status/470850176366968832 and it is true that the cmake files generated contain the incorrect filename, compared to the actual files shipped. The Enginio files are

[Development] Proposal: removing the release branches after the release

2014-05-26 Thread Thiago Macieira
I've just seen that all the Qt repositories got a 5.3.0 branch (including those for which a release not called 5.3.0 was produced). I'm proposing to reverse that. There's no point in having those branches, since after the code is tagged and released. There will never be any change to the code

Re: [Development] Bringing Qt's high-dpi support to more platforms

2014-05-26 Thread Daiwei Li
I took a stab at adding high DPI support to Android and created a review here: https://codereview.qt-project.org/#change,86260. I would appreciate any feedback (e.g. what tests need to be added, what other corner cases need to scaled, etc...), especially seeing as I'm not an Android or Qt HiDPI

Re: [Development] Bringing Qt's high-dpi support to more platforms

2014-05-26 Thread Portale Alessandro
From: Sorvig Morten [morten.sor...@digia.com] Sent: Monday, May 26, 2014 14:03 On 23 May 2014, at 18:30, Thiago Macieira thiago.macie...@intel.com wrote: Em sex 23 maio 2014, às 07:20:42, Sorvig Morten escreveu: Adding support to QtWayland looks like a win to me. Do we want to add

[Development] split() and replace() methods SEGFAULT

2014-05-26 Thread Zoltán Balogh
Hi, During the Qt5.3 migration work we have been biten by a strange bug: https://bugreports.qt-project.org/browse/QTBUG-39255 The issue effect armhf platforms and confirmed on Android too. example1: import QtQuick 2.0 Item {Component.onCompleted: bla.replace(/\w/g, function(a){ return

Re: [Development] split() and replace() methods SEGFAULT

2014-05-26 Thread Hausmann Simon
You're right, Gatis ran into the same issue. Seems arm jit specific, he made a nice js only test case. (see 39289) Simon Opprinnelig melding Fra: Zoltán Balogh Sendt: 07:50 tirsdag 27. mai 2014 Til: development@qt-project.org Emne: [Development] split() and replace() methods SEGFAULT Hi,