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)

Hurrian 2012-09-19 12:51

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Cool, that looks pretty.

Reminds me a lot of the Harmattan version of cuteTube.

Speaking of which, is there an option to use an unthemed cuteTube (or using the Fremantle-style QtComponents for Fremantle), for those who like to have it fit in with the rest of Fremantle?

freemangordon 2012-09-19 12:56

Re: [Announce] cuteTube - A feature-rich YouTube client
 
@marxian: thank for the update.

A little bit OT, but why do you decide to go back to plain Qt? qmltube is working flawlessly. Any particular reason why you didn't use your hildon-qml components?

ivgalvez 2012-09-19 13:32

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Indeed Marxian, you have made an interesting journey from Python to QML and back to C++.

A more in depth explanation would be interesting for a blog entry.

marxian 2012-09-19 14:53

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

Originally Posted by Hurrian (Post 1268998)
Cool, that looks pretty.

Reminds me a lot of the Harmattan version of cuteTube.

Speaking of which, is there an option to use an unthemed cuteTube (or using the Fremantle-style QtComponents for Fremantle), for those who like to have it fit in with the rest of Fremantle?

I'm not sure what you mean. This version uses QtGui, so it behaves like any other application that uses QtGui widgets. The screenshots were taken using the notstock theme, which is why it looks different.

marxian 2012-09-19 15:06

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

Originally Posted by freemangordon (Post 1269006)
@marxian: thank for the update.

A little bit OT, but why do you decide to go back to plain Qt? qmltube is working flawlessly. Any particular reason why you didn't use your hildon-qml components?

I still plan to update qmltube eventually using the Hildon components. The reasons for going back to QtGui and updating this version are:
  1. Some performance issues with popup elements (menus/context menus/dialogs) in the Hildon QML components. I think these can be fairly easily addressed.
  2. I planned to work on a desktop version of cuteTube, and decided to use QtGui for that, so I wanted to familiarise myself with QtGui again. I've since decided not to bother with cuteTube for desktop and instead write a Qt equivalent to JDownloader. I only need the download features for desktop anyway.
  3. I want to move on from cuteTube and focus on other projects. Before I do that, I want to achieve the best results possible, both in terms of performance (where QtGui has an advantage) and features.
  4. For the hell of it. It was painful to use QtGui again at first, but I've since learned to like it.

marxian 2012-09-19 15:21

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

Originally Posted by ivgalvez (Post 1269037)
Indeed Marxian, you have made an interesting journey from Python to QML and back to C++.

A more in depth explanation would be interesting for a blog entry.

I like learning new things. I wrote cuteTube using Python because that was the language I chose to learn in my spare time whilst I was studying OOP using Java. I wrote the QML version because I wanted an improved version and QML looked pretty interesting, whereas C++ seemed forbidding to a relatively inexperienced programmer. After realising the limitations of Javascript, I re-wrote the backend using C++. Finally, I decided to write the entire application using C++.

marxian 2012-09-19 15:29

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

Originally Posted by Acidspunk (Post 1268973)
Some things I've noticed.

I can't seem to change the player to KMPlayer. It always uses media player regardless. It's like it doesn't save the option. Also, how do you mark several videos from a list in this version? I couldn't figure it out.

The media player setting works for me. Are you pressing the 'Save' button in the dialog after changing the option? If so, check the config file at /home/user/.config/Marxian/cuteTube.conf to see if the correct value is stored there.

Marking multiple videos works in the standard Hildon way:
  1. Choose the action from the menu.
  2. Select the videos from the list.
  3. Confirm the action by tapping the button in the 'edit' bar.

It's different from the QML version, but I made the decision to follow the Hildon standard where possible.

marxian 2012-09-19 15:39

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

Originally Posted by lonk (Post 1268979)
I'm getting the kmplayer problem too, so I have to configure that manually

another problem is I can't go on the Dailymotion profile, it doesn't load

also does full support for Dailymotion mean I can upload videos there in this version?

I can reproduce the profile bug. I must have broken something at the last minute.

There is no upload option yet, because Dailymotion uses multipart HTTP POST, which is not supported in Qt 4.7.x (support was introduced in Qt 4.8.0). I can implement it myself, but I think it's tricky (time consuming) to do without reading the entire file into memory.

marxian 2012-09-19 15:50

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

Originally Posted by HtheB (Post 1268816)
Marxian, thanks for the update!

As some users mentioned before, can you also add an option for "play videos when minimized"? So if this checkbox is enabled, it will use some integrated videoplayer like it used to have.

