<?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>Twaddle</title>
	<atom:link href="http://twaddle.mobi/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://twaddle.mobi</link>
	<description>Information for the Windows Mobile twitter client</description>
	<lastBuildDate>Sun, 05 Sep 2010 12:08:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Introduction to writing a Plugin</title>
		<link>http://twaddle.mobi/index.php/2010/09/05/introduction-to-writing-a-plugin/</link>
		<comments>http://twaddle.mobi/index.php/2010/09/05/introduction-to-writing-a-plugin/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 12:05:13 +0000</pubDate>
		<dc:creator>MrMDavidson</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[0.3]]></category>

		<guid isPermaLink="false">http://twaddle.mobi/?p=98</guid>
		<description><![CDATA[There&#8217;s a good chance that any developers who read these updates will be chomping at the bit to learn more about the plugins I mentioned a few posts back. To help these guys out (or until 0.3 is released, tease them) I figured I&#8217;d write a few posts on how one develops plugins for Twaddle.
First [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a good chance that any developers who read these updates will be chomping at the bit to learn more about the plugins I mentioned a few posts back. To help these guys out (or until 0.3 is released, tease them) I figured I&#8217;d write a few posts on how one develops plugins for Twaddle.</p>
<p>First of all: Where does a developer place their plugins for Twaddle to pick them up? With 0.3 there&#8217;ll be a &#8220;Plugin&#8221; directory in the main Twaddle application directory. Developers should install their plugins into a subdirectory of the Plugins directory. Eg: <code>\Program Files\Twaddle\Plugins\MichaelsCoolPlugin\</code>. Any linked assemblies, resources, etc, should also sit within this directory. The only other point to mention here is that if you want your plugins to be loaded the filename must contain the string <strong><code>.Plugin.</code></strong> (Note the period at the start and end) as well as <strong><code>.dll</code></strong>. This way if the directory <code>\Program Files\Twaddle\Plugins\MichaelsCoolPlugin\</code> contains the files <code>Michael.Resources.dll</code>, <code>Michael.Plugin.dll</code> and <code>ThirdParty.Library.dll</code> Twaddle would only attempt to load plugins from <code>Michael.Plugin.dll</code>. This helps to ensure start times for Twaddle are low.</p>
<p>Once Twaddle has found your assembly it will look through all of the public, non-abstract, non-interface types in your assembly and look at the interfaces they implement. There are several different interfaces you can implement which control the style of plugin you&#8217;re writing. The same class can implement multiple interfaces and there can be multiple plugins in the one assembly. Note that if your class does implement several plugin interfaces then one instance will be created for each plugin interface. So if you need to share data between the instances you&#8217;ll have to handle that yourself.</p>
<p>All of these interfaces (as well as many others Twaddle gives you) are defined in the Twaddle.Interface assembly (which I&#8217;ll distribute) and your plugin will need to link to. In addition all of the different interfaces are marked as implementing the <code>Twaddle.Interface.IPlugin</code> interface. This interface is an informational interface that tells Twaddle about your plugin (some of which is then displayed to the end user). The definition of <code>IPlugin</code> is as follows:</p>
<pre class="brush:c-sharp">
public interface IPlugin {
    /// &lt;summary&gt;
    /// A Unique identifier that will remain consistent regardless of locale, build, etc.
    /// &lt;/summary&gt;
    string Id { get; }

    /// &lt;summary&gt;
    /// The short name for this plugin
    /// &lt;example&gt;Public Timeline&lt;/example&gt;
    /// &lt;/summary&gt;
    string Name { get; }

    /// &lt;summary&gt;
    /// A longer descriptor of the plugin
    /// &lt;example&gt;The Public Timeline plugin updates and displays the current user's timline&lt;/example&gt;
    /// &lt;/summary&gt;
    string Description { get; }

    IPluginConfiguration Configuration(IAppSettings settings);

    /// &lt;summary&gt;
    /// A rough indication of the amount of network data this plugin uses
    /// &lt;/summary&gt;
    UsageAmount Data { get; }

    /// &lt;summary&gt;
    /// A rough indication of the amount of memory this plugin uses
    /// &lt;/summary&gt;
    UsageAmount Memory { get; }

    /// &lt;summary&gt;
    /// A rough indication of the amount of processor this plugin uses
    /// &lt;/summary&gt;
    UsageAmount CPU { get; }

    /// &lt;summary&gt;
    /// A rough indication of the amount of battery this plugin uses
    /// &lt;/summary&gt;
    UsageAmount Battery { get; }

    /// &lt;summary&gt;
    /// A rough indication of the amount of disk space this plugin uses
    /// &lt;/summary&gt;
    UsageAmount Storage { get; }
};
</pre>
<p>The Id property should be a unique value for your plugin as it&#8217;s used to store user settings. A good candidate would be a pre-generated guid constant (ie return &#8220;21EC2020-3AEA-1069-A2DD-08002B30309D&#8221; instead of doing <code>return Guid.NewGuid().ToString()</code> or the namespace of your plugin (&#8220;Michael.CoolPlugin.SomeSnazzyEventResponderPlugin&#8221;. The Name property is displayed to the user when configuring your plugin whilst the Description property is used to tell the user a little bit more about your plugin.</p>
<p>The UsageAmount returning properties (Storage, Battery, etc) are intended as a rough guide to the User so they can make an informed decision as to if they want to leave your plugin enabled or not. The values are None, Inconsequential, Low, Medium, and High. As an example a video uploading plugin would likely have a High Storage and Data value (as they save and upload video files). A picture uploading plugin would probably be Medium Storage and Medium Data. A plugin that pings your server once an hour might have a Data value of Inconsequential. Whilst one that has no network connectivity would be None.</p>
<p>I&#8217;m going to skip the Configuration() method because it would comprise its whole own post. But if your plugin has no configuration at all you can return null from this method.</p>
<p>Of course these <code>IPlugins</code> don&#8217;t describe much on their own. The interfaces you&#8217;d actually be implementing are <code>ITaskPlugin</code>, <code>IFormControlPlugin</code>, <code>IEventResponderPlugin</code>, <code>IMenuPlugin</code>, <code>IPendingItemProcessorPlugin</code>,<code>IPostFormControlPlugin</code> and <code>ISendMessageFormControlPlugin</code>. The final two may get merged before 0.3 (I haven&#8217;t decided yet). Hopefully the name of these interfaces should give you some indication of what they do, but I&#8217;ll give more details in a future post.</p>
<p>Before I finish up here there is one more interface a plugin developer will need to be familiar with. <code>IDependencyResolver</code>. This is defined as:</p>
<pre class="brush:c-sharp">
public interface IDependencyResolver {
    TDependency Resolve&lt;TDependency&gt;() where TDependency : IDependency;
    TDependency Resolve&lt;TDependency&gt;(string name) where TDependency : IDependency;
}
</pre>
<p><code>IDependency</code> is a marker interface used to give compile-time checking over what interfaces defined in Twaddle.Interface are obtained through the <code>IDependencyResolver</code>. This is because some are implemented by the developer and others are passed into methods that different plugins use. All plugin types are given an <code>IDependencyResolver</code> at instantiation and they should maintain a reference to this object. The instance given is different between each plugin instance (as there&#8217;s different types returned for some of the dependencies, or instance-specific information returned).</p>
<p>Lets say that you&#8217;re implementing a new screen in Twaddle and want to get a list of actions applicable to a tweet (something that other developers can provide by creating <code>IMenuPlugin</code> implementations). How would you do this? Well, there&#8217;s an interface <code>IMenuItemFactory</code> which can take a tweet as an argument and return a list of <code>MenuItem</code>&#8217;s for you to display in your interface. Sample code might look like:</p>
<pre class="brush:c-sharp">
private void DisplayMenuItems(IDependencyResolver resolver, IStatus selectedTweet) {
  IMenuItemFactory factory = resolver.Resolve&lt;IMenuItemFactory&gt;();
  ICollection&lt;MenuItem&gt; menu = factory.Items(selectedTweet);

  // Now add the items in menu to your on screen menu, or some such.
}</pre>
<p>I think that should be enough of a brief introduction for now &#8211; I&#8217;ll start writing an posts describing each of the plugin interfaces in turn. I&#8217;ve put a poll up for you to vote on which you&#8217;re most interested in learning more about.</p>
]]></content:encoded>
			<wfw:commentRss>http://twaddle.mobi/index.php/2010/09/05/introduction-to-writing-a-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TwitPic integration</title>
		<link>http://twaddle.mobi/index.php/2010/08/15/twitpic-integration/</link>
		<comments>http://twaddle.mobi/index.php/2010/08/15/twitpic-integration/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 05:24:49 +0000</pubDate>
		<dc:creator>MrMDavidson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Screenshot]]></category>
		<category><![CDATA[0.3]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://twaddle.mobi/?p=95</guid>
		<description><![CDATA[A few weekends back I finished implementing OAuth Echo support in Twaddle. This is the new, secure, way for you to use a third party site which communicates with Twitter for you. The classic example of this is photo sharing services such as TwitPic. Previously such services requires you to send them your username / [...]]]></description>
			<content:encoded><![CDATA[<p>A few weekends back I finished implementing OAuth Echo support in Twaddle. This is the new, secure, way for you to use a third party site which communicates with Twitter for you. The classic example of this is photo sharing services such as TwitPic. Previously such services requires you to send them your username / password which isn&#8217;t a good idea. Using OAuth Echo you send them an opaque bit of data that uniquely (and securely) identifies the request as coming from you &#8211; the third party site then &#8220;echos&#8221; this data to Twitter to use for authentication.</p>
<p>OAuth Echo support &#8211; in conjunction with the new extensible architecture of Twaddle &#8211; means that over the course of a few hours I was able to provide TwitPic support within Twaddle. This support allows you to take a new picture with your phone&#8217;s camera (for devices with cameras) or to use an existing photo, both with preview support.</p>
<div class="screenshot">
  <img src="http://twaddle.mobi/images/0.3/TwitPic01.png" class="screenshot" /></p>
<div class="caption">Image Upload &#8211; Take a new photo or upload a file</div>
</div>
<div class="screenshot">
  <img src="http://twaddle.mobi/images/0.3/TwitPic02.png" class="screenshot" /></p>
<div class="caption">Image Upload &#8211; Selecting an image</div>
</div>
<div class="screenshot">
  <img src="http://twaddle.mobi/images/0.3/TwitPic03.png" class="screenshot" /></p>
<div class="caption">Image Upload &#8211; Preview the image</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://twaddle.mobi/index.php/2010/08/15/twitpic-integration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Goodbye PINs, Hello XAuth!</title>
		<link>http://twaddle.mobi/index.php/2010/08/03/goodbye-pins-hello-xauth/</link>
		<comments>http://twaddle.mobi/index.php/2010/08/03/goodbye-pins-hello-xauth/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 13:51:49 +0000</pubDate>
		<dc:creator>MrMDavidson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Screenshot]]></category>
		<category><![CDATA[0.3]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://twaddle.mobi/?p=91</guid>
		<description><![CDATA[Yesterday the Twitter API team granted Twaddle access to the (newish) XAuth interface. What does that mean? Well it means that one of the biggest criticisms of Twaddle is gone. You&#8217;ll recall in previous versions to set up a new account you had to hit &#8220;Start&#8221; which would launch your browser. You&#8217;d then login to [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday the Twitter API team granted Twaddle access to the (newish) XAuth interface. What does that mean? Well it means that one of the biggest criticisms of Twaddle is gone. You&#8217;ll recall in previous versions to set up a new account you had to hit &#8220;Start&#8221; which would launch your browser. You&#8217;d then login to the Twitter website which would give you a 7 digit number. That number would need to be remembered and entered back into Twaddle. This process, which is relatively painless on a desktop or web application, was incredibly frustrating on a mobile device. XAuth is designed specifically to address this issue. I think the following screen shots of the new account setup process explain better than I could&#8230;</p>
<div class="screenshot">
<img class="screenshot" src="http://twaddle.mobi/images/0.3/xauth_start.png"/></p>
<div class="caption">Beginning the XAuth process</div>
</div>
<div class="screenshot">
<img class="screenshot" src="http://twaddle.mobi/images/0.3/xauth_finish.png"/></p>
<div class="caption">Finalising the XAuth process</div>
</div>
<p>&#8220;But isn&#8217;t this going back to username / password combinations which is insecure?&#8221; you may ask. Well, no, not really. The username / password combination is sent over a secure channel only once (at the time you fill out this form). Twitter verifies this and then sends back a token which is used for all subsequent requests. This is in fact identical to the OAuth process used in earlier versions the difference is how that token is acquired.</p>
<p>All you really need to know is that signing up with Twaddle is now pain free! Hooray!</p>
]]></content:encoded>
			<wfw:commentRss>http://twaddle.mobi/index.php/2010/08/03/goodbye-pins-hello-xauth/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What&#8217;s taking you?</title>
		<link>http://twaddle.mobi/index.php/2010/06/08/whats-taking-you/</link>
		<comments>http://twaddle.mobi/index.php/2010/06/08/whats-taking-you/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 01:56:49 +0000</pubDate>
		<dc:creator>MrMDavidson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[0.3]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://twaddle.mobi/?p=85</guid>
		<description><![CDATA[I do apologise for the delay on releasing the newest version of Twaddle. I guess this is a problem when you use free software developed by someone in their spare time, huh?
A couple of things have caused the delay of the latest version: Firstly my Real Job&#8482; I was the Technical Lead on a very [...]]]></description>
			<content:encoded><![CDATA[<p>I do apologise for the delay on releasing the newest version of Twaddle. I guess this is a problem when you use free software developed by someone in their spare time, huh?</p>
<p>A couple of things have caused the delay of the latest version: Firstly my Real Job&#8482; I was the Technical Lead on a very large project (since released successfully) which took up a lot of my time and motivation. I have also handed in my resignation and am currently looking for a new job. The upside of this is I&#8217;ll be taking a few weeks off before starting a new job. Time which I plan to devote to playing video games / coding Twaddle.</p>
<p>Secondly the announcement of Windows Phone 7, and what it means for developers of Windows Mobile apps, was a bit disheartening.</p>
<p>Thirdly: I&#8217;ve worked on a lot of the internals of Twaddle. This working means that third party developers will be able to write plugins for Twaddle. Don&#8217;t like the way it does notifications? Write your own! Want Twaddle to automatically hash tag things? Write a plugin! And so on, and so forth. This affects every aspect of Twaddle (The User Interface, background tasks, response to other events, etc) and required a fair amount of thought and tweaking. It also turned out to be a much bigger task than I&#8217;d initially anticipated. As to if any third party developers start writing plugins for Twaddle remains to be seen. But even if they don&#8217;t it will allow much quicker development of features for Twaddle, providing they fit within the existing model. I&#8217;ll release more technical details of this closer to the release date of 0.3 / if people are interested.</p>
<p>In the mean time, I apologise for the delay, but hope the delay will result in something everyone is really excited by.</p>
]]></content:encoded>
			<wfw:commentRss>http://twaddle.mobi/index.php/2010/06/08/whats-taking-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another milestone (2000 users!) and another teaser</title>
		<link>http://twaddle.mobi/index.php/2010/01/05/another-milestone-2000-users-and-another-teaser/</link>
		<comments>http://twaddle.mobi/index.php/2010/01/05/another-milestone-2000-users-and-another-teaser/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 12:55:16 +0000</pubDate>
		<dc:creator>MrMDavidson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Screenshot]]></category>
		<category><![CDATA[0.3]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://twaddle.mobi/?p=82</guid>
		<description><![CDATA[So today I just checked the statistics for Twaddle and there are over 2000 users who have allowed Twaddle to communicate with the Twitter servers. Whilst I&#8217;d love for this number to be 10,000 and for each of those users to be paying me a fiver, I&#8217;m still rather happy with these figures. In order [...]]]></description>
			<content:encoded><![CDATA[<p>So today I just checked the statistics for Twaddle and there are over 2000 users who have allowed Twaddle to communicate with the Twitter servers. Whilst I&#8217;d love for this number to be 10,000 and for each of those users to be paying me a fiver, I&#8217;m still rather happy with these figures. In order to celebrate this nice little milestone I thought I&#8217;d present you with a recent feature I implemented as part of the 0.3 release: Threaded Conversations.</p>
<div class="screenshot">
<img class="screenshot" src="http://twaddle.mobi/images/0.3/Conversation.png"/></p>
<div class="caption">0.3 Preview – Threaded Conversations</div>
</div>
<p>Here we can see a conversation I held between my personal account and the @TwaddleWM account. You may notice a very subtle tree structure of the list &#8211; this is to indicate the hierarchy of the conversation. This view only works when statuses are properly tagged as replies to another status (which Twaddle and the Twitter website do, but some clients seem to do less reliably). I&#8217;m so far finding this feature really useful to manage long running conversations throughout the day (and you can sometimes find some great new people to follow as a result!). This interface can be brought up from any of the other views within Twaddle and allows you to interact with the tweets just like they were in your normal timeline. Expect the interface and how this is rendered to change before the final 0.3 release &#8211; this is after all just a preview! If you have any suggestions on improving the layout, I&#8217;d love to hear them.</p>
<p>Also, don&#8217;t forget to take part in the poll on the right hand side &#8211; it&#8217;s a great way for you to voice your views on what feature you desperately want included in 0.3 !</p>
]]></content:encoded>
			<wfw:commentRss>http://twaddle.mobi/index.php/2010/01/05/another-milestone-2000-users-and-another-teaser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twaddle 0.2.1 Released!</title>
		<link>http://twaddle.mobi/index.php/2009/12/27/twaddle-0-2-1-released/</link>
		<comments>http://twaddle.mobi/index.php/2009/12/27/twaddle-0-2-1-released/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 09:24:10 +0000</pubDate>
		<dc:creator>MrMDavidson</dc:creator>
				<category><![CDATA[Download]]></category>

		<guid isPermaLink="false">http://twaddle.mobi/?p=77</guid>
		<description><![CDATA[Currently Twaddle has over 1800 users &#8211; which isn&#8217;t as a nice round number like 0.1.4 had &#8211; and I&#8217;m really excited to release 0.2.1. This release took longer than I had hoped but contains a lot of under-the-hood changes which were required for future growth of Twaddle. I also think I now have a [...]]]></description>
			<content:encoded><![CDATA[<p>Currently Twaddle has over 1800 users &#8211; which isn&#8217;t as a nice round number like 0.1.4 had &#8211; and I&#8217;m really excited to release 0.2.1. This release took longer than I had hoped but contains a lot of under-the-hood changes which were required for future growth of Twaddle. I also think I now have a really good road map of where I want to take Twaddle and the kind of impact that has on the user. Anyway, with my useless prattle out of the way, on to the bit you guys all care about; features and download links!</p>
<ul>
<li>Added tracking of @replies / mentions</li>
<li>Added full support for Direct Messages (Send, Receive, Delete, Notifications)</li>
<li>Improved touch-friendly interface</li>
<li>Support for multi-byte UTF8 characters</li>
<li>Much faster layout engine</li>
<li>Autocompletion of friends names when posting an update</li>
<li>Follow / unfollow a user from any view</li>
<li>Updates to a user&#8217;s avatar are handled</li>
<li>Finer grained control over when Twaddle automatically synchronises with Twitter</li>
<li>Many other bug fixes</li>
</ul>
<p>As per usual you can obtain this version in multiple ways;</p>
<ul>
<li><a href="http://www.apptodate.org/get" target="_blank">AppToDate</a> users can check for updates through AppToDate and automatically install the newest version that way.</li>
<li>By visiting <a title="Get Twaddle" href="http://get.twaddle.mobi" target="_blank">http://get.twaddle.mobi</a> on your Pocket PC&#8217;s browser</li>
<li><a title="Pocket PC Installation" href="http://twaddle.mobi/downloads/Twaddle.0.2.000433.1.cab">Pocket PC installation</a> &#8211; Run this file from your phone</li>
<li><a title="Desktop Installation" href="http://twaddle.mobi/downloads/Twaddle.0.2.000433.1.msi">Desktop installation</a> &#8211; Run this file from your Desktop. Twaddle will be installed next time you sync with that PC</li>
</ul>
<p>Finally, if you have Microsoft Tag Reader (visit <a title="Microsoft Tag Reader" href="http://gettag.mobi" target="_blank">gettag.mobi</a> on your phone&#8217;s browser) installed on your phone you can scan the tag below.</p>
<div style="text-align: center"><img src="http://twaddle.mobi/downloads/Twaddle.0.2.1.tag.png" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://twaddle.mobi/index.php/2009/12/27/twaddle-0-2-1-released/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>0.2 is nearly here!</title>
		<link>http://twaddle.mobi/index.php/2009/12/20/0-2-is-nearly-here/</link>
		<comments>http://twaddle.mobi/index.php/2009/12/20/0-2-is-nearly-here/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 06:55:26 +0000</pubDate>
		<dc:creator>MrMDavidson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[0.2]]></category>
		<category><![CDATA[new]]></category>

		<guid isPermaLink="false">http://twaddle.mobi/?p=74</guid>
		<description><![CDATA[It&#8217;s been a long time coming, but I&#8217;m excited to announce that Twaddle 0.2 is nearly here. I now consider 0.2 to be feature complete and am now going through the process of final testing before I release it. I&#8217;m hoping to have 0.2 released in time for Christmas (if only so I can lounge [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a long time coming, but I&#8217;m excited to announce that Twaddle 0.2 is nearly here. I now consider 0.2 to be feature complete and am now going through the process of final testing before I release it. I&#8217;m hoping to have 0.2 released in time for Christmas (if only so I can lounge about and play computer games instead of coding), but can&#8217;t promise anything.</p>
<p>A partial list of features, to whet your appetite, include;</p>
<ul>
<li>A revamped interface</li>
<li>Viewing mentions</li>
<li>Sending, receiving and viewing direct messages</li>
<li>Speed improvements</li>
<li>Better UTF8 support</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://twaddle.mobi/index.php/2009/12/20/0-2-is-nearly-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why the delay?</title>
		<link>http://twaddle.mobi/index.php/2009/10/13/why-the-delay/</link>
		<comments>http://twaddle.mobi/index.php/2009/10/13/why-the-delay/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 10:14:03 +0000</pubDate>
		<dc:creator>MrMDavidson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[0.2]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://twaddle.mobi/?p=71</guid>
		<description><![CDATA[I&#8217;d hoped to have a 0.2 of Twaddle out by now, unfortunately that&#8217;s not been the case.
First off, I recently moved house which took a fair amount of time and effort to get packed / unpacked and have DSL connected at my new place. In addition to this I&#8217;ve had a few Uni assignments which [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d hoped to have a 0.2 of Twaddle out by now, unfortunately that&#8217;s not been the case.</p>
<p>First off, I recently moved house which took a fair amount of time and effort to get packed / unpacked and have DSL connected at my new place. In addition to this I&#8217;ve had a few Uni assignments which took away even more time. In amongst all this my computer chair broke&#8230; I&#8217;ve purchased a <a href="http://www.hermanmiller.com/Products/Embody-Chairs" target="_blank">new chair</a> which won&#8217;t arrive for another 4 &#8211; 8 weeks. The dining chair I&#8217;m using in the mean time places a lot of strain on my back meaning I can only code for short periods of time.</p>
<p>Secondly, I&#8217;ve put a lot of work into making Twaddle a lot faster. On my HTC Touch Pro rotating the screen redraws virtually straight away and Twaddle continues to be responsive throughout the whole process. A vastly improved algorithm for laying out tweets (50 tweets get laid out in ~150ms on my phone) as well as moving non-visible layouts to a background process ensures Twaddle remains responsive throughout rotations. I&#8217;m still working on improving the speed of performing updates.</p>
<p>Long story short: 0.2 won&#8217;t be released as soon as I&#8217;d hoped as I&#8217;m putting a lot of work into it to ensure it far eclipses previous versions of Twaddle.</p>
]]></content:encoded>
			<wfw:commentRss>http://twaddle.mobi/index.php/2009/10/13/why-the-delay/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Twaddle 0.1.4 Released (Also: 1000 users!)</title>
		<link>http://twaddle.mobi/index.php/2009/09/13/twaddle-0-1-4-released-also-1000-users/</link>
		<comments>http://twaddle.mobi/index.php/2009/09/13/twaddle-0-1-4-released-also-1000-users/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 08:19:13 +0000</pubDate>
		<dc:creator>MrMDavidson</dc:creator>
				<category><![CDATA[Download]]></category>
		<category><![CDATA[0.1.4]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://twaddle.mobi/?p=67</guid>
		<description><![CDATA[Today the 1000th person authorised Twaddle to communicate with the Twitter.com servers on their behalf. To coincide with this great milestone I&#8217;ve decided to release Twaddle 0.1.4. This is a minor release (and hopefully the last in the 0.1 line before I release 0.2) which includes the following features;

Fixed problems sending Tweets with non-ASCII characters
Fixed [...]]]></description>
			<content:encoded><![CDATA[<p>Today the 1000th person authorised Twaddle to communicate with the Twitter.com servers on their behalf. To coincide with this great milestone I&#8217;ve decided to release Twaddle 0.1.4. This is a minor release (and hopefully the last in the 0.1 line before I release 0.2) which includes the following features;</p>
<ul>
<li>Fixed problems sending Tweets with non-ASCII characters</li>
<li>Fixed uninstall issues</li>
<li>Fixed resending tweets</li>
<li>Handle Twitter.com failures better</li>
</ul>
<p>You can obtain this version in multiple ways;</p>
<ul>
<li><a href="http://www.apptodate.org/get" target="_blank">AppToDate</a> users can check for updates through AppToDate and automatically install the newest version that way.</li>
<li>By visiting <a title="Get Twaddle" href="http://get.twaddle.mobi" target="_blank">http://get.twaddle.mobi</a> on your Pocket PC&#8217;s browser</li>
<li><a title="Pocket PC Installation" href="http://twaddle.mobi/downloads/Twaddle.0.1.000337.4.cab">Pocket PC installation</a> &#8211; Run this file from your phone</li>
<li><a title="Desktop Installation" href="http://twaddle.mobi/downloads/Twaddle.0.1.000337.4.msi">Desktop installation</a> &#8211; Run this file from your Desktop. Twaddle will be installed next time you sync with that PC</li>
</ul>
<p>Finally, if you have Microsoft Tag Reader (visit <a title="Microsoft Tag Reader" href="http://gettag.mobi" target="_blank">gettag.mobi</a> on your phone&#8217;s browser) installed on your phone you can scan the tag below.</p>
<div style="text-align: center"><img src="http://twaddle.mobi/downloads/Twaddle.0.1.4.tag.png" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://twaddle.mobi/index.php/2009/09/13/twaddle-0-1-4-released-also-1000-users/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Twaddle featured on PocketNow.com</title>
		<link>http://twaddle.mobi/index.php/2009/08/26/twaddle-featured-on-pocketnow-com/</link>
		<comments>http://twaddle.mobi/index.php/2009/08/26/twaddle-featured-on-pocketnow-com/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 12:36:30 +0000</pubDate>
		<dc:creator>MrMDavidson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://twaddle.mobi/?p=65</guid>
		<description><![CDATA[CJ Lippstreu over at PocketNow.com has features Twaddle. You can read the article over at the site. PocketNow being rather popular caused a bit of a surge in the number of downloads, followers and authentications for Twaddle.
As a result we now have over 300 users! Unfortunately, due to my recent house move (and lack of [...]]]></description>
			<content:encoded><![CDATA[<p>CJ Lippstreu over at <a href="http://www.pocketnow.com">PocketNow.com</a> has features Twaddle. You can read the article over at <a href="http://pocketnow.com/software-1/twaddle-new-twitter-client-for-windows-mobile">the site</a>. PocketNow being rather popular caused a bit of a surge in the number of downloads, followers and authentications for Twaddle.</p>
<p>As a result we now have over 300 users! Unfortunately, due to my recent house move (and lack of broadband) I don&#8217;t have any updated pictures to post as a &#8220;Thanks guys!&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://twaddle.mobi/index.php/2009/08/26/twaddle-featured-on-pocketnow-com/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
