<?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>Michael Sheldon's Stuff</title>
	<atom:link href="http://blog.mikeasoft.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mikeasoft.com</link>
	<description></description>
	<lastBuildDate>Fri, 18 Jun 2010 01:08:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Jokosher on the Nokia n900</title>
		<link>http://blog.mikeasoft.com/2010/06/18/jokosher-on-the-nokia-n900/</link>
		<comments>http://blog.mikeasoft.com/2010/06/18/jokosher-on-the-nokia-n900/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 01:05:03 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[embedded]]></category>
		<category><![CDATA[gstreamer]]></category>
		<category><![CDATA[jokosher]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[n900]]></category>
		<category><![CDATA[nokia]]></category>

		<guid isPermaLink="false">http://blog.mikeasoft.com/?p=174</guid>
		<description><![CDATA[I&#8217;ve had another stab at getting Jokosher running on the Nokia n900 and I&#8217;m getting much closer to something actually usable now, as this screenshot attests:

There&#8217;s still a number of issues that need resolving before it&#8217;s really ready for use (most notably some playback/recording problems and some dialog boxes that are too large for the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had another stab at getting Jokosher running on the Nokia n900 and I&#8217;m getting much closer to something actually usable now, as this screenshot attests:</p>
<p><a href='http://mikeasoft.com/~mike/jokosher-n900.png'><img style='height: 240px; width: 400px;' src="http://mikeasoft.com/~mike/jokosher-n900.png" alt="Jokosher on the Nokia n900" /></a></p>
<p>There&#8217;s still a number of issues that need resolving before it&#8217;s really ready for use (most notably some playback/recording problems and some dialog boxes that are too large for the screen), but it&#8217;s getting there. When it&#8217;s working fully it could make the n900 a very useful device for portable podcasting, allowing users to record, edit, mix, encode and upload their roaming shows with nothing more than their phone.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikeasoft.com/2010/06/18/jokosher-on-the-nokia-n900/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GStreamer OpenCV plugins on the Nokia n900</title>
		<link>http://blog.mikeasoft.com/2010/06/17/gstreamer-opencv-plugins-on-the-nokia-n900/</link>
		<comments>http://blog.mikeasoft.com/2010/06/17/gstreamer-opencv-plugins-on-the-nokia-n900/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 15:49:46 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[embedded]]></category>
		<category><![CDATA[gstreamer]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[opencv]]></category>

		<guid isPermaLink="false">http://blog.mikeasoft.com/?p=166</guid>
		<description><![CDATA[A while back I wrote a few GStreamer plugins that expose OpenCV functionality as GStreamer elements (source code), I haven&#8217;t had much time to work on these recently myself, but thankfully a number of other folks have started contributing now. Yesterday Daniil Ivanov kindly packaged gst-opencv for the maemo extras-devel repository, and the n900 performs [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I wrote a few GStreamer plugins that expose OpenCV functionality as GStreamer elements (<a href='http://github.com/Elleo/gst-opencv'>source code</a>), I haven&#8217;t had much time to work on these recently myself, but thankfully a number of <a href="http://github.com/Elleo/gst-opencv/network/members">other folks</a> have started contributing now. Yesterday Daniil Ivanov kindly packaged gst-opencv for the <a href='http://maemo.org/packages/view/gst-opencv/'>maemo extras-devel repository</a>, and the n900 performs surprisingly well considering how CPU intensive many of the vision operations performed are.</p>
<p>This first video shows edge detection being performed from the n900&#8217;s main camera (whilst simultaneously being encoded):</p>
<p><video controls src='http://mikeasoft.com/~mike/edgedetect.ogv'><a href='http://mikeasoft.com/~mike/edgedetect.ogv'>http://mikeasoft.com/~mike/edgedetect.ogv</a></video></p>
<p>Example gst-launch line: <tt>gst-launch v4l2camsrc device=/dev/video0 ! video/x-raw-yuv,width=480,height=272 ! videorate ! video/x-raw-yuv,framerate=12/1 ! ffmpegcolorspace ! edgedetect ! ffmpegcolorspace ! xvimagesink</tt></p>
<p>This second video shows the faceblur element in action, it detects any faces in the current scene and blurs them out, the frame rate and resolution on this one had to be reduced somewhat due to the complexity of the operation, it looks clearer when performed directly to an xvimagesink rather than attempting to encode at the same time.</p>
<p><video controls src='http://mikeasoft.com/~mike/faceblur.ogv'><a href='http://mikeasoft.com/~mike/faceblur.ogv'>http://mikeasoft.com/~mike/faceblur.ogv</a></video></p>
<p>Example gst-launch line: <tt>gst-launch v4l2camsrc device=/dev/video0 ! video/x-raw-yuv,width=240,height=136 ! videorate ! video/x-raw-yuv,width=240,height=136,framerate=6/1 ! videoscale ! video/x-raw-yuv,width=120,height=68 ! ffmpegcolorspace ! faceblur profile=/home/user/haarcascade_frontalface_default.xml ! ffmpegcolorspace ! xvimagesink</tt></p>
<p>For some more examples of the gst-opencv plugins in action on a normal desktop machine take a look at <a href='http://thiagossantos.blogspot.com/2010/05/hacking-in-gst-opencv.html'>thiagoss&#8217; blog post</a> and a couple of videos by <a href='http://blogs.elphel.com/2009/11/interfacing-elphel-cameras-with-gstreamer-opencv-opengl-and-python-get-profit-of-dsp-or-gpu-based-optimisation-control-camera-settings-from-python-application-or-human-interface-device-hid/'>Alexandre Poltorak</a> (<a href='http://vimeo.com/6685027'>edge detection</a> and <a href='http://vimeo.com/6866036'>face blurring</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikeasoft.com/2010/06/17/gstreamer-opencv-plugins-on-the-nokia-n900/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Jokosher Summer of Code Projects</title>
		<link>http://blog.mikeasoft.com/2010/06/02/jokosher-summer-of-code-projects/</link>
		<comments>http://blog.mikeasoft.com/2010/06/02/jokosher-summer-of-code-projects/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 16:07:31 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[gstreamer]]></category>
		<category><![CDATA[jokosher]]></category>
		<category><![CDATA[soc]]></category>
		<category><![CDATA[telepathy]]></category>

		<guid isPermaLink="false">http://blog.mikeasoft.com/?p=149</guid>
		<description><![CDATA[This year we&#8217;re lucky enough to have three students working on Jokosher as part of the Google Summer of Code, two under GNOME and one under GStreamer.
Andi Miller
 Andi is looking into making it possible to do collaborative editing tasks between multiple Jokosher instances, between Jokosher and Pitivi and potentially between Jokosher and a small [...]]]></description>
			<content:encoded><![CDATA[<p>This year we&#8217;re lucky enough to have three students working on <a href="http://jokosher.org">Jokosher</a> as part of the Google Summer of Code, two under <a href="http://www.gnome.org">GNOME</a> and one under <a href="http://gstreamer.freedesktop.org">GStreamer</a>.</p>
<h4><a href="http://users.aber.ac.uk/apm9/wordpress/">Andi Miller</a></h4>
<p> Andi is looking into making it possible to do collaborative editing tasks between multiple Jokosher instances, between Jokosher and <a href="http://www.pitivi.org">Pitivi</a> and potentially between Jokosher and a small remote control (so you can use your phone/MID to start Jokosher recording/playing without needing to be sat at your PC). The project is progressing well with some Jokosher information and events already being exposed via a dbus interface.</p>
<h4><a href="http://pecisk.blogspot.com/">Pēteris Krišjānis</a></h4>
<p> Pēteris is working on finishing up some old work to provide telepathy support within Jokosher and then further extending this to add support for telepathy tubes. This will make it very easy for users to record VoIP sessions within Jokosher and the tubes support will also tie-in with the collaborative editing project, allowing Andi to send dbus messages via telepathy connections to remote users. The most interesting use case from my perspective is for podcasters working over VoIP, in the scenario where both participants are using Jokosher it should be possible for them to carry out a standard VoIP call and then afterwards have the two Jokosher instances automatically synchronise a high quality recording of each participant&#8217;s side of the conversation; so while the VoIP call quality might not be perfect the final audio will sound as if they&#8217;re both in a studio together.</p>
<h4><a href="http://redache.wordpress.com/">David Williams</a></h4>
<p> David is attempting to add musical score editing support to Jokosher, allowing people to sketch out musical ideas that can be played back as MIDI instruments alongside normal recorded audio. He&#8217;s already made some good progress in creating a python GStreamer element that can output some simple MusicXML based on an internal model (which can then be rendered to MIDI via the <a href="http://blog.mikeasoft.com/2010/03/19/gstreamer-musicxml2midi-release-0-1/">musicxml2midi element</a>), this will then later be connected to a score editing UI, with the potential for multiple interface types (traditional scores, guitar tablature, drum events, etc.).</p>
<p> So hopefully by the end of the summer we&#8217;ll not only have a number of very exciting new features but also three more core Jokosher developers <img src='http://blog.mikeasoft.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikeasoft.com/2010/06/02/jokosher-summer-of-code-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GStreamer MusicXML2MIDI Release 0.1</title>
		<link>http://blog.mikeasoft.com/2010/03/19/gstreamer-musicxml2midi-release-0-1/</link>
		<comments>http://blog.mikeasoft.com/2010/03/19/gstreamer-musicxml2midi-release-0-1/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 15:55:07 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[gstreamer]]></category>
		<category><![CDATA[jokosher]]></category>
		<category><![CDATA[midi]]></category>
		<category><![CDATA[musicxml]]></category>
		<category><![CDATA[musicxml2midi]]></category>

		<guid isPermaLink="false">http://blog.mikeasoft.com/?p=136</guid>
		<description><![CDATA[A few months back I started writing a GStreamer element for converting MusicXML into MIDI, the eventual goal of this from my perspective is to allow for score editing inside Jokosher (without Jokosher having to deal with all the pain of the MIDI format itself). It&#8217;s far from being perfect and still has trouble with [...]]]></description>
			<content:encoded><![CDATA[<p>A few months back I started writing a GStreamer element for converting MusicXML into MIDI, the eventual goal of this from my perspective is to allow for score editing inside Jokosher (without Jokosher having to deal with all the pain of the MIDI format itself). It&#8217;s far from being perfect and still has trouble with more complicated files, but hopefully it&#8217;ll be of use to some people in its current state so I&#8217;m releasing version 0.1.</p>
<h4>Example Uses</h4>
<ul>
<li>Synthesising MusicXML directly: <br />
                <tt>gst-launch filesrc location=song.xml ! musicxml2midi ! wildmidi ! audioconvert ! autoaudiosink</tt></li>
<li>Generating a MIDI file: <br />
                <tt>gst-launch filesrc location=song.xml ! musicxml2midi ! filesink location=song.mid</tt></li>
<li>Generating an OGG Vorbis file: <br />
                <tt>gst-launch filesrc location=song.xml ! musicxml2midi ! wildmidi ! audioconvert ! vorbisenc ! oggmux ! filesink location=song.ogg</tt></li>
</ul>
<p>Running the OGG Vorbis pipeline on the <a href="http://github.com/Elleo/gst-musicxml2midi/blob/master/samples/twovoices.xml">twovoices.xml</a> test file produces the following output:</p>
<p><audio controls src="http://blog.mikeasoft.com/wp-content/uploads/2010/03/twovoices-musicxml.ogg"><a href="http://blog.mikeasoft.com/wp-content/uploads/2010/03/twovoices-musicxml.ogg">twovoices-musicxml.ogg</a></audio></p>
<h4>Download</h4>
<p> <a href="http://github.com/downloads/Elleo/gst-musicxml2midi/gst-musicxml2midi-0.1.tar.gz">MusicXML2MIDI 0.1 &#8211; Source Package</a><br />
 <a href="https://launchpad.net/~gst-musicxml2midi/+archive/ppa/+files/gst-musicxml2midi_0.1-0_i386.deb">MusicXML2MIDI 0.1 &#8211; Debian/Ubuntu Package for 32-bit systems</a><br />
 <a href="https://launchpad.net/~gst-musicxml2midi/+archive/ppa/+files/gst-musicxml2midi_0.1-0_amd64.deb">MusicXML2MIDI 0.1 &#8211; Debian/Ubuntu Package for 64-bit systems</a></p>
<p> Alternatively there&#8217;s a PPA available: <a href="https://launchpad.net/~gst-musicxml2midi/+archive/ppa/">https://launchpad.net/~gst-musicxml2midi/+archive/ppa/</a></p>
<h4>Contribute</h4>
<p> All the source code is stored in a git repository: <a href="http://github.com/Elleo/gst-musicxml2midi">http://github.com/Elleo/gst-musicxml2midi</a>. If you&#8217;d like to help out simply clone the repository and start hacking away, once you&#8217;re happy with your changes you can propose your branch for merging with my own.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikeasoft.com/2010/03/19/gstreamer-musicxml2midi-release-0-1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Libre Droid</title>
		<link>http://blog.mikeasoft.com/2009/08/05/libre-droid/</link>
		<comments>http://blog.mikeasoft.com/2009/08/05/libre-droid/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 19:57:38 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[libredroid]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[OpenMoko]]></category>

		<guid isPermaLink="false">http://blog.mikeasoft.com/?p=126</guid>
		<description><![CDATA[
For the past few months I&#8217;ve been working on the Libre.fm music service. It provides Last.fm compatible APIs, allowing you to submit your listening habits and to stream creative commons music.
Over the past week I&#8217;ve put together an Android application called Libre Droid, allowing people to stream music from libre.fm directly to their Android mobile [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.libre.fm"><img style="border: 0px;" src="http://mikeasoft.com/~mike/librefm.png" alt="Libre.fm" /></a></p>
<p>For the past few months I&#8217;ve been working on the <a href="http://www.libre.fm">Libre.fm</a> music service. It provides <a href="http://www.last.fm">Last.fm</a> compatible APIs, allowing you to submit your listening habits and to stream creative commons music.</p>
<p>Over the past week I&#8217;ve put together an Android application called Libre Droid, allowing people to stream music from libre.fm directly to their Android mobile phones. Here&#8217;s a short video of it in action:</p>
<p><video controls src="http://mikeasoft.com/~mike/libredroid.ogg"><a href="http://mikeasoft.com/~mike/libredroid.ogg">http://mikeasoft.com/~mike/libredroid.ogg</a></video></p>
<p>It&#8217;s now available for download (for free) from the Android marketplace, scan the image below with your phone (or click it in your phone&#8217;s browser) to download it:</p>
<p><a href="market://search?q=pname:fm.libre.droid"><img src="http://mikeasoft.com/~mike/libredroid-marketplace.png" /></a></p>
<p>Alternatively if you don&#8217;t have access to the marketplace (e.g. if you&#8217;re using Android on an unofficial platform like the <a href="http://www.openmoko.org">OpenMoko</a> phones) you can download the package directly from: <a href="http://mikeasoft.com/~mike/libredroid-1.2.apk">http://mikeasoft.com/~mike/libredroid-1.2.apk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikeasoft.com/2009/08/05/libre-droid/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Jokosher For Windows</title>
		<link>http://blog.mikeasoft.com/2009/03/17/jokosher-for-windows/</link>
		<comments>http://blog.mikeasoft.com/2009/03/17/jokosher-for-windows/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 20:54:14 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.mikeasoft.com/?p=117</guid>
		<description><![CDATA[A Not-So-Secret Project
 With Jokosher 0.11.1 on the verge of release I think it&#8217;s time that I made my not-so-secret project slightly more public. For the past few months I&#8217;ve been slaving away to bring Jokosher to the poor unfortunate souls who, for whatever reason, are still stuck using Windows. That task is now for [...]]]></description>
			<content:encoded><![CDATA[<h4>A Not-So-Secret Project</h4>
<p> With <a href="http://www.jokosher.org">Jokosher</a> 0.11.1 on the verge of release I think it&#8217;s time that I made my not-so-secret project slightly more public. For the past few months I&#8217;ve been slaving away to bring Jokosher to the poor unfortunate souls who, for whatever reason, are still stuck using Windows. That task is now for the most part complete, as this pretty screenshot will attest:</p>
<p><a href="http://blog.mikeasoft.com/wp-content/uploads/2009/03/jokosher_windows_0_11.png"><img src="http://blog.mikeasoft.com/wp-content/uploads/2009/03/jokosher_windows_0_11-300x216.png" alt="Jokosher running on Windows" title="Jokosher running on Windows" width="300" height="216" class="alignnone size-medium wp-image-118" /></a></p>
<h4>Testers Wanted</h4>
<p> Jokosher&#8217;s 0.11.2 release will feature an easy to install Windows package, however I&#8217;m making a release candidate available now in the hopes that any major bugs can be discovered before the main public release. So if you have a Windows machine handy and feel like having a fiddle with Jokosher just download the installer package below. Everything you need is included in that one package, so installing it should be no different than installing any other Windows application. Then if you find any bugs please report them in the Jokosher <a href="https://launchpad.net/jokosher/+filebug">bug tracker</a>.</p>
<ul>
<li><a href="http://mikeasoft.com/~mike/jokosher_setup_0.11rc4.exe">Download Jokosher 0.11rc4 Windows Installer</a></li>
<li><a href="https://launchpad.net/jokosher/+filebug">File a bug</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikeasoft.com/2009/03/17/jokosher-for-windows/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Announcing Tango Friends</title>
		<link>http://blog.mikeasoft.com/2009/02/10/announcing-tango-friends/</link>
		<comments>http://blog.mikeasoft.com/2009/02/10/announcing-tango-friends/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 20:44:59 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[fosdem]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[OpenMoko]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[osm]]></category>
		<category><![CDATA[tangogps]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.mikeasoft.com/?p=114</guid>
		<description><![CDATA[With only my EeePC available (and so no real work to distract me) on the way back from FOSDEM I decided to pass the time by hacking together a little web interface to TangoGPS&#8217;s public friends server, which allows TangoGPS users to share their location with other Tango users. So now you can stalk your [...]]]></description>
			<content:encoded><![CDATA[<p>With only my EeePC available (and so no real work to distract me) on the way back from FOSDEM I decided to pass the time by hacking together a little web interface to <a href="http://www.tangogps.org">TangoGPS&#8217;s</a> public friends server, which allows TangoGPS users to share their location with other Tango users. So now you can stalk your <a href="http://www.openmoko.org">OpenMoko</a> toting friends even easier from any internet enabled computer. It uses <a href="http://www.openstreetmap.org">OpenStreetMap</a> for the maps and automatically queries the tango friends sever every 10 minutes. </p>
<p>It can be found at <a href="http://mikeasoft.com/~mike/tangofriends">http://mikeasoft.com/~mike/tangofriends</a>.</p>
<p><a href='http://mikeasoft.com/~mike/tangofriends'><img src="http://blog.mikeasoft.com/wp-content/uploads/2009/02/tangofriends1.png" alt="" title="Tango Friends" width="320" height="240" class="alignnone size-full wp-image-116" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikeasoft.com/2009/02/10/announcing-tango-friends/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>FBReader now working on the OpenMoko FreeRunner</title>
		<link>http://blog.mikeasoft.com/2008/10/12/fbreader-now-working-on-the-openmoko-freerunner/</link>
		<comments>http://blog.mikeasoft.com/2008/10/12/fbreader-now-working-on-the-openmoko-freerunner/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 19:09:22 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[OpenMoko]]></category>

		<guid isPermaLink="false">http://blog.mikeasoft.com/?p=111</guid>
		<description><![CDATA[I&#8217;ve just spent the day hacking on FBReader to make it work correctly under OpenMoko (OM2008.*). Until now it&#8217;s been pretty much unusable due to the GPE version of FBReader expecting you to be using a device that has some physical buttons which then get bound to vital functions like turning the page. The changes [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just spent the day hacking on FBReader to make it work correctly under OpenMoko (OM2008.*). Until now it&#8217;s been pretty much unusable due to the GPE version of FBReader expecting you to be using a device that has some physical buttons which then get bound to vital functions like turning the page. The changes I&#8217;ve made are as follows:</p>
<ul>
<li>Add scroll forward/backward buttons to the toolbar</li>
<li>Add fullscreen mode button to the toolbar (doesn&#8217;t have an icon at the moment, it&#8217;s the third button from the right)</li>
<li>Change fullscreen mode so that it doesn&#8217;t hide the toolbar (otherwise there&#8217;s no way to get back from fullscreen mode)</li>
<li>Switch to using the much prettier blue tango icons</li>
<li>Make the line separation larger so the text doesn&#8217;t overlap</li>
<li>Reduce the font size</li>
<li>Change the default colours to match openmoko&#8217;s colour scheme better (and so it&#8217;s a little easier on the eyes)</li>
</ul>
<p>And most importantly&#8230;</p>
<ul>
<li>Make it so that tapping the sides of the screen turns the book&#8217;s pages (left = backwards, right = forwards)</li>
</ul>
<p>Here&#8217;s a screenshot of what it used to look like:</p>
<p><a href='http://blog.mikeasoft.com/wp-content/uploads/2008/10/fbreader-orig.png'><img src="http://blog.mikeasoft.com/wp-content/uploads/2008/10/fbreader-orig.png" alt="" title="fbreader-orig" class="alignnone size-medium wp-image-113" /></a></p>
<p>And what it looks like with my patches:</p>
<p><a href='http://blog.mikeasoft.com/wp-content/uploads/2008/10/fbreader-openmoko.png'><img src="http://blog.mikeasoft.com/wp-content/uploads/2008/10/fbreader-openmoko.png" alt="" title="fbreader-openmoko" class="alignnone size-medium wp-image-112" /></a></p>
<p>To install it simply run:<br />
<code><br />
opkg install http://mikeasoft.com/~mike/openmoko/enca_1.9-r3_armv4t.ipk http://mikeasoft.com/~mike/openmoko/fbreader_0.8.2a-r7+elleopatches_om-gta02.ipk<br />
</code></p>
<p>For those interested the patch can also be downloaded from <a href="http://mikeasoft.com/~mike/openmoko/fbreader-openmoko.patch">http://mikeasoft.com/~mike/openmoko/fbreader-openmoko.patch</a>.</p>
<p>Bonus points for anyone who knows what book I&#8217;m testing it with in the screenshots (without googling) <img src='http://blog.mikeasoft.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikeasoft.com/2008/10/12/fbreader-now-working-on-the-openmoko-freerunner/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Jokosher running on the Neo FreeRunner</title>
		<link>http://blog.mikeasoft.com/2008/08/16/jokosher-running-on-the-neo-freerunner/</link>
		<comments>http://blog.mikeasoft.com/2008/08/16/jokosher-running-on-the-neo-freerunner/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 23:38:15 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[jokosher]]></category>
		<category><![CDATA[OpenMoko]]></category>

		<guid isPermaLink="false">http://blog.mikeasoft.com/?p=108</guid>
		<description><![CDATA[Just for a bit of fun I thought I&#8217;d see how well Jokosher runs on the Neo FreeRunner mobile phone. It actually seems to be almost usable, I might see about finally looking at bug #228035 (making Jokosher more usable on small screen devices) to make it a bit easier to use.

Once some of the [...]]]></description>
			<content:encoded><![CDATA[<p>Just for a bit of fun I thought I&#8217;d see how well Jokosher runs on the Neo FreeRunner mobile phone. It actually seems to be almost usable, I might see about finally looking at <a href="https://bugs.launchpad.net/jokosher/+bug/228035">bug #228035</a> (making Jokosher more usable on small screen devices) to make it a bit easier to use.</p>
<p><a href='http://blog.mikeasoft.com/wp-content/uploads/2008/08/jokosher-phone.jpg'><img src="http://blog.mikeasoft.com/wp-content/uploads/2008/08/jokosher-phone-174x300.jpg" alt="Jokosher on the Neo FreeRunner" title="Jokosher on the Neo FreeRunner" width="174" height="300" class="alignnone size-medium wp-image-109" /></a></p>
<p>Once some of the other more important tasks are completed I might also go back and take a look at implementing the Jokosher remote that we&#8217;ve had planned for a few years.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikeasoft.com/2008/08/16/jokosher-running-on-the-neo-freerunner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improved Crash Protection for Jokosher</title>
		<link>http://blog.mikeasoft.com/2008/08/10/improved-crash-protection-for-jokosher/</link>
		<comments>http://blog.mikeasoft.com/2008/08/10/improved-crash-protection-for-jokosher/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 00:23:23 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[jokosher]]></category>

		<guid isPermaLink="false">http://blog.mikeasoft.com/?p=106</guid>
		<description><![CDATA[I&#8217;ve just about finished rewriting the crash protection code for Jokosher. It now supports recovering multiple crashed projects at any time after the fact (instead of forcing you to choose immediately after a crash has occurred). It also checks that the crashed project hasn&#8217;t changed since the backup was saved and makes sure the user [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just about finished rewriting the crash protection code for Jokosher. It now supports recovering multiple crashed projects at any time after the fact (instead of forcing you to choose immediately after a crash has occurred). It also checks that the crashed project hasn&#8217;t changed since the backup was saved and makes sure the user really wants to restore the project if this is the case.</p>
<p><img src='http://blog.mikeasoft.com/wp-content/uploads/2008/08/crash-protection.png' /></p>
<p>Jokosher has recently moved to using bazaar instead of SVN, as such this feature has it&#8217;s own <a href="https://code.launchpad.net/~michael-sheldon/jokosher/crash_protection">branch</a>, we&#8217;ll still need to see if this branch gets merged before or after the 0.10 release.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikeasoft.com/2008/08/10/improved-crash-protection-for-jokosher/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