It's kinda dealbreaker at the moment if you want to listen to some music (like just a quick streaming, so no need to save the flv/mp4 file), I can't minimize it to do other (simple) stuff, like replying a chat message...

Please reconsider this. It was a feature before, so I'm sure you can reimplement this back :)

I thought multitasking was one of the features of Maemo(Harmattan) right? :p

I presume that you're referring to the Harmattan version? The problem there is that I can't test against PR1.3, and I'm not willing (and can't afford) to take any chances when it comes to stability of the application. It's also not simply a case of slotting the old code back in. The backend has been re-written, and the UI has been changed to make use of the additional toolbar space. I'd have to re-write the playback code, change the UI, and hope for the best on PR1.3.

marxian 2012-09-19 17:01

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

Originally Posted by scoobydoo (Post 1268995)
any news on why xtube is no longer working always shows no videos found. thanks in advance

It's working for me in this version. Probably not in the QML version because the HTML for some (if not all) of the sites has been changed.

scoobydoo 2012-09-19 17:21

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

Originally Posted by marxian (Post 1269169)
It's working for me in this version. Probably not in the QML version because the HTML for some (if not all) of the sites has been changed.

cool sorry to ask but how to enable is it the same as it was for the qml version

marxian 2012-09-19 17:33

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

Originally Posted by scoobydoo (Post 1269183)
cool sorry to ask but how to enable is it the same as it was for the qml version

Yes. The config file is stored at /home/user/.config/Marxian/cuteTube.conf.

ade 2012-09-19 17:33

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

I also looked at the problem of setting a different mediaplayer noticed by Acidspunk an lonk.
Since the default mediaplayer is broken on my phone, I have to use mplayer/kmplayer. I can set it in the config file by hand and then it works. But as soon as you edit it the settings menu, I will jump back to the default mediaplayer after hitting save, and also stores it that way while quitting cuteTube. Removing the config to give it another go makes no difference.

Could you please recheck and see if you are using an exact same version?

HtheB 2012-09-19 17:42

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

Originally Posted by marxian (Post 1269098)
I presume that you're referring to the Harmattan version? The problem there is that I can't test against PR1.3, and I'm not willing (and can't afford) to take any chances when it comes to stability of the application. It's also not simply a case of slotting the old code back in. The backend has been re-written, and the UI has been changed to make use of the additional toolbar space. I'd have to re-write the playback code, change the UI, and hope for the best on PR1.3.

You can upgrade your N950 to PR1.3..

scoobydoo 2012-09-19 18:45

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

Originally Posted by marxian (Post 1269186)
Yes. The config file is stored at /home/user/.config/Marxian/cuteTube.conf.

could'nt see it under that config file but i have installed xtube it appears in the qml version though

marxian 2012-09-19 20:12

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

Originally Posted by HtheB (Post 1269191)
You can upgrade your N950 to PR1.3..

A leaked firmware is not acceptable for testing purposes. It also doesn't change the fact that the decision is made. If Nokia had released PR1.3 for the N950 before the release for the N9, then I would have been able to debug the problem and probably would have kept the QML video player. Instead, I was forced to remove it, so that I could have a working version of cuteTube in the store. As a result, code design decisions have been made, and I don't have enough time to reverse all of these and re-write lots of new code.

marxian 2012-09-19 20:16

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

Originally Posted by scoobydoo (Post 1269222)
could'nt see it under that config file but i have installed xtube it appears in the qml version though

You have to add the field yourself. In the [Media] section, add

Code:

xtubeEnabled=true
Restart cuteTube and you should see the additional sites in the search dialog.

You can uninstall the xtube package. It's redundant.

marxian 2012-09-19 21:57

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

Originally Posted by ade (Post 1269187)
Marxian,

I also looked at the problem of setting a different mediaplayer noticed by Acidspunk an lonk.
Since the default mediaplayer is broken on my phone, I have to use mplayer/kmplayer. I can set it in the config file by hand and then it works. But as soon as you edit it the settings menu, I will jump back to the default mediaplayer after hitting save, and also stores it that way while quitting cuteTube. Removing the config to give it another go makes no difference.

Could you please recheck and see if you are using an exact same version?

I am able to reproduce the bug after deleting my config file. The problem is that the media player is restored to the default in all cases if the custom command text field is empty. To work around this, just select the custom command option, enter a character, and then select your preferred media player. This will solve the problem until I release the fix. :)

scoobydoo 2012-09-19 22:42

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

