Re: [Development] Qt4.8.x, qdoc3 not available Qt env variables from *.qdocconf file

2012-11-29 Thread Denis Shienkov
30.11.2012, 02:31, "Lincoln Ramsay" : >docs_target.commands = "$$set QTDOC=$$QTDOC && $$QDOC3 $$QDOCCONF" Also this solution on Windows does not work either. I already checked... When is this solution, Makefile contains a target: ... docs: set QTDOC=G:/Qt/Qt4.8.3/doc && G:\Qt\Qt4.8.3\bin

Re: [Development] Branching 5.0

2012-11-29 Thread Joseph Crowell
dev, testing and release are pretty standard in most open source communities (including every major linux flavor) and would avoid the mass confusion that will result if you use dev, stable and release. On 30/11/2012 5:10 PM, Anttila Janne wrote: > Laszlo Papp wrote: > >>> On Thu, Nov 29, 2012 at

Re: [Development] Branching 5.0

2012-11-29 Thread Anttila Janne
Laszlo Papp wrote: >> On Thu, Nov 29, 2012 at 8:03 AM, Knoll Lars wrote: >> >> >> I know that branch naming is a possible topic for endless bike >> shedding. You can always find arguments against a certain name here. In >> the end it's not the most important thing whether it's called testing or

Re: [Development] New mailing list: web_AT_qt-project.org created

2012-11-29 Thread Verma Gurudutt
Hi, Finally our this new mailing list is public and archive is open for all. Please join us and help us to make our qt-project.org as best website in the world for community :) -- Best Regards, Gurudutt Verma From: Verma Gurudutt Sent: 27. november 2012 14:52 To: development@qt-project.org

Re: [Development] Branching 5.0

2012-11-29 Thread Laszlo Papp
On Thu, Nov 29, 2012 at 8:03 AM, Knoll Lars wrote: > I know that branch naming is a possible topic for endless bike shedding. > You can always find arguments against a certain name here. In the end it's > not the most important thing whether it's called testing or stable. It's > the meaning that

Re: [Development] Branching 5.0

2012-11-29 Thread d3fault
On 11/29/12, Knoll Lars wrote: > But to shorten this: We've had that discussion a couple of months ago, and > the names mentioned are the ones we in the end agreed to. That discussion was more about the process (which I admit is more important) than the names. I raised the issue then too but got

Re: [Development] Qt 4.8.4 released

2012-11-29 Thread Yang Fan
Congratulations! On Fri, Nov 30, 2012 at 12:12 AM, Taipale Juhani wrote: > Hi! > > ** ** > > I'm happy to announce that Qt 4.8.4 has just been released. ** ** > > ** ** > > See the blog on > http://blog.qt.digia.com/blog/2012/11/29/qt-4-8-4-released/ > > and the changes file at > http:/

[Development] QJsonDocument toJson()

2012-11-29 Thread Michal Dorner
Hi, I just tried to switch from qjson external library to qt5 QJsonDocument and found this: QJsonDocument doc = QJsonDocument::fromJson("{\"user_id\":100}"); qDebug() << doc.toJson(); output: "{ "user_id": 1e+06 } " Any number >= 100 is serialized in exponential format with pre

[Development] http://qt-project.org/wiki/Qt-Add-ons-Modules

2012-11-29 Thread Alan Ezust
On the qt-project wiki, there is a very nice page that discusses add-ons and their status, where to get them, etc. This hasn't been updated since the Qt5 Alpha release. Could someone please revisit and update it please? Thanks ! ___ Development mailing l

Re: [Development] Qt4.8.x, qdoc3 not available Qt env variables from *.qdocconf file

2012-11-29 Thread Lincoln Ramsay
On 29/11/12 22:46, Denis Shienkov wrote: > docs_target.commands = "set QTDOC=$$QTDOC$$escape_expand(\\n\\t)$$QDOC3 > $$QDOCCONF" This won't work. make treats separate "lines" as completely separate commands. You cannot set a variable in one line and use it in another. You must pass all stateme

Re: [Development] Comparing two reals in Qt code

2012-11-29 Thread Sean Harmer
On 29/11/2012 18:34, BRM wrote: >> From: Alan Alpert <4163654...@gmail.com> >> Sent: Thursday, November 29, 2012 11:52 AM >> Subject: Re: [Development] Comparing two reals in Qt code >> >> On Thu, Nov 29, 2012 at 6:53 AM, Sean Harmer wrote: >>> On Thursday 29 November 2012 15:01:05 Dominik Holla

Re: [Development] Comparing two reals in Qt code

2012-11-29 Thread BRM
> From: Alan Alpert <4163654...@gmail.com> > Sent: Thursday, November 29, 2012 11:52 AM > Subject: Re: [Development] Comparing two reals in Qt code > > On Thu, Nov 29, 2012 at 6:53 AM, Sean Harmer wrote: >> On Thursday 29 November 2012 15:01:05 Dominik Holland wrote: >>> Hi all, >>> >>> last

Re: [Development] Qt 4.8.4 released

2012-11-29 Thread Linos
On 29/11/12 17:12, Taipale Juhani wrote: > Hi! > > > > I'm happy to announce that Qt 4.8.4 has just been released. > > > > See the blog on http://blog.qt.digia.com/blog/2012/11/29/qt-4-8-4-released/ > > and the changes file at > http://qt.digia.com/Release-Notes/Release-Notes-Qt-484/ > fo

