Re: [Development] Qt 4.8.6 Release Plans

2013-08-13 Thread Thiago Macieira
On quarta-feira, 14 de agosto de 2013 13:15:42, Jonathan Liu wrote: > Are there any plans for a Qt 4.8.6 release in the near future? There are no plans to stop releasing 4.8 so far. There are 94 changes post 4.8.5 already, so I'd guess we are releasing. I don't know for how long: we're going to

Re: [Development] Proposal: Allow contributors to +1 sanity review.

2013-08-13 Thread André Pönitz
On Tue, Aug 13, 2013 at 10:45:21AM -0700, Thiago Macieira wrote: > On terça-feira, 13 de agosto de 2013 10:26:42, Alan Alpert wrote: > > > (or because they enjoy outsmarting the system just for the sake > > > of it, like you apparently do) > > > > We *define* the system. The fact that I have to wo

Re: [Development] Proposal: Allow contributors to +1 sanity review.

2013-08-13 Thread André Pönitz
On Tue, Aug 13, 2013 at 10:51:17AM -0700, Alan Alpert wrote: > On Tue, Aug 13, 2013 at 10:45 AM, Thiago Macieira > wrote: > > On terça-feira, 13 de agosto de 2013 10:26:42, Alan Alpert wrote: > >> > (or because they enjoy outsmarting the system just for the sake > >> > of it, like you apparently d

Re: [Development] Qt 5.1.1 RC - Release Testing

2013-08-13 Thread Jake Petroules
Yes, apps crashing on startup is a known issue: https://bugreports.qt-project.org/browse/QTBUG-31803 The style seems off because the wrong font is used. I've fixed this for Qt 4.8.6: https://bugreports.qt-project.org/browse/QTBUG-32789 and we will fix for Qt 5 soon enough. -- Jake Petroules Ch

Re: [Development] Using QCollator on different platforms, without ICU

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 19:50:23, Aleix Pol wrote: > It's not pretty and we'll probably want to iterate over the API, but here's > the status: > - icu: everything works wonderful. Unicorns. > - posix: you can't select either the algorithm or any of the settings. It's > using the system

Re: [Development] Proposal: Allow contributors to +1 sanity review.

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 10:51:17, Alan Alpert wrote: > I run into it fairly often. > https://codereview.qt-project.org/#q,reviewer:aalpert%2540blackberry.com+sta > tus:merged,n,z shows five times this month that it needed to be overridden > in my > reviews. > > > When it does, we can

[Development] Using QCollator on different platforms, without ICU

2013-08-13 Thread Aleix Pol
Hi, So since we're a bit stuck on that area, I guessed that it would be a good idea to start to get our hands dirty. I started an approximation to the project by implementing the different API bits using the different platforms native API. You can find where I got to in by: git clone git://anongi

Re: [Development] Proposal: Allow contributors to +1 sanity review.

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 10:26:42, Alan Alpert wrote: > > (or because they enjoy outsmarting the system just for the sake > > of it, like you apparently do) > > We *define* the system. The fact that I have to work around it in > order to do my job properly shows that the system is defe

Re: [Development] OpenSSL certificate validation

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 19:11:16, Florian Weimer wrote: > // Initialize peer verification. > if (configuration.peerVerifyMode == QSslSocket::VerifyNone) { > q_SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, 0); > } else { > q_SSL_CTX_set_verify(ctx, SSL_VERIFY

Re: [Development] QApplication startup is a lot slower in Qt5 than Qt4

2013-08-13 Thread Jiergir Ogoerg
Thanks, hoping it won't take a year+ to merge. On Tue, Aug 13, 2013 at 7:07 PM, Thiago Macieira wrote: > On segunda-feira, 12 de agosto de 2013 21:59:18, Jiergir Ogoerg wrote: > > Thanks, I installed both binary and from source qt 5.1.1 that was > announced > > half a day ago on this mailing lis

Re: [Development] epoll event dispatcher

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 19:09:36, Florian Weimer wrote: > >> that doesn't explain why we didn't bulk-fix it. > > > > Oh, sorry. I just meant to give Florian a direct link to the actual rules. > > He said he was copying from related code, so he hadn't probably yet found > > the rules.

Re: [Development] [Call for action] report duplicate JIRA & gerrit accounts

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 18:17:03, Oswald Buddenhagen wrote: > i might be able to entirely detach the account from jira (or rather, the > crowd authenticator) - after all, gerrit creates all those detached zombie > accounts for misspelled reviewers on the command line, so it must be > p

Re: [Development] epoll event dispatcher

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 18:11:50, Oswald Buddenhagen wrote: > > Better yet: http://qt-project.org/wiki/Qt_Coding_Style > > that doesn't explain why we didn't bulk-fix it. Oh, sorry. I just meant to give Florian a direct link to the actual rules. He said he was copying from related c

Re: [Development] [Call for action] report duplicate JIRA & gerrit accounts

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 18:05:18, Oswald Buddenhagen wrote: > if you are an active contributor and have redundant dead accounts > (typically due to changing the employer), please report them to me, so i > can properly disable them - they are confusing other people who want to > assign

Re: [Development] QApplication startup is a lot slower in Qt5 than Qt4

2013-08-13 Thread Thiago Macieira
On segunda-feira, 12 de agosto de 2013 21:59:18, Jiergir Ogoerg wrote: > Thanks, I installed both binary and from source qt 5.1.1 that was announced > half a day ago on this mailing list and get same results: qt4 "QApplication > app(argc, argv)" executes 2-3 times faster on same computer than Qt5.

Re: [Development] OpenSSL certificate validation

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 14:21:24, Florian Weimer wrote: > On 08/13/2013 01:55 PM, Florian Weimer wrote: > > network/ssl/qsslsocket_openssl.cpp contains these lines in > > > > QSslSocketBackendPrivate::initSslContext(): > > // Register a custom callback to get all verification err

Re: [Development] epoll event dispatcher

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 13:54:36, Oswald Buddenhagen wrote: > > Hmm. I think the patch more or less follows the existing practice in > > the changed files. It appears they haven't been cleaned up to match the > > coding standard. > > yes, there is quite some "legacy" coding style

Re: [Development] qmlbundle vs Qt Resource System

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 12:40:20, Thomas Hartmann wrote: > My conclusion would be to deprecate qmlbundle, since it is not really > documented and supported (especially from the tooling side) and it does > not seem to have any genuine advantage, while .qrc files and .rcc files > have be

Re: [Development] Android missing SONAME in lib's causes

2013-08-13 Thread Thiago Macieira
On terça-feira, 13 de agosto de 2013 13:39:57, Stephen Kelly wrote: > Set the SONAME to the library name without the major > version number appended, as android does not have the versioned > symlinks. By the way, please note that "Android does not have the versioned symlinks" is a false statem

Re: [Development] Android missing SONAME in lib's causes

2013-08-13 Thread Stephen Kelly
On Tuesday, August 13, 2013 04:20:23 BogDan wrote: > HUH ?!?! > Doesn't it change the SONAME to libQt5.so.5.1 instead lib.so ? No. I don't know of any platform that uses maj.min at the end of the SONAME. >From the commit message: Set the SONAME to the library name without the major ver

Re: [Development] Android missing SONAME in lib's causes

2013-08-13 Thread Stephen Kelly
On Tuesday, August 13, 2013 04:04:40 BogDan wrote: > > Bogdan, how does https://codereview.qt-project.org/#change,61330 break the > > qt creator plugin? > > Hi, > > It breaks it because QTC plugin expects that .so libs to end with ".so" and > we need to synchronize the new QTC with Qt 5.2 release