Originally Posted by marxian (Post 1269272)
You have to add the field yourself. In the [Media] section, add

Code:

xtubeEnabled=true
Restart cuteTube and you should see the additional sites in the search dialog.

You can uninstall the xtube package. It's redundant.

xtube search now working but will not play or download video's unable to retrieve video or codec not supported i already have extra decoder support if required but still no go thanks for any help it is appreciated

nisheet 2012-09-20 07:53

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

Originally Posted by scoobydoo (Post 1269334)
xtube search now working but will not play or download video's unable to retrieve video or codec not supported i already have extra decoder support if required but still no go thanks for any help it is appreciated


no,its working fine....even videos are playing and downloading flawlessly on my N900

scoobydoo 2012-09-20 08:51

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

Originally Posted by nisheet (Post 1269454)
no,its working fine....even videos are playing and downloading flawlessly on my N900

could you tell me senario in which it works ie 3g or wifi and which media player and any extra codecs needed have worked out how to download but fails to download on 3g cheers

nisheet 2012-09-20 12:25

Re: [Announce] cuteTube - A feature-rich YouTube client
 
i use it on 2G.....video plays in default mediaplayer...with freemagadon's extracodecs...with codecs to play HD videos..

artpra 2012-10-02 06:16

Re: [Announce] cuteTube - A feature-rich YouTube client
 
@marxian,
thanks for returning to this version of cutetube, I MUCH prefer standard, native, hildonized look and the way my phone operates. Add internal player (instead of invoking other app to do playback) with leaving option to use external one (like it is now) and it will be ultimate n900 youtube application.
One very minor cosmetic bug. Take a look at the "Settings" window: it shouldn`t be scrollable to left and right, only in up and down directions (too wide buttons?). Just like "Search" window.

marxian 2012-10-02 10:19

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

Originally Posted by artpra (Post 1275134)
@marxian,
thanks for returning to this version of cutetube, I MUCH prefer standard, native, hildonized look and the way my phone operates. Add internal player (instead of invoking other app to do playback) with leaving option to use external one (like it is now) and it will be ultimate n900 youtube application.
One very minor cosmetic bug. Take a look at the "Settings" window: it shouldn`t be scrollable to left and right, only in up and down directions (too wide buttons?). Just like "Search" window.

I'm working on the internal player atm. Should be finished this week. :)

The horizontal scrolling in the settings dialog is a known problem. I need to tweak the layout to fix it.

UnlimiteD3k 2012-10-03 08:50

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Excellent work with the player.
I have found a new requirement with Youtube that forces me to use the web-based youtube. Play to TV

You think you can include the ability to play to a TV and/or add/pair a TV?

mrwormp 2012-10-03 18:42

Re: [Announce] cuteTube - A feature-rich YouTube client
 
does this mean that I should use this instead of cute tube qml

Nobless 2012-10-03 18:50

Re: [Announce] cuteTube - A feature-rich YouTube client
 
which is better for using qml cuteTube or newer version(cuteTube) what is the main differences between them ? :P I'm sure that the answer to my question is in this thread disscused, but read all posts... its to big thread :)

sts1976 2012-10-07 10:23

Re: [Announce] cuteTube - A feature-rich YouTube client
 
I have recently come back to the fabulous n9 and I'm looking for some help with the great cuteTube app.

The issue regards video playback in that all video played from the cuteTube n9 app keeps drop frames making it difficult to watch and enjoy. Ive also found that video playback works fine when headphones are attached which is a little weird.

Im sure this didn't happen when i last used the n9 and cuteTube some 6 months ago. But i might be wrong but it was never this bad. It also works great on the n900.

I only watch video on the n9 via cuteTube so any help would be greatly appreciated

marxian 2012-10-09 15:00

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

Originally Posted by sts1976 (Post 1277559)
I have recently come back to the fabulous n9 and I'm looking for some help with the great cuteTube app.

The issue regards video playback in that all video played from the cuteTube n9 app keeps drop frames making it difficult to watch and enjoy. Ive also found that video playback works fine when headphones are attached which is a little weird.

Im sure this didn't happen when i last used the n9 and cuteTube some 6 months ago. But i might be wrong but it was never this bad. It also works great on the n900.

I only watch video on the n9 via cuteTube so any help would be greatly appreciated

The stock player is not particularly great at video streaming, and the frame-dropping is a common problem which I have noticed on my own device. I think it is present to some extent when playing local files also (depending on the codec). I haven't tested using headphones recently, so that's an interesting observation. Unfortunately, I doubt the stock player will receive any further attention from Nokia.

