Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-10-21 Thread Ziller Eike
On 20.10.2013, at 21:34, qtnext qtn...@gmail.com wrote: I use now Qt5.1.1, try to erase all Qt4 lib in my mac .. And I have always the same trouble. When I start macdeploy with verbose=2, I have the following error : ERROR: no file at

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-10-20 Thread qtnext
I use now Qt5.1.1, try to erase all Qt4 lib in my mac .. And I have always the same trouble. When I start macdeploy with verbose=2, I have the following error : ERROR: no file at /Library/Frameworks/QtScript.framework/Versions/4/QtScript ERROR: no file at

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-28 Thread Sorvig Morten
These kinds of errors can usually be diagnosed by increasing the output verbosity a bit. Try running macdeployqt myapp.app -verbose=2. Where does the reference to QtScript come from? Morten On Aug 25, 2013, at 10:45 AM, qtnext qtn...@gmail.com wrote: is there any chance that maceployqt will

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-26 Thread Jan Farø
On 26/08/2013, at 01.36, Robert Knight robertkni...@gmail.com wrote: The time has come to focus on UI details, and this is where Qt gives me grey hairs. I started out developing in Qt 4.8, and experienced several issues that didn’t work on the Mac (From the top of my head: Overlays on video

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-25 Thread qtnext
is there any chance that maceployqt will be fixed for qt 5.1.1 ? 2013/8/11 qtnext qtn...@gmail.com It works for me for a Quick2 application, but I have tried the same for a Widget Opengl QT5 application and When I launch macdeployqt I have the following error : ERROR: no file at

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-25 Thread Thiago Macieira
On domingo, 25 de agosto de 2013 10:45:40, qtnext wrote: is there any chance that maceployqt will be fixed for qt 5.1.1 ? I doubt it. It's too late for 5.1.1 now. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center signature.asc

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-25 Thread Robert Knight
The time has come to focus on UI details, and this is where Qt gives me grey hairs. I started out developing in Qt 4.8, and experienced several issues that didn’t work on the Mac (From the top of my head: Overlays on video widgets), or just looked plain wrong in Mac OS context (For example:

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-11 Thread qtnext
It works for me for a Quick2 application, but I have tried the same for a Widget Opengl QT5 application and When I launch macdeployqt I have the following error : ERROR: no file at /Library/Frameworks/QtScript.framework/Versions/4/QtScript ERROR: no file at

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-08 Thread Jake Thomas Petroules
What we really need is to complete the Relocatable Qt project and use @rpath in the install names of Qt frameworks. Then macdeployqt would not need to exist, or would consist merely of a bunch of copy commands. -- Jake Petroules Chief Technology Officer Petroules Corporation ·

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-06 Thread qtnext
I always package the qml in a ressource file. That is not the issue Le mardi 6 août 2013, Rutledge Shawn a écrit : On 5 Aug 2013, at 9:37 PM, qtnext wrote: I have tryed various fix (script to fix // issue, macdeployqt from git instead of native one, but at end it don't works ... ) hopes it

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-06 Thread R. Reucher
On Tuesday 06 August 2013 09:57:42 qtnext wrote: I always package the qml in a ressource file. That is not the issue It's the QML imports that aren't deployed properly, but that's already an issue in Qt 4. I fixed that with the attached script that's called after macdeployqt... HTH, René

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-06 Thread qtnext
I don't need macdeployqt to build a complete .app ? I come from windows so mac dev is for me a little bit exotic and i was sure that i need macdeployqt ? How can i create a complete file with qmake ? From qt creator? Or command line ? Le mardi 6 août 2013, Rutledge Shawn a écrit : On 6 Aug

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-05 Thread qtnext
and to start ... just be able to deploy a qt quick2 application on mac ... macdeployqt is broken for 5.1 and it seems that nobody care about it... 2013/7/12 Jan Farø jan.fa...@gmail.com Hi all, this is basically a copy of a post I made on http://qt-project.org/forums, and I was encouraged

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-05 Thread Thiago Macieira
On segunda-feira, 5 de agosto de 2013 18:20:45, qtnext wrote: macdeployqt is broken for 5.1 and it seems that nobody care about it... Has the issue been reported? -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center signature.asc

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-05 Thread qtnext
https://bugreports.qt-project.org/browse/QTBUG-29495 https://bugreports.qt-project.org/browse/QTBUG-32379 Le lundi 5 août 2013, Thiago Macieira a écrit : On segunda-feira, 5 de agosto de 2013 18:20:45, qtnext wrote: macdeployqt is broken for 5.1 and it seems that nobody care about it...

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-05 Thread Thiago Macieira
On segunda-feira, 5 de agosto de 2013 20:04:44, qtnext wrote: https://bugreports.qt-project.org/browse/QTBUG-29495 Thank you. This one is about deploying a QtQuick-based application. My guess is that the plugins weren't deployed. I believe you have to tell macdeployqt which plugins you want to

Re: [Development] Puzzled by desktop development priorities, Mac OS specifically [Warning: Rant]

2013-08-05 Thread qtnext
I have tryed various fix (script to fix // issue, macdeployqt from git instead of native one, but at end it don't works ... ) hopes it will be fix in the near future :) Le lundi 5 août 2013, Thiago Macieira a écrit : On segunda-feira, 5 de agosto de 2013 20:04:44, qtnext wrote: