It is currently Wed Jul 24, 2024 12:25 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 6 posts ] 
Author Message
 Post subject: Help for Tupi.
PostPosted: Mon Sep 02, 2013 12:47 pm  (#1) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2260
Location: Poland
Tupi runs a fundraiser on Kickstarter to boost development
http://libregraphicsworld.org/blog/entry/tupi-runs-a-fundraiser-on-kickstarter-to-boost-development

Has anyone attempted to build for Windows?
Question to the experts QT (Mattia Basaglia or Rod):
What is the one mistake?


Attachments:
Error Tupi for Windows 1.png
Error Tupi for Windows 1.png [ 43.62 KiB | Viewed 2067 times ]
Error Tupi for Windows 2.png
Error Tupi for Windows 2.png [ 28.34 KiB | Viewed 2067 times ]

_________________
Image

Slava
Ukraini!
Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: Help for Tupi.
PostPosted: Tue Sep 03, 2013 11:23 am  (#2) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2260
Location: Poland
I think QT 5 creates a problem - is to be used QT 4 ?
[http://qt-project.org/wiki/Transition_from_Qt_4.x_to_Qt5]
Qt::escape is deprecated

    error: 'escape' is not a member of 'Qt'

So you would change the following block:

        if (result == QString())
            result = Qt::escape(val.toString());
        else
            result = Qt::escape(result);
        return result;

to

        if (result == QString())
            result = QString(val.toString()).toHtmlEscaped();
        else
            result = QString(result).toHtmlEscaped();
        return result;

Someone tried to compile Tupi - in Linux ?
With what result ? In what version of QT ?

_________________
Image

Slava
Ukraini!


Top
 Post subject: Re: Help for Tupi.
PostPosted: Tue Sep 03, 2013 1:12 pm  (#3) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14728
Location: USA
Hi MareroQ. I have not tried to compile this for Windows with QT. Where did you obtain the source?
Is it available at GITHUB?

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Help for Tupi.
PostPosted: Wed Sep 04, 2013 10:47 am  (#4) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2260
Location: Poland
Last Change - 2 months ago.
https://github.com/xtingray/tupi

_________________
Image

Slava
Ukraini!


Top
 Post subject: Re: Help for Tupi.
PostPosted: Wed Sep 04, 2013 10:55 am  (#5) 
Offline
GimpChat Member
User avatar

Joined: Sep 22, 2012
Posts: 2089
Location: US
MareroQ wrote:
Last Change - 2 months ago.
https://github.com/xtingray/tupi


Hi Marero! I read about Tupi. My understanding is that the devs recomment to build with Qt 4.7 exclusively.
So whoever tried to compile it with Qt 5 made a mistake.
The devs also say that the current git version is under intensive development and they are releasing updated version every week.
Compiling every week is quite a commitment for anyone.
Tupi team has some interesting ideas but so far they remain to be just exactly that, the ideas.
If you need vector based 2D animator today - Synfig Studio is well known to 2d animators free OSS with well established legacy.


Top
 Post subject: Re: Help for Tupi.
PostPosted: Wed Sep 04, 2013 11:24 am  (#6) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2260
Location: Poland
Thanks for Your comment and clarification.
I will try with QT 4.7 - on the weekend (but I think I'll start with Linux - Ubuntu
http://www.maefloresta.com/portal/lucid)

_________________
Image

Slava
Ukraini!


Top
Post new topic Reply to topic  [ 6 posts ] 

All times are UTC - 5 hours [ DST ]



* Login  



Powered by phpBB3 © phpBB Group