cuteTube previously had a built-in player, but this became broken in PR1.3. Apparently, the fix is trivial, but Nokia chose not to release PR1.3 for the N950 and, with a limited time frame in which to make a decision (PR1.3 release was imminent), I had no choice but to remove it.

marxian 2012-10-09 15:03

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

Originally Posted by UnlimiteD3k (Post 1275750)
Excellent work with the player.
I have found a new requirement with Youtube that forces me to use the web-based youtube. Play to TV

You think you can include the ability to play to a TV and/or add/pair a TV?

I presume that this feature works using DLNA? I'm not sure what options are available for Maemo5 in that area. I imagine that it's possible, but I do not own any kind of TV to test, let alone one that is DLNA enabled.

There's always the TV-out cable producing glorious composite video at 640x480. :p

marxian 2012-10-09 15:06

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

Originally Posted by Nobless (Post 1275973)
which is better for using qml cuteTube or newer version(cuteTube) what is the main differences between them ? :P I'm sure that the answer to my question is in this thread disscused, but read all posts... its to big thread :)

You can use either, depending on your personal preference. My preference is this version, because:
  1. It complies with Hildon style.
  2. The code is far better and easier to maintain.

As a result, this version gets more development time.

marxian 2012-10-09 15:10

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Version 1.4.0 should now be available from extras-testing/devel. Changelog:

* Added option to post videos to Hildon Event Feed (requires hildonevents package).
* Added built-in video player.

Built-in player has the following keyboard shortcuts:
  • Space: Play/pause
  • Left: Previous
  • Right: Next
  • F: Toggle fullscreen
  • Up/Down: Scroll through playlist
  • Return: Select video in playlist
  • Backspace: Quit video playback

Screenshots of video player:

http://img703.imageshack.us/img703/8...0802281.th.png http://img802.imageshack.us/img802/8...0802281.th.png

Version 1.3.2 has been promoted to extras, so thanks to everyone that took the time to test and vote (also applies to qmltube). :)

s4br0s0 2012-10-09 15:43

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Hello, i can't update the new version 1.3.2 from extras, i got this on the log of fapman, try it first with ham and can't update either.

Code:

--- 2012-10-09 11:05:08 ---
Start reading package lists
--- 2012-10-09 11:05:16 ---
Finished reading package lists
--- 2012-10-09 11:05:17 ---
Start fetching package dates
--- 2012-10-09 11:05:17 ---
need to fetch date for 0 packages
--- 2012-10-09 11:05:17 ---
sent 0 requests, received 0 replies with 0 errors
--- 2012-10-09 11:05:17 ---
Finished fetching package dates
--- 2012-10-09 11:05:25 ---
/usr/bin/apt-get -qsy --allow-unauthenticated -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts="" --auto-remove install qmltube
--- 2012-10-09 11:05:33 ---
Output from last process:
---
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be upgraded:
  qmltube
1 upgraded, 0 newly installed, 0 to remove and 31 not upgraded.
Inst qmltube [1.1.1] (1.3.2 Extras:2.0/fremantle-1.3)
Conf qmltube (1.3.2 Extras:2.0/fremantle-1.3)

--- 2012-10-09 11:05:35 ---
/usr/bin/apt-get -qy --allow-unauthenticated -o DPkg::options::=--force-confnew -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts="" --auto-remove install qmltube
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be upgraded:
  qmltube
1 upgraded, 0 newly installed, 0 to remove and 31 not upgraded.
Need to get 0B/908kB of archives.
After this operation, 647kB disk space will be freed.
WARNING: The following packages cannot be authenticated!
  qmltube
