<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Joaquim Rocha&#039;s Web Page &#187; gui</title>
	<atom:link href="http://www.joaquimrocha.com/category/gui/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joaquimrocha.com</link>
	<description>Linux, technology and art</description>
	<lastBuildDate>Wed, 01 Feb 2012 10:54:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Announcing GFreenect</title>
		<link>http://www.joaquimrocha.com/2012/01/20/announcing-gfreenect/</link>
		<comments>http://www.joaquimrocha.com/2012/01/20/announcing-gfreenect/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 11:22:22 +0000</pubDate>
		<dc:creator>Joaquim Rocha</dc:creator>
				<category><![CDATA[augmented reality]]></category>
		<category><![CDATA[computer vision]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[igalia]]></category>
		<category><![CDATA[interactivity]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.joaquimrocha.com/?p=1387</guid>
		<description><![CDATA[As mentioned in my last post, Edu the mighty Cuban and I have been playing with the Kinect and developed an interactive installation for Igalia&#8216;s 10th anniversary party using OpenFrameworks. (By the way, some people asked me for that application&#8217;s code so yesterday I cleaned it and it&#8217;s available on Gitorious) OpenFrameworks offers a number [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned in my last post, <a href="http://blogs.igalia.com/elima/" target="_blank">Edu <em>the mighty Cuban</em></a> and I have been playing with the Kinect and developed an <a href="http://www.joaquimrocha.com/2012/01/17/augmented-reality-at-igalias-10-years-anniversary/" title="Augmented Reality at Igalia’s 10 Years Anniversary">interactive installation</a> for <a href="http://www.igalia.com" target="_blank">Igalia</a>&#8216;s <a href="http://www.igalia.com/igalia-247/news/item/igalia-celebrates-its-10th-anniversary" target="_blank">10th anniversary</a> party using <a href="http://www.openframeworks.cc" target="_blank">OpenFrameworks</a>. (By the way, some people asked me for that application&#8217;s code so yesterday I cleaned it and it&#8217;s <a href="https://gitorious.org/aquarium-interactive-demo" target="_blank">available on Gitorious</a>)<br />
OpenFrameworks offers a number of functionalities either from its core libraries or by means of add-ons and indeed there is an add-on that wraps <a href="http://openkinect.org/wiki/Main_Page" target="_blank">libfreenect</a>, the Free Software library that allows to control the Kinect.</p>
<p>Using OpenFrameworks was easy, it makes it fast to start developing with it but in many aspects it&#8217;s completely different from the way we&#8217;re used to work on <a href="http://www.gnome.org" target="_blank">GNOME</a>. We are used to have single, independent libraries that do one thing and do it well and are used as needed by application developers, for example, do not include a sound library if my application is never going to use it.<br />
Having modules such as <a href="http://www.gtk.org/" target="_blank">GTK+</a>, <a href="http://www.clutter-project.org/" target="_blank">Clutter</a>, <a href="http://cairographics.org/" target="_blank">Cairo</a>, <a href="http://gstreamer.freedesktop.org" target="_blank">GStreamer</a>, etc. already gives us flexible ways to develop certain parts of applications similar to the demo mentioned before: we just had to draw the fish using Clutter/Cairo, implement their behavior and show the Clutter stage. Of course we also would need a way to control the Kinect and it would be really nice if it could offer us an easy to use API for those familiar with GLib&#8230;</p>
<p><strong>Ladies and gents, we give you&#8230; GFreenect</strong></p>
<p><a href="https://gitorious.org/gfreenect" target="_blank">GFreenect</a> is a wrapper for the Freenect library written using Glib in order to control a Kinect device and make it easy to use with GNOME technologies.<br />
It doesn&#8217;t simply wrap the Freenect library but also offers ways of using it that are familiar to you if you have developed something using other GNOME libraries.<br />
One example of this enhanced functionality is that we focused on offering an asynchronous API (although there are some synchronous alternative methods as well). Another example is that when setting the device&#8217;s tilt angle, a signal will be emitted when it has finished setting the angle, since it might be useful for some applications.</p>
<p>One of the purposes of having it written with GLib is the <a href="https://live.gnome.org/GObjectIntrospection" target="_blank">GObject Introspection</a> capability. This allowed us to include an <a href="https://gitorious.org/gfreenect/gfreenect/blobs/master/examples/testview.py" target="_blank">example application</a> that controls the various features of the Kinect and was written in Python effortlessly. A screenshot of this app is shown below:</p>
<p><a href="http://www.flickr.com/photos/joaquimrocha/6725239235/" title="GFreenectView Screenshot by Joaquim Rocha, on Flickr"><img src="http://farm8.staticflickr.com/7027/6725239235_48ffcd70cb.jpg" width="500" alt="GFreenectView Screenshot"></a></p>
<p>And that&#8217;s it! You can find the code for <a href="https://gitorious.org/gfreenect/gfreenect" target="_blank">GFreenect in Gitorious</a> (including <a href="http://people.igalia.com/elima/gfreenect/doc/0.1.2/" target="_blank">documentation for this 0.1.2 version</a>). Bear with us if you find some bugs, it is fresh out of the oven.</p>
<p>We hope you find GFreenect useful for your projects and please give us feedback if you find some issues or have any good suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joaquimrocha.com/2012/01/20/announcing-gfreenect/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>SeriesFinale for Harmattan (N9/N950)</title>
		<link>http://www.joaquimrocha.com/2011/11/18/seriesfinale-for-harmattan-n9n950/</link>
		<comments>http://www.joaquimrocha.com/2011/11/18/seriesfinale-for-harmattan-n9n950/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 23:58:12 +0000</pubDate>
		<dc:creator>Joaquim Rocha</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[hildon]]></category>
		<category><![CDATA[igalia]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[planet]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[seriesfinale]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.joaquimrocha.com/?p=1161</guid>
		<description><![CDATA[As promised before, here is the first release of SeriesFinale for MeeGo Harmattan. This summer Micke Prag, a fellow programmer from Sweden contacted me because he was starting a port of SF for Harmattan. By then I still didn&#8217;t have an N950 because of having missed the deadline for the first developers program. Later, when [...]]]></description>
			<content:encoded><![CDATA[<p>As <a title="SeriesFinale 0.6.9" href="http://www.joaquimrocha.com/2011/10/14/seriesfinale-0-6-9/" target="_blank">promised before</a>, here is the first release of <a title="SF info page" href="http://www.igalia.com/nc/work/labs/project/item/seriesfinale/" target="_blank">SeriesFinale</a> for <a href="http://en.wikipedia.org/wiki/MeeGo#MeeGo.2FHarmattan" target="_blank">MeeGo Harmattan</a>.</p>
<p>This summer Micke Prag, a fellow programmer from Sweden contacted me because he was starting a port of SF for Harmattan. By then I still didn&#8217;t have an <a title="N950 on Engadget" href="http://www.engadget.com/2011/06/21/nokias-n950-developer-meego-handset-gets-official-4-inch-displ/" target="_blank">N950</a> because of having missed the deadline for the first developers program. Later, when the second developers program was launched I managed to finally get one. At that point, even though I already had my <a href="http://www.samsung.com/global/microsite/galaxys/index_2.html" target="_blank">Samsung Galaxy S</a> (yes, with <a href="http://www.android.com/" target="_blank">Android</a>) I still wanted to have a port of SeriesFinale as I had received many emails asking for this port so I started from Micke&#8217;s code and finally here it is!</p>
<p><strong>The Harmattan port</strong></p>
<p><a title="SF first version for MeeGo by Joaquim Rocha, on Flickr" href="http://www.flickr.com/photos/joaquimrocha/6355673049/" target="_blank"><img class="alignright" src="http://farm7.static.flickr.com/6060/6355673049_1c9b7f585c.jpg" alt="SF first version for MeeGo" height="350" /></a></p>
<p>Maybe it is something obvious but this version is not written in <a title="PyGTK" href="http://www.pygtk.org/" target="_blank">PyGTK</a>/<a title="PyMemo" href="http://pymaemo.garage.maemo.org/" target="_blank">PyMaemo</a>. It uses part of the &#8220;old&#8221; Python backend that was changed to play well with the new UI code written in <a title="QML" href="http://doc.qt.nokia.com/4.7-snapshot/qdeclarativeintroduction.html" target="_blank">QML</a>.</p>
<div>
This port&#8217;s code is a bit dirty by now and I&#8217;m sure there are bugs in this first version but at least it can be used and I didn&#8217;t want to make people wait much more. The support and feedback that SeriesFinale&#8217;s users have given me is amazing (some people even saying they still use the <a title="Nokia N900" href="http://en.wikipedia.org/wiki/Nokia_N900" target="_blank">N900</a> only for SF!), thank you all for it.<br />
My heart is still filled with GNOME/GTK+ love but QML is really impressive; there are some things I still need to spend some time with to figure out but I like how quick and flexible one can do stuff in QML.</div>
<div>
<p><strong>The OVI Store</strong></p>
<p>It was also the first time I published something on Nokia&#8217;s <a title="Nokia's Ovi Store" href="http://store.ovi.com/" target="_blank">Ovi Store</a> and the process took around 2 weeks before it finally got approved (it was rejected twice before due to weird stuff like &#8220;they&#8221; thinking <a title="Maemo Bugzilla" href="https://bugs.maemo.org/" target="_blank">bugs.maemo.org</a> was not a good place to report issues or the fact that an application that says it works only with English US is eligible only for the USA, not for all the countries&#8230;).</p>
<p><strong>The future</strong></p>
<p>I really like the <a title="N9" href="http://swipe.nokia.com/" target="_blank">N9</a>/N950. The user experience is something awesome and I believe this was the phone that could really compete with the iPhone and Android. Unfortunately <a title="Elopocalypse" href="http://www.engadget.com/2011/02/08/nokia-ceo-stephen-elop-rallies-troops-in-brutally-honest-burnin/" target="_blank">someone</a> at Nokia disagrees and the future of this incredible phone is doomed even though <a title="Thomas Perl on the N9 and the Lumia phones" href="http://thpmaemo.blogspot.com/2011/11/why-i-love-n9-and-things-i-didnt-know.html" target="_blank">Nokia&#8217;s alternative is not better</a>. Due to this mainly, I&#8217;m not using the N950 as my main phone. This and the fact that my personal time, in which I develop SF, is very limited, means that unless things change, I don&#8217;t know how much more releases I will do but I still wanted to add some cool features. It will probably depend again on the feedback and support.</p>
<p>Anyway here it is at an Ovi Store a few taps/swipes away and for free, as always (although I appreciate when someone buys me a beer <img src='http://www.joaquimrocha.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ):</p>
<p style="text-align: center;"><a title="Get SeriesFinale from Ovi Store" href="http://store.ovi.com/content/216989" target="_blank"><img src="http://farm7.static.flickr.com/6050/6355639907_0922d93d0b.jpg" alt="Get SeriesFinale from Ovi Store" width="300" height="250" /></a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.joaquimrocha.com/2011/11/18/seriesfinale-for-harmattan-n9n950/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>SeriesFinale 0.6.8 and the revenge of the clones</title>
		<link>http://www.joaquimrocha.com/2011/07/21/seriesfinale-0-6-8-and-the-revenge-of-the-clones/</link>
		<comments>http://www.joaquimrocha.com/2011/07/21/seriesfinale-0-6-8-and-the-revenge-of-the-clones/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 21:05:01 +0000</pubDate>
		<dc:creator>Joaquim Rocha</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[hildon]]></category>
		<category><![CDATA[igalia]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[planet]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[seriesfinale]]></category>

		<guid isPermaLink="false">http://www.joaquimrocha.com/?p=1030</guid>
		<description><![CDATA[Finally I could get a little time to finish SF 0.6.8 release. In this release one thing I wanted to improve was the startup time. With the number of TV shows I have in my SF, it was taking around 25 seconds before showing me the list of shows. Part of this is due to [...]]]></description>
			<content:encoded><![CDATA[<p>Finally I could get a little time to finish SF 0.6.8 release.</p>
<p>In this release one thing I wanted to improve was the startup time. With the number of TV shows I have in my SF, it was taking around 25 seconds before showing me the list of shows. Part of this is due to the deserialization from the DB (no, it&#8217;s not using SQLite and I have no time to make the switch) which takes its time but also because it was attempting to sort the list of shows every time a show was added and it also took some time loading the shows&#8217; covers from disk.<br />
This fix was basically loading of the covers asynchronously and sorting the shows only after they are added to the tree view. It improved from 25 seconds to 12 seconds more or less.</p>
<p>While the shows&#8217; covers are being loaded on startup or downloaded from the web, it displays something like shown on the following screenshot:</p>
<p><a href="http://www.joaquimrocha.com/wp-content/uploads/2011/07/Screenshot-20110721-210948.png"><img src="http://www.joaquimrocha.com/wp-content/uploads/2011/07/Screenshot-20110721-210948.png" alt="" title="Loading the shows&#039; covers" width="400px" class="aligncenter size-full wp-image-1034" /></a></p>
<p>One of the features people like more is the display of the next episode&#8217;s air date. To improve this, I&#8217;ve added a small tweak to humanize the dates close to today so it displays &#8220;Yesterday&#8221; instead of &#8220;20 Jul&#8221;.</p>
<p><a href="http://www.joaquimrocha.com/wp-content/uploads/2011/07/Screenshot-20110721-211102.png"><img src="http://www.joaquimrocha.com/wp-content/uploads/2011/07/Screenshot-20110721-211102.png" alt="" title="An episode aired &quot;Yesterday&quot;" width="400px" class="aligncenter size-full wp-image-1037" /></a></p>
<p>The covers retrieval was broken for a while and this is fixed too. What happened was that <a href="thetvdb.com" target="_blank">TheTVDB</a> started redirecting images to a mirror and SF was not following redirected links&#8230; It should follow them now, so it is unlikely to happen again.<br />
I&#8217;m also including the French translation kindly sent by David Landreau.</p>
<p>Other important improvements and fixes are:<br />
* Fix deleting seasons;<br />
* Add sorting options to the seasons view;<br />
* Fix infinite loop when updating episodes (it happened when there were two shows with the same name);<br />
* Consider next episode to watch only when it has an air date;</p>
<p>There are also some good news from other platforms&#8217; ports. <a href="http://blogs.gnome.org/nacho/" target="_blank">Nacho</a> has created a <a href="https://gitorious.org/~nacho/seriesfinale/nachos-seriesfinale/commits/gnome" target="_blank">branch</a> where he is porting the <a href="http://www.gnome.org" target="_blank">GNOME</a> version to GTK3/PyGI. A user named Micke Prag is <a href="https://gitorious.org/~mickeprag/seriesfinale/mickeprags-seriesfinale/commits/qtquick" target="_blank">porting it to QML</a> which means it will be available on <a href="http://www.meego.com" target="_blank">MeeGo</a> one of these days. I wanted to apply for the developer&#8217;s N950 program (to port SF) but I was on honey-moon when it was announced and I ended up forgetting about it&#8230;</p>
<p><strong>Revenge of the clones</strong></p>
<p>When I first developed SF in 2009, I did it to scratch an itch and I couldn&#8217;t find such an app when I googled for it, I even wondered if anyone apart from me would be interested in such an app. Short after, my friend and colleague from the University, <a href="http://www.paulocabido.com/" target="_blank">Paulo Cabido</a> told me how much he liked the idea and created <a href="http://code.google.com/p/droidseries/" target="_blank">DroidSeries</a>, a SF&#8217;s clone for Android. After a while I also found <a href="https://www.ohloh.net/p/serieswatcher" target="_blank">SeriesWatcher</a>, a clone in Qt that also ran on the Linux desktop, Windows and Mac OSX.<br />
What surprised me was that last week I was browsing the Android Market (out of curiosity, I don&#8217;t own an Android phone) and found out that there are:<br />
* Series Droid (notice the name? If my friend Paulo was M$ or Apple, he would sue their asses <img src='http://www.joaquimrocha.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  )<br />
* TV Show Favs<br />
* TV Start<br />
* Episode Calendar (this seems to be the only Open Source one in the list)</p>
<p>Although only DroidSeries and SeriesWatcher say they are based in SF, I like to think the others do as well (maybe indirectly like being based on another clone <img src='http://www.joaquimrocha.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ). Or maybe those were developed before SF and I didn&#8217;t notice&#8230; What I&#8217;m trying to say is that not only from mainstream platforms come nice end user apps. In the Maemo world, even though we have problems of other nature, we also have good ideas and good applications for end user.</p>
<p><br/><br />
Get SeriesFinale 0.6.8 soon from your N900&#8242;s updates or <a href="http://maemo.org/packages/package_instance/view/fremantle_extras-devel_free_armel/seriesfinale/0.6.8-1/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joaquimrocha.com/2011/07/21/seriesfinale-0-6-8-and-the-revenge-of-the-clones/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>OCRFeeder 0.7.4 released</title>
		<link>http://www.joaquimrocha.com/2011/03/20/ocrfeeder-0-7-4-released/</link>
		<comments>http://www.joaquimrocha.com/2011/03/20/ocrfeeder-0-7-4-released/#comments</comments>
		<pubDate>Sat, 19 Mar 2011 22:51:54 +0000</pubDate>
		<dc:creator>Joaquim Rocha</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[igalia]]></category>
		<category><![CDATA[ocr]]></category>
		<category><![CDATA[ocrfeeder]]></category>
		<category><![CDATA[planet]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.joaquimrocha.com/?p=890</guid>
		<description><![CDATA[After more than two months since the last OCRFeeder release (I&#8217;ve been busy with other projects in Igalia), I have just released the version 0.7.4. The highlights for this new version are: Add plain text exportation Sometimes users just want to get the plain text from a scanned document and this is especially useful for [...]]]></description>
			<content:encoded><![CDATA[<p>After more than two months since the last <a href="http://live.gnome.org/OCRFeeder" target="_blank">OCRFeeder</a> release (I&#8217;ve been busy with other projects in <a href="http://www.igalia.com" target="_blank">Igalia</a>), I have just released the version 0.7.4.</p>
<p>The highlights for this new version are:</p>
<p><strong>Add plain text exportation</strong></p>
<p>Sometimes users just want to get the plain text from a scanned document and this is especially useful for visually impaired users that will be able to read the text files with <a href="http://live.gnome.org/Orca" target="_blank">Orca</a> afterwards.<br />
This feature was developed by <a href="http://xcitegroup.org/softhum/doku.php?id=s:projecttemplateam" target="_blank">Andrew McGrath</a>, a student from New Hampshire, who is contributing to OCRFeeder as part of his involvement in the <a href="http://xcitegroup.org/softhum/doku.php?id=start" target="_blank">Software for Humanity</a> project. It would be great to have more colleges involved in this kind of initiatives.</p>
<p><strong>Recognize the current page or the whole document</strong></p>
<p>Now it is possible to automatically recognize the current page (as it did before) or the complete document. I&#8217;ve also added a confirmation dialog before the recognition is performed when there are changes in the project.</p>
<p>Thanks also to <a href="http://blog.grain-of-salt.com/" target="_blank">Joanmarie</a> for all the great suggestions like this one and to <a href="http://blogs.gnome.org/juanje/" target="_blank">Juanje Ojeda</a> for the patches he sent me.<br />
<br/></p>
<p>These were just the two main features I&#8217;ve picked from the list of changes, to view them all check the <a href="http://ftp.gnome.org/pub/GNOME/sources/ocrfeeder/0.7/ocrfeeder-0.7.4.news" target="_blank">NEWS</a> file.</p>
<p>Stay tuned for more improvements in the future.</p>
<p><a target="_blank" href="http://ftp.gnome.org/pub/GNOME/sources/ocrfeeder/0.7/ocrfeeder-0.7.4.tar.gz">Source tarball</a><br />
<a target="_blank" href="http://git.gnome.org/browse/ocrfeeder">Git</a><br />
<a target="_blank" href="https://bugzilla.gnome.org/enter_bug.cgi?product=ocrfeeder">Bugzilla</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.joaquimrocha.com/2011/03/20/ocrfeeder-0-7-4-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SeriesFinale version 0.6.6 released</title>
		<link>http://www.joaquimrocha.com/2011/02/22/seriesfinale-version-0-6-6-released/</link>
		<comments>http://www.joaquimrocha.com/2011/02/22/seriesfinale-version-0-6-6-released/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 07:30:35 +0000</pubDate>
		<dc:creator>Joaquim Rocha</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[hildon]]></category>
		<category><![CDATA[igalia]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[planet]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[seriesfinale]]></category>

		<guid isPermaLink="false">http://www.joaquimrocha.com/?p=879</guid>
		<description><![CDATA[Since last night, SeriesFinale version 0.6.6 should be available for those who have the extras-devel catalog. This version&#8217;s highlights are: * Live search of shows. Finally it includes a way to quickly filter shows, this is especially useful for those who have a large number of shows in the list. * Quick access to the [...]]]></description>
			<content:encoded><![CDATA[<p>Since last night, <a href="http://www.igalia.com/nc/work/labs/project/item/seriesfinale/" target="_blank">SeriesFinale</a> version 0.6.6 should be available for those who have the extras-devel catalog.</p>
<p>This version&#8217;s highlights are:</p>
<p>* Live search of shows. Finally it includes a way to quickly filter shows, this is especially useful for those who have a large number of shows in the list.</p>
<p><a href="http://www.joaquimrocha.com/wp-content/uploads/2011/02/sf_live_search.png"><img src="http://www.joaquimrocha.com/wp-content/uploads/2011/02/sf_live_search-300x180.png" alt="" title="SF Live Search" width="300" height="180" class="aligncenter size-medium wp-image-883" /></a></p>
<p>* Quick access to the next/previous episodes. This was another request from a user, when viewing an episode, add a way to quickly go to the previous or next episode. I have added this by panning/dragging horizontally in the episode view, dragging left or right will bring the next or the previous episode, respectively.</p>
<p>* Switched episodes&#8217; &#8220;watched&#8221; check-boxes to the right. After adding the portrait mode, it was clear that having the episodes&#8217; check-boxes on the right made more sense for right-handed people. This is now the default position, nevertheless, a new option was included in the settings dialog so users can choose to either have on the right or left.</p>
<p><a href="http://www.joaquimrocha.com/wp-content/uploads/2011/02/sf_right_checkboxes.png"><img src="http://www.joaquimrocha.com/wp-content/uploads/2011/02/sf_right_checkboxes-300x180.png" alt="" title="SF RIght Checkboxes" width="300" height="180" class="aligncenter size-medium wp-image-884" /></a></p>
<p>* Last but not least, <a href="http://blogs.igalia.com/jasuarez" target="_blank">Juan</a> has made SF more reliable and fast by saving the database and settings only if they have been changed.</p>
<p>We will keep the <a href="https://bugs.maemo.org/buglist.cgi?cmdtype=runnamed&#038;namedcmd=SeriesFinale" target="_blank">list of bugs and feature requests</a> in mind for the SF development (for both Maemo and GNOME) so, you are welcome to <a href="https://bugs.maemo.org/enter_bug.cgi?product=seriesfinale" target="_blank">submit more</a>.</p>
<p>If you use the extras-testing catalog, be sure to try this new version of SF and vote for it when it appears <a href="http://maemo.org/packages/view/seriesfinale/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joaquimrocha.com/2011/02/22/seriesfinale-version-0-6-6-released/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

