maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [Announce] cuteTube - A feature-rich YouTube client (https://talk.maemo.org/showthread.php?t=65854)

Trestry 2011-01-15 20:07

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Screenshots look very promising!

joppu 2011-01-15 20:26

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Maybe implement Marina or Reflect as the theme for the QML version? Just create the reference files for the required graphics and let me or someone else fill them out for the actual graphics as AFAIK you can't really copy-paste the Nokia licensed Alpha or Beta theme graphics. It's too bad QML doesn't support system wide look-and-feel, but any theme should be better than the single-color contour buttons. You might need to use a "sliding door" technique for the buttons themselves, or just use make the each size use individual images :)

marxian 2011-01-15 20:44

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Quote:

Originally Posted by joppu (Post 921078)
Maybe implement Marina or Reflect as the theme for the QML version? Just create the reference files for the required graphics and let me or someone else fill them out for the actual graphics as AFAIK you can't really copy-paste the Nokia licensed Alpha or Beta theme graphics. It's too bad QML doesn't support system wide look-and-feel, but any theme should be better than the single-color contour buttons. You might need to use a "sliding door" technique for the buttons themselves, or just use make the each size use individual images :)

The purpose of QML is to enable applications to have a distinctive appearance, so it makes sense to not support the OS look and feel. QML doesn't use widgets, the buttons are created by declaring a rectangle with a child mouse area e.g:

Code:

Rectangle {

    property alias icon: icon.source
    property alias iconWidth: icon.width
    property alias iconHeight: icon.height
    signal buttonClicked

    id: button
    width: 150
    height: 50
    radius: 10
    color: mouseArea.pressed ? "#3399bb" : "black"
    border.width: 2
    border.color: "#3399bb"
    Image {
        id: icon
        anchors.centerIn: button
        width: 50
        height: 50
        smooth: true
    }
    MouseArea {
        id: mouseArea
        anchors.fill: button
        onClicked: buttonClicked()
    }
}

The only images I use for push buttons atm is the icon. I did try some gradient images which looked OK, but I'm no graphic designer. I am more than happy to consider any suggestions on this aspect of the application.

Any images that are used in the application are quite easy to change, as they are located in a ui-images folder, so it is my intention to make the application easy to skin. :)

joppu 2011-01-15 21:32

Re: [Announce] cuteTube - A feature-rich YouTube client
 
QML looks seems comprehend-able even to me, so I might as well look into the UX when you release the source. Does cuteTube need to be compiled in the Nokia's QT Creator in order to test it?

marxian 2011-01-15 21:42

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Quote:

Originally Posted by joppu (Post 921135)
Does cuteTube need to be compiled in the Nokia's QT Creator in order to test it?

Not in its current state. It can be tested using QMLViewer, which you can install on the device. In the release version, it should still be possible to run it using QMLViewer, but any features that rely on C++ code will not be accessible.

NightShift79 2011-01-15 23:05

Re: [Announce] cuteTube - A feature-rich YouTube client
 
I wonder if one could program a simple cutetube desktop-widget...

Brian_7 2011-01-21 01:17

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Hi your app is the best. Can you please add the option to see the star ranking of the vids?. Beacause i realy miss that from youtube and now from your app. I just want to see the star ranking before play a video (in the list of searched videos).


Thanks in advance.

marxian 2011-01-21 12:47

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Quote:

Originally Posted by Brian_7 (Post 925113)
Hi your app is the best. Can you please add the option to see the star ranking of the vids?. Beacause i realy miss that from youtube and now from your app. I just want to see the star ranking before play a video (in the list of searched videos).


Thanks in advance.

The star ratings are deprecated and will eventually be removed from the XML feeds supplied by the YouTube API, therefore I will be sticking to the like/dislike system. I think the ratings are worthless, anyway. Too many trolls and fanboys.

Brian_7 2011-01-21 14:20

Re: [Announce] cuteTube - A feature-rich YouTube client
 
The like/dislike system of youtube isn't bad. But i can not see in the video list if the videos are good. That would be usefull because a lot of videos are just spam (spam = low rating). That's why i use the 0.9.9-7 version of your excellent app. A temporal opcion is fine for me.

Thanks in advanced.

marxian 2011-01-22 00:08

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Update: I've been tweaking the new UI, and have shifted all menu functions to a permanently visible menu bar to reduce clicks. I've also changed the buttons. The top area will be used for notifications (download status etc).

http://img593.imageshack.us/img593/3...pshot1l.th.png http://img717.imageshack.us/img717/5...shot2nq.th.png
http://img257.imageshack.us/img257/7...pshot3b.th.png http://img715.imageshack.us/img715/7...pshot5j.th.png
http://img7.imageshack.us/img7/7796/snapshot6a.th.png


All times are GMT. The time now is 21:34.

vBulletin® Version 3.8.8