Authentication warning overridden.
(Reading database ... 32551 files and directories currently installed.)
Preparing to replace qmltube 1.1.1 (using .../qmltube_1.3.2_armel.deb) ...
Unpacking replacement qmltube ...
dpkg: error processing /var/cache/apt/archives/qmltube_1.3.2_armel.deb (--unpack):
 trying to overwrite `/usr/lib/hildon-desktop/qmltube-widget', which is also in package qmltube-widget
Errors were encountered while processing:
 /var/cache/apt/archives/qmltube_1.3.2_armel.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Greetings.

marxian 2012-10-09 15:54

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

Originally Posted by s4br0s0 (Post 1278436)
Hello, i can't update the new version 1.3.2 from extras, i got this on the log of fapman, try it first with ham and can't update either.

Code:

--- 2012-10-09 11:05:08 ---
Start reading package lists
--- 2012-10-09 11:05:16 ---
Finished reading package lists
--- 2012-10-09 11:05:17 ---
Start fetching package dates
--- 2012-10-09 11:05:17 ---
need to fetch date for 0 packages
--- 2012-10-09 11:05:17 ---
sent 0 requests, received 0 replies with 0 errors
--- 2012-10-09 11:05:17 ---
Finished fetching package dates
--- 2012-10-09 11:05:25 ---
/usr/bin/apt-get -qsy --allow-unauthenticated -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts="" --auto-remove install qmltube
--- 2012-10-09 11:05:33 ---
Output from last process:
---
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be upgraded:
  qmltube
1 upgraded, 0 newly installed, 0 to remove and 31 not upgraded.
Inst qmltube [1.1.1] (1.3.2 Extras:2.0/fremantle-1.3)
Conf qmltube (1.3.2 Extras:2.0/fremantle-1.3)

--- 2012-10-09 11:05:35 ---
/usr/bin/apt-get -qy --allow-unauthenticated -o DPkg::options::=--force-confnew -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts="" --auto-remove install qmltube
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be upgraded:
  qmltube
1 upgraded, 0 newly installed, 0 to remove and 31 not upgraded.
Need to get 0B/908kB of archives.
After this operation, 647kB disk space will be freed.
WARNING: The following packages cannot be authenticated!
  qmltube
Authentication warning overridden.
(Reading database ... 32551 files and directories currently installed.)
Preparing to replace qmltube 1.1.1 (using .../qmltube_1.3.2_armel.deb) ...
Unpacking replacement qmltube ...
dpkg: error processing /var/cache/apt/archives/qmltube_1.3.2_armel.deb (--unpack):
 trying to overwrite `/usr/lib/hildon-desktop/qmltube-widget', which is also in package qmltube-widget
Errors were encountered while processing:
 /var/cache/apt/archives/qmltube_1.3.2_armel.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Greetings.

It's because the widget is now packaged with the main application. I'll fix this problem for the next qmltube update. For now, you can fix the install by uninstalling qmltube-widget before upgrading qmltube.

P.S. This thread is for cutetube package. ;)

s4br0s0 2012-10-09 16:01

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

Originally Posted by marxian (Post 1278441)
It's because the widget is now packaged with the main application. I'll fix this problem for the next qmltube update. For now, you can fix the install by uninstalling qmltube-widget before upgrading qmltube.

P.S. This thread is for cutetube package. ;)

Oooooops, i couldn't sleep well last night, so, i'm still "sleep", sorry.

I'll do that and tell you what happen on the QML thread.

What diferences are between regular and QML? (Besides the obvious, language program).

Just ask to see if i'll stay on QML or go for regular.

Greetings.

marxian 2012-10-09 16:10

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

Originally Posted by s4br0s0 (Post 1278445)
Oooooops, i couldn't sleep well last night, so, i'm still "sleep", sorry.

I'll do that and tell you what happen on the QML thread.

What diferences are between regular and QML? (Besides the obvious, language program).

Just ask to see if i'll stay on QML or go for regular.

Greetings.

The differences in terms of features are fairly minimal. The UX is the most noticeable difference. This version behaves like any other QtGui application on Maemo5. Aside from that, the code in this version is much improved, and is easier for me to maintain, so this is the version that will receive most attention in future. :)

marxian 2012-10-09 17:37

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

Originally Posted by datjomp (Post 1278481)
Nice to see that you're still working on CuteTube :)
Any plans in adding the sweet feature to search by duration, which is available in the qml version?
I kinda search for documentaries and such and this feature is great at those occasions.

The new version looks great btw

Nice job!

It's already implemented. You can choose which search options are visible in the settings.

datjomp 2012-10-09 18:05

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

Originally Posted by marxian (Post 1278483)
It's already implemented. You can choose which search options are visible in the settings.

Ah,missed that.
Excellent as always :)

Acidspunk 2012-10-10 02:33

Re: [Announce] cuteTube - A feature-rich YouTube client
 
Marxian I think I may have found something. Whenever I press the "related" button, cutetube crashes. Can you reproduce it or is it something on my end? Thanks for the new version. The new video player is great!

soryuuha 2012-10-10 02:47

Re: [Announce] cuteTube - A feature-rich YouTube client
 
dear marxian, any date for ver 1.4 to be in Store ?

Since it will feature your built in player :D


All times are GMT. The time now is 13:52.

vBulletin® Version 3.8.8