Re: [Development] Comparing two reals in Qt code

2012-11-29 Thread Alan Alpert
On Thu, Nov 29, 2012 at 6:53 AM, Sean Harmer wrote: > On Thursday 29 November 2012 15:01:05 Dominik Holland wrote: >> Hi all, >> >> last month i had some performance problems on a QML animation running on >> low end hardware (imx233). >> I debugged that problem and it was caused because of roundin

[Development] Reminder: FOSDEM CrossDesktop DevRoom 2013 - Call for Talks

2012-11-29 Thread Pau Garcia i Quiles
Hello, The Call for Talks for the CrossDesktop DevRoom at FOSDEM 2013 is officially open and will close in two weeks (Dec 14th). Where are all the talks about the split repositories, Qt Creator, add-ons, insight on how to develop cross-platform applications, etc? Please submit your talk proposals

[Development] Qt 4.8.4 released

2012-11-29 Thread Taipale Juhani
Hi! I'm happy to announce that Qt 4.8.4 has just been released. See the blog on http://blog.qt.digia.com/blog/2012/11/29/qt-4-8-4-released/ and the changes file at http://qt.digia.com/Release-Notes/Release-Notes-Qt-484/ for details. Br, Juhani -- Juhani Taipale Software Specialist - Digia, Qt

Re: [Development] Comparing two reals in Qt code

2012-11-29 Thread Thomas Senyk
On Thu, November 29, 2012 14:53:21 Sean Harmer wrote: > On Thursday 29 November 2012 15:01:05 Dominik Holland wrote: > > Hi all, > > > > last month i had some performance problems on a QML animation running on > > low end hardware (imx233). > > I debugged that problem and it was caused because of

Re: [Development] Comparing two reals in Qt code

2012-11-29 Thread Sean Harmer
On Thursday 29 November 2012 15:01:05 Dominik Holland wrote: > Hi all, > > last month i had some performance problems on a QML animation running on > low end hardware (imx233). > I debugged that problem and it was caused because of rounding errors > during the comparison of two reals. > > I fixed

[Development] Comparing two reals in Qt code

2012-11-29 Thread Dominik Holland
Hi all, last month i had some performance problems on a QML animation running on low end hardware (imx233). I debugged that problem and it was caused because of rounding errors during the comparison of two reals. I fixed that problem by replacing the comparison by a qFuzzyCompare() in the Qt4

Re: [Development] Qt4.8.x, qdoc3 not available Qt env variables from *.qdocconf file

2012-11-29 Thread Denis Shienkov
28.11.2012, 19:33, "1+1=2" : > Maybe you can create a my.qdocconf.in file, then let qmake generating > proper my.qdocconf file for you. Yes, thank you, this way to dynamically generate *.qdocconf files works, but confused by the fact that nowhere in Qt is not used (at least in part qdocconf).

[Development] New playground project

2012-11-29 Thread Jarkko Laitinen
Hi, I sent a message to this mailing list a while ago and got couple of responses. I have developed QCloud, an API that enables integration of Amazon S3 and Windows Azure to Qt applications. The project has been done in conjunction with Digia and Sami Makkonen mentioned this in his presentation at

Re: [Development] Branching 5.0

2012-11-29 Thread Tobias Hunger
On 28.11.2012 20:47, Knoll Lars wrote: > We will have the following policies on the branches: > > * master: > > Transitional only. Will be closed for new pushes once the branches get > created. Patches that are already in gerrit can still be staged for around a > week to allow everybody to stage

Re: [Development] Branching 5.0

2012-11-29 Thread Chris Adams
On a slightly unrelated note... >Because this should be up to module maintainers and there is not so much CI infrastructure to support all the projects under Gerrit Who are the module maintainers, these days? I really don't think that http://qt-project.org/wiki/Maintainers is up to date. Sorry f

Re: [Development] Branching 5.0

2012-11-29 Thread Lorn Potter
On 29/11/2012, at 6:05 PM, Knoll Lars wrote: > > On Nov 29, 2012, at 1:31 AM, Lorn Potter wrote: > >> >> On 29/11/2012, at 5:47 AM, Knoll Lars wrote: >> >>> If maintainers for other repositories would like to get the same branches >>> setup, please speak up and tell Sergio and Janne. Both

Re: [Development] Branching 5.0

2012-11-29 Thread Ahumada Sergio
>> If maintainers for other repositories would like to get the same branches >> setup, please speak up and tell Sergio >> and Janne. Both have agreed to do most of the actual work of creating the >> branches in gerrit and setting up the >> CI system and a big thanks goes to them already now. >>

Re: [Development] Branching 5.0

2012-11-29 Thread Knoll Lars
On Nov 29, 2012, at 1:31 AM, Lorn Potter wrote: > > On 29/11/2012, at 5:47 AM, Knoll Lars wrote: > >> If maintainers for other repositories would like to get the same branches >> setup, please speak up and tell Sergio and Janne. Both have agreed to do >> most of the actual work of creating

Re: [Development] Branching 5.0

2012-11-29 Thread Knoll Lars
I know that branch naming is a possible topic for endless bike shedding. You can always find arguments against a certain name here. In the end it's not the most important thing whether it's called testing or stable. It's the meaning that we as a community associate with the branch name that's im