<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.7.6(BH)" -->
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>Planet Maemo</title>
        <description>Blog entries from Maemo community</description>
        <link>http://maemo.org/news/planet-maemo/</link>
        <lastBuildDate>Tue, 09 Feb 2010 22:53:06 +0000</lastBuildDate>
        <generator>FeedCreator 1.7.6(BH)</generator>
        <language>en</language>
        <managingEditor>planet@maemo.org</managingEditor>
        <item>
            <title>Simple PySide tutorial, #2: signals and slots</title>
            <link>http://blog.rburchell.com/2010/02/simple-pyside-tutorial-2-signals-and.html</link>
            <description><![CDATA[
Second tutorial for PySide, this time focusing on Qt's signals and slots system, trying to provide a simple example of how they can be chained together to provide simpler code.<br /><br /><pre># Written by Robin Burchell  <br /># No licence specified or required, but please give credit where it's due, and please let me know if this helped you.<br /># Feel free to contact with corrections or suggestions.<br />#<br /># We're using PySide, Nokia's official LGPL bindings.<br /># You can however easily use PyQt (Riverside Computing's GPL bindings) by commenting these and fixing the appropriate imports.<br />from PySide.QtCore import *<br />from PySide.QtGui import *<br />#from PyQt4 import *<br />#from PyQt4.QtCore import *<br />#from PyQt4.QtGui import *<br />import sys<br /><br />class MyMainWindow(QWidget):<br /> def __init__(self):<br />  QWidget.__init__(self, None)<br /><br />  vbox = QVBoxLayout()<br /><br />  # Let's create two sliders widgets.<br />  #  http://doc.trolltech.com/4.6/qslider.html<br />  sone = QSlider(Qt.Horizontal)<br />  vbox.addWidget(sone)<br /><br />  stwo = QSlider(Qt.Horizontal)<br />  vbox.addWidget(stwo)<br /><br />  # Link the first slider to the second.<br />  # Think of this as an event and listener system - a signal is an event, and it can have multiple listeners.<br />  # A slot is a listener to an event.<br />  #<br />  # Signals are generally used whenever an action occurs which might require a reaction, or feedback - for example,<br />  # a user clicking on a button, or a slider value changing.<br />  #<br />  # A signal can provide one (or more) parameters, which can then be used in the corresponding slot(s).<br />  #<br />  # In this example, we're linking the valueChanged signal to setValue on the second slider, meaning that whenever the<br />  # first slider is moved, the second slider will move with it.<br />  #<br />  # This might look strange when compared with the .NET and other typical methods of doing it, but it<br />  # really is much more natural and easier to express.<br />  # See also:<br />  # http://doc.trolltech.com/4.6/signalsandslots.html<br />  self.connect(sone, SIGNAL("valueChanged(int)"), stwo, SLOT("setValue(int)"));<br /><br />  # Set the layout on the window: this means that our button will actually be displayed.<br />  self.setLayout(vbox)<br /><br />if __name__ == '__main__':<br /> app = QApplication(sys.argv)<br /> w = MyMainWindow()<br /> w.show()<br /> app.exec_()<br /> sys.exit()<br /></pre><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5305500004159797797-5647633479785285201?l=blog.rburchell.com' alt='' /></div><span class="net_nemein_favourites">3 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=5ec6cbb2158911dfa7b835084239aab6aab6&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/5ec6cbb2158911dfa7b835084239aab6aab6/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=5ec6cbb2158911dfa7b835084239aab6aab6&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/5ec6cbb2158911dfa7b835084239aab6aab6/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Robin Burchell &lt;viroteck@viroteck.net&gt;</author>
            <category>feed:a93f39245539231538463d349e184dd2</category>
            <pubDate>Tue, 09 Feb 2010 14:27:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-5ec6cbb2158911dfa7b835084239aab6aab6</guid>
        </item>
        <item>
            <title>Please don’t rewrite softwares (that are) written in .NET</title>
            <link>http://pvanhoof.be/blog/index.php/2010/02/09/please-dont-rewrite-softwares-written-in-net</link>
            <description><![CDATA[
<p>This (super) cool .NET developer and good friend came to me at the FOSDEM bar to tell me he was confused about why during the Tracker presentation I was asking people to replace F-Spot and Banshee.</p>
<p>I hope I didn&#8217;t say it like that, I would never intent to say that. But I&#8217;ll review the video of the presentation as soon as Rob publishes it.</p>
<p>Anyway, to ensure everybody understood correctly what I did wanted to say (whether or not I did, is another question):</p>
<p>The call was to inspire people to reimplement or to provide different implementations of F-Spot&#8217;s and Banshee&#8217;s data backends, so that they would use an RDF store like tracker-store instead of each app its own metadata database.</p>
<p>I think I also mentioned Rhythmbox in the same sentence because the last thing I would want is to turn this into a .NET vs. anti-.NET debate. It just happens to be that the best GNOME softwares for photo and music management are written in .NET (and that has a good reason).</p>
<p>People who know me also know that I think those anti-.NET people are disruptive ignorable people. I also actively and willingly ignore them (and they should know this). I&#8217;m actually a big fan of the Mono platform.</p>
<p>I&#8217;ll try to ensure that I don&#8217;t create this confusion during presentations anymore.</p>
<span class="net_nemein_favourites">3 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=5f8e33c2158011dfa296e582234accdeccde&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/5f8e33c2158011dfa296e582234accdeccde/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>2 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=5f8e33c2158011dfa296e582234accdeccde&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/5f8e33c2158011dfa296e582234accdeccde/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Philip Van Hoof &lt;pvanhoof@gnome.org&gt;</author>
            <category>feed:43af5b2374081abdd0dbc4ba26a0b54c</category>
            <pubDate>Tue, 09 Feb 2010 13:54:43 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-5f8e33c2158011dfa296e582234accdeccde</guid>
        </item>
        <item>
            <title>Me too</title>
            <link>http://arrogantandcondescending.blogspot.com/2010/02/me-too.html</link>
            <description><![CDATA[
<div><i>To any of my readers who aren’t involved with Maemo, my apologies beforehand, this article might be a bit different.</i></div><div><br /></div><div>Earlier today timeless pointed me to <a href="http://groups.google.com/group/mozilla.dev.planning/browse_frm/thread/7d3a647586bab993">an interesting discussion</a> regarding Mozilla’s Bugzilla, and the behaviour of specific users. Someone is simply discussing the idea of dropping support for some pretty old hardware and software (Mac OS X 10.4 in this case), when suddenly<a href="http://groups.google.com/group/mozilla.dev.planning/msg/5ef38654faa6e154"> someone interjects in a pretty vocal manner</a>; here is a small excerpt of the post in question:</div><div><br /></div><div><blockquote>“Absolutely Not. I still have two PowerPC machine That <i>(sic)</i> use OSX.4.11. […] As it stand now it impractical for me update either machine due to lack of funds. Maybe in 2011 I can upgrade my Laptop. But not this year . <i>(sic)</i> I am going to have to dip into my savings to maintain a decent amount in my Checking this year.” A bit further he continues, “You can create a one <i>(sic)</i> [a version of Firefox] with all the fancy new stuff. Then one for us poor people that can[‘t] drop 3k at the drop of the hat and have to hang on to older equipment out of necessity.”</blockquote></div><div><br /></div><div>(Yes, I’ve edited the piece above a bit; <i>(sic)</i> means that the spelling mistake existed in the original quote.)</div><div><br /></div><div>Now, taken on its own, there really isn’t very much wrong with this post, it’s just someone displaying his discontent towards the fact he might lose his favourite browser in a couple of years; fair enough. However, it’s the way, and the details he includes that make this post so interesting. He isn’t giving a <i>technical</i> reason why Mozilla should keep supporting <i>his</i> platform; he’s providing a <i>personal</i> reason why <i>he can’t buy</i> a new computer.</div><div><br /></div><div>You might ask yourself, “Why is this so bad, after all?” well, the reason it is so bad is because personal reasons don’t have <i>jus civitas</i> in <b>technical</b> discussions. Most Open Source communities will welcome one’s opinion, and even more contributors will defend their own opinions with all their might, all of this is based around the Roman principle of <i>jus provocationis</i>, which entitles any member to call upon others when he thinks a bad decision has been made. It is very important that such a right exists, as it elevates a project from being two or three people’s Sunday pet project to having a full-blown active Community, with a capital c. This being said, it doesn’t mean that because someone has a given opinion that he is therefore right.</div><div><br /></div><div>Let’s continue with the Mozilla thread. If you’ve read <a href="http://groups.google.com/group/mozilla.dev.planning/msg/af556fc8e7e7a3f5">the initial post</a> that started the whole thread, you’ll note that good ol’ Josh actually quotes usage statistics, regarding how many users will be impacted (and again, this is an announcement for something which is over a year away). All of the above was just to illustrate the real point of this article.</div><div><br /></div><div>Now, sprint <a href="http://groups.google.com/group/mozilla.dev.planning/msg/c18fa2c47475c804">one hundred thirty messages further</a>, and the discussion has moved towards the validity of some contributor’s comments, and what impact they have. Asa Dotzler, the genius behind Firefox’s marketing in the mid-2000 responds this:</div><div><br /></div><div></div><blockquote><div>“I have spent many many hours trying to deal with people who were not adding value to bugs. Those were all hours I could have, and would have (in the old days,) spent doing other things in Bugzilla, including triage of incoming or otherwise unattended to bugs. </div><div><br /></div><div>I have spent many many hours reading bugmail that did nothing to add value to bugs and this has resulted my not getting to bugmail that did add value to bugs that I could have or should have been dealing with. </div><div><br /></div><div>If you don't think this is a problem, you haven't done a lot of work in Bugzilla. I haven't looked up your activity there so maybe I'm wrong, but if you asked most people that have been on this project for a few years, I'll bet they'd tell you they wasted hours and hours dealing with comments that did not move bugs forward. Some of those people might have used the time elsewhere (like with family,) but many would definitely have used the time to do other productive work actually moving bugs forward.”</div></blockquote><div></div><div><br /></div><div>Asa, sometimes I just love you. If anyone hasn’t yet caught up with the brain-machine, I’ll add some more information. Mozilla Firefox is completely free. You can download it for free, you can distribute it for free, and you can give your downloaded copies to your friends and families. If you’re passionate enough, and have the technical skill set you can even help develop the software; contribute your own time and efforts to make it better, for other people to enjoy (and inherently yourself as well).</div><div><br /></div><div>So why do people such as the contributor at the top of this article believe they can demand anything as outrageous as “you can’t drop my platform I’m still using it?” They never paid a single cent for; they never bought a licence entitling them to any kind of rights. So where does that sense of “you-owe-me” come from?</div><div><br /></div><div>Now, I’m not involved in Mozilla and before today hadn’t heard of Asa in literally years (the last I remember talking to him was during the launch of a specific version of Firefox, at 3AM during a very hot summer), so why do I bother talking about this when really I care about Maemo? Because we are seeing the exact same effect in our bug-tracker.</div><div><br /></div><div>With the launch of the Nokia N900, Maemo got a boost in exposure, and that also means that a lot of non-technical people have joined in. This is not a problem by itself, considering that those people are the end users; they are the ones who buy the devices en masses and provide an incentive for manufacturers such as Nokia to create the devices in the first place. Were it not for them, I wouldn’t be here writing about Maemo in the first place. So why are they an issue? Or to put it slightly better: Are they even an issue?</div><div><br /></div><div>The truth is, they’re not. They are a symptom, but they <b>most definitely</b> aren’t <i>the</i> issue. They are <i>a symptom</i> as much as Asa (and many others) spending hours and hours arguing and answering the same things over and over again is <i>an effect</i> of this issue.</div><div><br /></div><div>With popularity, the type of user changes. Initially, when an Open Source project starts, you tend to have very dedicated and very committed individuals helping out. The type of help can be of different sorts; for example, GeneralAntilles in the Maemo Community has been here for quite a few years, and is highly respected by a number of people (if not the majority of the Community), however as far as I’m aware he has never contributed a single line of code to any major part of the software that constructs Maemo. Another kind of example would be wazd, who is a talented graphical artist and helps a lot of different projects come up with more interesting designs, lcuk who will spend literally years of his life working on his own project. (There’s a lot more profiles, but this isn’t about enumerating them, sorry guys) </div><div><br /></div><div>What matters are people who are inherently productive and can provide with quantities of <b>productive</b> feedback. That doesn’t necessarily mean that they win all the arguments, it doesn’t mean they are always right, but at least they offer an opinion, an expertise that helps move the discussion further, rather than circling around the same tiny black hole for ages. Wasting resources is the most destructive thing on the planet, so why do so many do it furiously, and with seemingly no other purpose than to annoy or disturb?</div><div><br /></div><div>Now, this is not to say that we should ignore and completely bypass contributors who want to report a problem in the whole system. Things can go wrong on Nokia’s end, communication can go wrong on the Community’s end, and we need to be aware of the problems in order to progress.</div><div><br /></div><div>Where I draw the line, however, is after someone has reported an issue, <b>three hundred</b> people will reply “ME TOO”. How does it help? It doesn’t. It simply makes people feel a tiny bit better. Actually, scrap that, it probably doesn’t, but at least now they feel like they’ve made an ally, a friend, someone they can bond with in this very dark and dangerous place that is <i>The Unknown</i>. And who could blame them; we were there too, once. </div><div><br /></div><div>This being said, there is a huge drawback to this behaviour. It tires people. Most importantly, it tires the contributors that want to help. It tugs on our passion like a heroin addict in need, ripping off some old lady’s handbag. It destroys our motivation and it creates a huge feeling of helplessness. And I’m sure Asa or GeneralAntilles must feel quite the same.</div><div><br /></div><div>Let’s not forget that people didn’t pay for this software; be it Firefox or Maemo. I know some people will tell me I’m wrong, by saying that Mozilla gets tons of money from Google through their default search-engine selection, and that N900 owners are entitled to support because they bled out a few hundreds of <i><insert></insert></i>. You’re wrong. The software is still free. You can still go out and download it for free, you can not use Google, and you can not buy an N900; there’s alternatives. We don’t owe you anything, so stop behaving like we do.</div><div><br /></div><div>I feel like I’m losing the thread of the thought that initially sparked this article, so I’ll try to focus on it, and spell it out:</div><div><br /></div><div>When a project has few people, and only very strong-willed and dedicated contributors, all is well. When the project takes off, non-technical people will come along, and the tone of the discussion will change by a huge amount. Simply put, there is a lot of noise in the signal of the discussion.</div><div><br /></div><div>The first person that reports an issue creates a very strong signal, and suddenly three hundred people add a whole lot of noise. The developers, or managers, or whomever they may be who want to get some more details or ask for the opinion for a solution can’t, because there is now so much noise that the discussion is stalled.</div><div><br /></div><div>Now my question is: What the f do we do about it?</div><div><br /></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4917453519575149575-7257178608392802417?l=arrogantandcondescending.blogspot.com' alt='' /></div><span class="net_nemein_favourites">8 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=47f7aa7a157811df87f66904ed635b7f5b7f&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/47f7aa7a157811df87f66904ed635b7f5b7f/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>1 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=47f7aa7a157811df87f66904ed635b7f5b7f&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/47f7aa7a157811df87f66904ed635b7f5b7f/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Sebastiaan Lauwers &lt;crashanddie@gmail.com&gt;</author>
            <category>feed:afb34818df658b05f31254de79bcc6ef</category>
            <pubDate>Tue, 09 Feb 2010 11:52:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-47f7aa7a157811df87f66904ed635b7f5b7f</guid>
        </item>
        <item>
            <title>FOSDEM follow-up</title>
            <link>http://www.joaquimrocha.com/2010/02/09/fosdem-follow-up/</link>
            <description><![CDATA[
<p><a title="FOSDEM" href="http://www.fosdem.org" target="_blank">FOSDEM</a> was really nice this year. Still too many interesting presentations to attend than our physical condition allows but that&#8217;s life.</p>
<p>Like I announced on my last post, I gave two presentations there and I am glad with both of them. People seemed really interested in <a title="OCRFeeder" href="http://live.gnome.org/OCRFeeder" target="_blank">OCRFeeder</a> and I hope they try it out, send me feedback and spread the word about it.<br />
I could personally meet P. Christeas, who had send me a patch for it, and listen to the questions and suggestions of people about how OCRFeeder works.</p>
<p>I must say the most impressive presentation I attended was by  Professor <a title="Andrew Tanenbaum" href="http://en.wikipedia.org/wiki/Andrew_S._Tanenbaum" target="_blank">Andrew Tanenbaum</a> himself, about <a title="MINIX 3" href="http://www.minix3.org" target="_blank">MINIX 3</a>, what a beautiful piece of software it seems.<br />
If you have not attended it, maybe you can watch the <a title="FOSDEM videos upcoming" href="http://fosdem.org/2010/news/video-recordings-online-approx-1-week" target="_blank">video recording</a> once it is available.<br />
Later on I had a nice chat with him regarding web browsers on MINIX and the real portability of applications that are said to be multi-platform.</p>
<p>Here are the slides for the presentations I gave:</p>
<div style="width:425px;text-align:left" id="__ss_3110729"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/j_rocha/ocrfeeder-documents-conversion-on-gnome" title="OCRFeeder, documents conversion on GNOME">OCRFeeder, documents conversion on GNOME</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=ocrfeeder-100209031438-phpapp02&#038;stripped_title=ocrfeeder-documents-conversion-on-gnome" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=ocrfeeder-100209031438-phpapp02&#038;stripped_title=ocrfeeder-documents-conversion-on-gnome" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/j_rocha">Joaquim Rocha</a>.</div>
</div>
<div style="width:425px;text-align:left" id="__ss_3110728"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/j_rocha/seriesfinale-a-tv-shows-tracker-for-maemo-5" title="Seriesfinale, a TV shows&#39; tracker for Maemo 5">Seriesfinale, a TV shows&#39; tracker for Maemo 5</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=seriesfinale-100209031429-phpapp02&#038;stripped_title=seriesfinale-a-tv-shows-tracker-for-maemo-5" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=seriesfinale-100209031429-phpapp02&#038;stripped_title=seriesfinale-a-tv-shows-tracker-for-maemo-5" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/j_rocha">Joaquim Rocha</a>.</div>
</div>
<p>Looking forward for FOSDEM 2011!</p>
<span class="net_nemein_favourites">6 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=1659007a157011dfbacd0ff16687691b691b&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/1659007a157011dfbacd0ff16687691b691b/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=1659007a157011dfbacd0ff16687691b691b&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/1659007a157011dfbacd0ff16687691b691b/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Joaquim Rocha &lt;joaquimrocha1@gmail.com&gt;</author>
            <category>feed:c9cc24540e35350893859da24a38c99b</category>
            <pubDate>Tue, 09 Feb 2010 10:53:45 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-1659007a157011dfbacd0ff16687691b691b</guid>
        </item>
        <item>
            <title>Dear GMail IMAP server developers…</title>
            <link>http://blogs.igalia.com/svillar/2010/02/09/dear-gmail-imap-server-developers/</link>
            <description><![CDATA[
<p>Some people have <a href="http://weblog.timaltman.com/archive/2008/02/24/gmails-buggy-imap-implementation" target="_blank">already complained</a> about the way GMail IMAP works. With great power comes a great responsibility. Google guys, you have one of <a href="http://www.marketingpilgrim.com/2009/08/gmail-now-third-largest-email-service-in-us.html">the largest email services</a> in the world, so this means that you have to care a lot about users and clients. Dape recently reported and <a href="http://www.google.pl/support/forum/p/gmail/thread?tid=3fae1bc40a5bb312&amp;hl=en" target="_blank">error in how GMail creates the body structure</a> of some particular messages and still got no answer.</p>
<p>Now I found that it does not return the full bodystructure of a multipart/mixed with two refc822 messages in it. If this sounds strange to you, it&#8217;s basically how Mozilla Thunderbird creates an email with two other emails as attachments. GMail simply will not tell you about the structure of the two attached emails.</p>
<p>Bodystruct support in Modest is working in most cases although these problems with GMail will most likely mean that it won&#8217;t be shipped with the next software update for the N900.</p>
<span class="net_nemein_favourites">10 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=7390fbc4155e11dfa236b358d28f02710271&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/7390fbc4155e11dfa236b358d28f02710271/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=7390fbc4155e11dfa236b358d28f02710271&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/7390fbc4155e11dfa236b358d28f02710271/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Sergio Villar Senin &lt;svillar@igalia.com&gt;</author>
            <category>feed:b32fefb44b67aa4644bd42f2b7488419</category>
            <pubDate>Tue, 09 Feb 2010 09:01:32 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-7390fbc4155e11dfa236b358d28f02710271</guid>
        </item>
        <item>
            <title>Nokia to ship Qt 4.6 with PR1.2, replace Qt 4.5</title>
            <link>http://www.sjaensch.org/blog/nokia-ship-qt-46-pr12-replace-qt-45/</link>
            <description><![CDATA[
<p>Some welcome news for all Qt on Maemo developers out there: Nokia intends to deploy the currently in Beta Qt 4.6 to all devices via software update &mdash; most probably already with the next major update <span class="caps">PR1</span>.2. Currently, Qt 4.6 (available from extras-devel) is completely optified and resides in /opt/qt4-maemo5. That will change with <span class="caps">PR1</span>.2, where it will move to the rootfs, replacing the community-supported Qt 4.5. What does this mean for Qt applications?<!--more--></p>
<ul>
<li><b>Qt 4.6 applications</b>: If all goes well, nothing needs to be done. Deployed applications should pick up the libraries in /usr. You might need to edit your build scripts so they won&#8217;t look in /opt/qt4-maemo5/bin if you&#8217;re using&nbsp;qmake.</li>
<li><b>Qt 4.5 applications</b>: This one is trickier. Qt 4.6 is neither <span class="caps">API</span> nor <span class="caps">ABI</span> compatible with Qt 4.5. This means that you&#8217;ll need at least a recompile, and probably also source code modifications if you&#8217;re doing anything Maemo5-specific. Qt 4.5 applications on device will stop working until there is a Qt 4.6-based update&nbsp;available.</li>
</ul>
<p>So all you Qt 4.5 users out there, install libqt4-maemo5-dev in scratchbox and start porting.&nbsp;:)</p>
<span class="net_nemein_favourites">27 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=3bd594ac14d111df90e3a5c055d11cc01cc0&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/3bd594ac14d111df90e3a5c055d11cc01cc0/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=3bd594ac14d111df90e3a5c055d11cc01cc0&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/3bd594ac14d111df90e3a5c055d11cc01cc0/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Stephan Jaensch &lt;sj@sjaensch.org&gt;</author>
            <category>feed:2700e0ed02982a2054ae3f239ecc2e97</category>
            <pubDate>Tue, 09 Feb 2010 05:00:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-3bd594ac14d111df90e3a5c055d11cc01cc0</guid>
        </item>
        <item>
            <title>Slides of my talk at FOSDEM 2010</title>
            <link>http://blogs.igalia.com/vjaquez/2010/02/09/slides-of-my-talk-at-fosdem-2010/</link>
            <description><![CDATA[
<p>I still don&#8217;t know how to submit my slides into the <a href="http://fosdem.org/2010/">FOSDEM website</a>, so I&#8217;m linking them here by now:</p>
<p><a href="http://people.igalia.com/vjaquez/talks/bridgedriver-omap3-fosdem-2010.pdf"><img class="aligncenter size-medium wp-image-132" title="fosdem2010" src="http://blogs.igalia.com/vjaquez/wp-content/uploads/2010/02/fosdem2010-300x225.png" alt="DSPBridge on OMAP3 - fosdem 2010" width="300" height="225" /></a></p>
<span class="net_nemein_favourites">8 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=9ae1ebf214fa11df9aa67fe991f9a0dca0dc&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/9ae1ebf214fa11df9aa67fe991f9a0dca0dc/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>1 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=9ae1ebf214fa11df9aa67fe991f9a0dca0dc&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/9ae1ebf214fa11df9aa67fe991f9a0dca0dc/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Víctor Manuel Jáquez Leal &lt;vjaquez@igalia.com&gt;</author>
            <category>feed:6af7b3f8d9e1c036761a1cdf0db0b428</category>
            <pubDate>Mon, 08 Feb 2010 20:00:18 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-9ae1ebf214fa11df9aa67fe991f9a0dca0dc</guid>
        </item>
        <item>
            <title>MaePad 1.1 and gPodder 2.2 hit Extras-Testing</title>
            <link>http://thpmaemo.blogspot.com/2010/02/maepad-11-and-gpodder-22-hit-extras.html</link>
            <description><![CDATA[
<p>After a week of initial testing of MaePad 1.0 in Extras-Devel and some very helpful feedback from users, MaePad 1.1 "The Large Hadron Collision" hits the street (or more precisely, Extras-Testing). You can read the <a href="http://talk.maemo.org/showpost.php?p=516391&postcount=86">list of changes</a> or go straight to the <a href="http://maemo.org/packages/package_instance/view/fremantle_extras-testing_free_armel/maepad/1.1/">package page</a> to test it.</p><p>In other news, gPodder 2.2 "LA X" (<a href="http://gpodder.org/news">release notes on gPodder.org</a>) was uploaded to Extras-Devel at the end of last week. This new release includes the promised UI changes and some other under-the-hood changes, but there have been some minor regressions (broken streaming for example) which have since been fixed in the development repository. Please test gPodder 2.2 (on the <a href="http://maemo.org/packages/package_instance/view/fremantle_extras-testing_free_armel/gpodder/2.2-1/">package page</a>) and <a href="https://bugs.maemo.org/enter_bug.cgi?product=gPodder">report bugs</a> against it in the bug tracker, so that any issues can be fixed before the next package version.</p><p>Again, <em>please</em> report any bugs you find to the bug tracker, and <strong>don't</strong> go <a href="http://talk.maemo.org/showthread.php?t=43632">whining</a> in the forums - it's a hassle to search and hunt for bug reports on the web, and your "bug report" forum post might never be seen by any of the developers of any given app.</p><p>gPodder 2.2 is of course also available for Maemo 4, and has been pushed into the Diablo Extras repository already. Starting from this version, no Chinook builds will be provided for gPodder anymore, but due to the interpreted nature of Python code, you can install the gPodder package from the Diablo repositories should you really need to run gPodder under Chinook. If you are reporting bugs against gPodder for Maemo 4, be sure to mention "Maemo 4", "Diablo" or "N8x0" in the bug report.</p><p>Ready to go into Maemo Extras during this week: <a href="http://maemo.org/packages/package_instance/view/fremantle_extras-testing_free_armel/panucci/0.3.9-1/">Panucci 0.3.9-1</a> and <a href="http://maemo.org/packages/package_instance/view/fremantle_extras-testing_free_armel/headphoned/1.6/">headphoned 1.6</a> (thanks to all the <a href="http://wiki.maemo.org/Extras-testing">testers</a> for taking the time to test, review and rate these packages).</p><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6145140879520785870-3233094038740234436?l=thpmaemo.blogspot.com' alt='' /></div><span class="net_nemein_favourites">8 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=2705425014e211dfbcd8dd5daa08ef3aef3a&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/2705425014e211dfbcd8dd5daa08ef3aef3a/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=2705425014e211dfbcd8dd5daa08ef3aef3a&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/2705425014e211dfbcd8dd5daa08ef3aef3a/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Thomas Perl &lt;thp@perli.net&gt;</author>
            <category>feed:437c40ecc45d4b0fa868e422ae16adb1</category>
            <pubDate>Mon, 08 Feb 2010 17:40:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-2705425014e211dfbcd8dd5daa08ef3aef3a</guid>
        </item>
        <item>
            <title>Laser-Cut Stand for the Nokia N900</title>
            <link>http://feedproxy.google.com/~r/MaemoTalk/~3/Y9Ejg-UOrgk/</link>
            <description><![CDATA[
<p>TMO member <a href="http://talk.maemo.org/member.php?u=26749" target="_blank">Fake</a> has just announced his latest invention &#8212; a laser-cut stand for the Nokia N900.</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="500" height="375"><param name="movie" value="http://www.youtube.com/v/CEB6GIMuVaA&amp;rel=0&amp;color1=234900&amp;color2=4e9e00&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;ap=%2526fmt%3D22" /><param name="allowFullScreen" value="true" /><embed wmode="transparent" src="http://www.youtube.com/v/CEB6GIMuVaA&amp;rel=0&amp;color1=234900&amp;color2=4e9e00&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;ap=%2526fmt%3D22" type="application/x-shockwave-flash" allowfullscreen="true" width="500" height="375" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>The 3-piece acrylic or wood stand is now for sale for only $10, $15 if you buy two, and $20 for three (shipping included). Details on how to order, more stand pictures, and the long discussion is over at <a href="http://talk.maemo.org/showthread.php?t=43593">talk.maemo.org</a>.</p>
<img src="http://feeds.feedburner.com/~r/MaemoTalk/~4/Y9Ejg-UOrgk" height="1" width="1"/><span class="net_nemein_favourites">12 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=f5cdbc1e14d011df90e3a5c055d11cc01cc0&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/f5cdbc1e14d011df90e3a5c055d11cc01cc0/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=f5cdbc1e14d011df90e3a5c055d11cc01cc0&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/f5cdbc1e14d011df90e3a5c055d11cc01cc0/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Reggie Suplido &lt;reggie@internettablettalk.com&gt;</author>
            <category>feed:994930aea431fd805006b92312248b2a</category>
            <pubDate>Mon, 08 Feb 2010 15:23:58 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-f5cdbc1e14d011df90e3a5c055d11cc01cc0</guid>
        </item>
        <item>
            <title>FOSDEM X</title>
            <link>http://marcin.juszkiewicz.com.pl/2010/02/08/fosdem-x/</link>
            <description><![CDATA[
<p>Returning home now &#8212; sitting in the EasyJet plane somewhere over Germany and sipping coffee.</p>

<p>Tenth FOSDEM is past now. We had a stand as usual but this year it looked much better then ever: white sheet, less cables floating everywhere (one central power extender with 8 sockets helps), interesting devices on table&#8230; We had:</p>

<ul>
<li>EVBeagle (German Beagleboard clone with blue PCB)</li>
<li>2 BUGs showing different things (camera view on mine, dual screen X11 on Denis one)</li>
<li>Ulf bring new Atmel AT91SAM9M10 board (more on it in next days as it is in my bag above my head), there was also raffle in which other one was a price</li>
<li>Archos 7 media player</li>
<li>Psion netbook (with &#8216;Prototype&#8217; text on it)</li>
<li>Openmoko Freerunner</li>
<li>HTC Dream (running OpenEmbedded distro instead of Android)</li>
<li>FriendlyARM with WVGA screen</li>
<li>Toshiba topas</li>
<li>Atmel NGW100 which uses AVR32 cpu</li>
<li>and some more which I forgot about</li>
</ul>

<p>For next year it would be great to have power supply which would provide several +5V and +12V cables so there would be less plugs in use. Someone wants to donate such one? We probably need to think about creating kind of &#8217;standard stand stuff box&#8217; which would be used on next events so no more grabbing power extenders, USB cables etc. This is a thing to discuss.</p>

<p>At stand there were many people asking different questions. Some thought that we are selling hardware, some known already what OE is.</p>

<p>But FOSDEM was not only OE stand. This year I decided that there are talks which I want to attend and did that. I saw (titles are not original ones):</p>

<ul>
<li>&#8216;20 minutes about Openmoko history&#8217; by Mickeyl Lauer. I got there a bit late to check did he mentioned &#8217;super secret project&#8217; name</li>
<li>&#8216;Freesmartphone.org &#8212; what it is and why it is cool&#8217; also by Mickeyl. He shown few of his DBus related tools &#8212; I need to package them for Maemo5 as they should be useful. Talk was interesting and worth being there.</li>
<li>&#8216;Cross building systems: who we are and what our plans are&#8217; panel was set of presentations from Ptxdist, OpenWRT, Crosstool NG, Buildroot, OpenEmbedded, cegcc projects. Everybody said that we need to share patches and help people to fix their software.</li>
<li>&#8216;Maemo Community Counsil: who, why, what for&#8217; was nice talk by Dave Neary (sorry man, that we did not met for talk). MCC is between community and Nokia and they do good job.</li>
<li>&#8216;How to be good upstream&#8217; by Gentoo developer was interesting as they have similar problems that we have in OE.</li>
<li>&#8216;MINIX 3: system which do not want to die&#8217; was the best entertainment during whole trip. Author was blaming Linux for being terrible buggy while his &#8216;baby&#8217; was nearly bug free. But maybe because of very small user base? Not that I have something against microkernel idea &#8212; I used AmigaOS which chosen that way and know how it works.</li>
</ul>

<p>Met some people, some planned to but time was too short as usual&#8230; Some of new faces were nice surprise: Martin Guy (the only one who understand Cirrus Logic EP93xx FPU hardware bugs) or Bluelighting from OPIE project. Tias (author of XInput calibrator tool for making touchscreens work as they should) hunted me during whole event and finally we  had occasion to discuss about changes which he did due to my suggestions or problems. I shown BUG with two screens for him and he understood why I need device parameter. And next year I need to catch one guy from staff and talk with him as this year again he told that he know me and I do not know him (something like that anyway).</p>

<p>There was one change when it comes to stands &#8212; this year we were not next to PostgreSQL because MariaDB was between. I hope that next year we will be still nearby as I got used to the youngest person in their team :)</p>

<p>Speaking about future: it was last year with Astrid for me. It is in nice location (direct bus to FOSDEM place, near to Delirium Cafe) but no free wifi available in XXI century starts to be an issue. And no more going to tourist area for dinner &#8212; it was too costly I think.</p>

<p>Now I am in a bus which is my last way of transport today. plan to be at home before midnight. Post has to wait for Monday.</p>
<p><hr />
<small>All rights reserved 
&copy; <a href="http://marcin.juszkiewicz.com.pl">Marcin Juszkiewicz</a>


<a href="http://marcin.juszkiewicz.com.pl/2010/02/08/fosdem-x/">FOSDEM X</a> was originally posted on <a href="http://marcin.juszkiewicz.com.pl">Marcin Juszkiewicz</a> website</small></p></p>


<p>Related posts:</p><ol><li><a href='http://marcin.juszkiewicz.com.pl/2007/02/25/fosdem-2007/' rel='bookmark' title='Permanent Link: FOSDEM 2007'>FOSDEM 2007</a></li>
<li><a href='http://marcin.juszkiewicz.com.pl/2007/07/18/guadec-continued/' rel='bookmark' title='Permanent Link: GUADEC continued'>GUADEC continued</a></li>
<li><a href='http://marcin.juszkiewicz.com.pl/2007/01/23/free-your-phone/' rel='bookmark' title='Permanent Link: Free Your Phone'>Free Your Phone</a></li>
</ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?a=Ys7co4ag2GA:i0K0rpeOo50:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?a=Ys7co4ag2GA:i0K0rpeOo50:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?i=Ys7co4ag2GA:i0K0rpeOo50:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?a=Ys7co4ag2GA:i0K0rpeOo50:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?i=Ys7co4ag2GA:i0K0rpeOo50:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?a=Ys7co4ag2GA:i0K0rpeOo50:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?i=Ys7co4ag2GA:i0K0rpeOo50:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HrwWebsiteNokia/~4/Ys7co4ag2GA" height="1" width="1"/><span class="net_nemein_favourites">8 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=8becebe414d011df90e3a5c055d11cc01cc0&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/8becebe414d011df90e3a5c055d11cc01cc0/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=8becebe414d011df90e3a5c055d11cc01cc0&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/8becebe414d011df90e3a5c055d11cc01cc0/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Marcin Juszkiewicz &lt;maemo@haerwu.biz&gt;</author>
            <category>feed:c375eca130e9b3972cb48d0355b2980a</category>
            <pubDate>Mon, 08 Feb 2010 14:16:19 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-8becebe414d011df90e3a5c055d11cc01cc0</guid>
        </item>
        <item>
            <title>Maemo5 and (lack of) navigation</title>
            <link>http://marcin.juszkiewicz.com.pl/2010/02/08/maemo5-and-lack-of-navigation/</link>
            <description><![CDATA[
<p>Year ago when I was going to FOSDEM I took my Nokia E66 phone preloaded with Belgium maps to not get lost in Brussels. It was working quite good. This year I took Nokia N900 as the only device to use (no laptop, no other phone) and BUG to show something.</p>

<p>How did N900 worked as navigation device? Terrible! The problem started before travel. I installed whole set of map applications which were available:</p>

<ul>
<li>Ovi Maps</li>
<li>Maemo Mapper</li>
<li>Maep</li>
<li>Mapbuddy</li>
<li>Navit</li>
</ul>

<p>Only first one had support to preloading map data (by using Nokia Map Loader under MS Windows). Maemo Mapper had such functionality in OS2008 but newer version has something totally broken. Navit required use of extra tool for conversion but after looking at UI I decided that will not even try. Maep and Mapbuddy always fetch from network so roaming costs would kill me.</p>

<p>So I used Ovi Maps as less bad then others. Lacks of offline POI support suxx, lack of adding own ones suxx even more as in Symbian version I just added few interesting places at home and used them during walking on streets of Brussels. Nokia needs to spend lot of money and developer time if they want to make it usable.</p>

<p>So software was more or less disaster but I managed to get to the &#8216;peeing boy&#8217; so (after seeing&#8217; peeing girl&#8217; year ago) that part of tourist attractions is done. Would be nice to have some way of preloading AGPS data as without network connection it takes ages to get fix.</p>
<p><hr />
<small>All rights reserved 
&copy; <a href="http://marcin.juszkiewicz.com.pl">Marcin Juszkiewicz</a>


<a href="http://marcin.juszkiewicz.com.pl/2010/02/08/maemo5-and-lack-of-navigation/">Maemo5 and (lack of) navigation</a> was originally posted on <a href="http://marcin.juszkiewicz.com.pl">Marcin Juszkiewicz</a> website</small></p></p>


<p>Related posts:</p><ol><li><a href='http://marcin.juszkiewicz.com.pl/2007/12/17/maemo-mapper/' rel='bookmark' title='Permanent Link: Maemo mapper'>Maemo mapper</a></li>
<li><a href='http://marcin.juszkiewicz.com.pl/2009/11/20/driving-with-ovi-maps/' rel='bookmark' title='Permanent Link: Driving with Ovi Maps'>Driving with Ovi Maps</a></li>
<li><a href='http://marcin.juszkiewicz.com.pl/2008/05/16/car-navigation-with-n810/' rel='bookmark' title='Permanent Link: Car navigation with N810'>Car navigation with N810</a></li>
</ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?a=QZY6cKxtYV4:zSd5BoX8heE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?a=QZY6cKxtYV4:zSd5BoX8heE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?i=QZY6cKxtYV4:zSd5BoX8heE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?a=QZY6cKxtYV4:zSd5BoX8heE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?i=QZY6cKxtYV4:zSd5BoX8heE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?a=QZY6cKxtYV4:zSd5BoX8heE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/HrwWebsiteNokia?i=QZY6cKxtYV4:zSd5BoX8heE:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HrwWebsiteNokia/~4/QZY6cKxtYV4" height="1" width="1"/><span class="net_nemein_favourites">9 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=8b2ca53c14d011df90e3a5c055d11cc01cc0&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/8b2ca53c14d011df90e3a5c055d11cc01cc0/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=8b2ca53c14d011df90e3a5c055d11cc01cc0&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/8b2ca53c14d011df90e3a5c055d11cc01cc0/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Marcin Juszkiewicz &lt;maemo@haerwu.biz&gt;</author>
            <category>feed:c375eca130e9b3972cb48d0355b2980a</category>
            <pubDate>Mon, 08 Feb 2010 14:15:19 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-8b2ca53c14d011df90e3a5c055d11cc01cc0</guid>
        </item>
        <item>
            <title>Maemo Weekly News – February 8, 2010 Issue Now Out</title>
            <link>http://feedproxy.google.com/~r/MaemoTalk/~3/67vLOqJNZ4Y/</link>
            <description><![CDATA[
<p><a href="http://maemotalk.com/wp-content/uploads/2010/02/Mwkn_icon_180.png"><img class="alignright size-full wp-image-382" title="Mwkn_icon_180" src="http://maemotalk.com/wp-content/uploads/2010/02/Mwkn_icon_180.png" alt="" width="180" height="180" /></a>This week&#8217;s issue of Maemo Weekly News (MWKN) is now out. Some items I would like to highlight are the following:</p>
<ul>
<li><a href="http://mwkn.net/2010/06/front.html#front-2">PUSH N900 US competition launched for hardware hacking</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-2">Hands-on Mozilla&#8217;s pocket-sized Firefox mobile</a></li>
<li><a href="http://mwkn.net/2010/06/devel.html#devel-1">Forum Nokia Developer Conference, 2nd March, Sydney Australia</a></li>
<li><a href="http://mwkn.net/2010/06/community.html#community-2">February maemo.org sprint meeting minutes &amp; actions online</a></li>
<li><a href="http://mwkn.net/2010/06/devices.html#devices-1">Porting Maemo&#8217;s base to other chipsets/devices</a></li>
<li><a href="http://mwkn.net/2010/06/wild.html#wild-1">2009 Engadget awards &#8211; N900 nominee in 2 categories</a></li>
<li><a href="http://mwkn.net/2010/06/announce.html#announce-6">Maemo 6 Platform Security software home now in gitorious</a></li>
<li><a href="http://mwkn.net/2010/06/announce.html#announce-7">Maemo&#8217;s cellular software components&#8217; home now in gitorious</a></li>
</ul>
<p>Below is the full list of articles in this week&#8217;s issue:</p>
<p><strong>Maemo Weekly News &#8211; February 8, 2010</strong></p>
<p><a href="http://mwkn.net/2010/06/front.html"><strong>Front Page</strong></a></p>
<ul>
<li><a href="http://mwkn.net/2010/06/front.html#front-1">BBC tech correspondent covers Nokia still ruling in face of iPhone &amp; iPad</a></li>
<li><a href="http://mwkn.net/2010/06/front.html#front-2">PUSH N900 US competition launched for hardware hacking</a></li>
</ul>
<p><a href="http://mwkn.net/2010/06/apps.html"><strong>Applications</strong></a></p>
<ul>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-1">Ken-Young on Orrery, bringing more stars into view than you can see</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-2">Hands-on Mozilla&#8217;s pocket-sized Firefox mobile</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-3">Browser Switchboard makes it easy to define alternative browsers as default</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-4">Foursquare social networking/geolocation service &amp; game</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-5">More info on community-designed levels for Angry Birds</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-6">Low-level recovery tools: TestDisk and PhotoRec</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-7">MaePad notepad/jotter for Maemo 5</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-8">Comic widget in early development</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-9">Nokia N900 running emulated SNES controlled with PS3 SIXAXIS controller</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-10">Extension enables Flash for YouTube on Firefox Mobil</a></li>
<li><a href="http://mwkn.net/2010/06/apps.html#apps-11">Showtime &#8211; TV listings app</a></li>
</ul>
<p><a href="http://mwkn.net/2010/06/devel.html"><strong>Development</strong></a></p>
<ul>
<li><a href="http://mwkn.net/2010/06/devel.html#devel-1">Forum Nokia Developer Conference, 2nd March, Sydney Australia</a></li>
<li><a href="http://mwkn.net/2010/06/devel.html#devel-2">Akademy KDE/Qt conference call for papers</a></li>
<li><a href="http://mwkn.net/2010/06/devel.html#devel-3">Debian Etch rebuilt for Maemo</a></li>
<li><a href="http://mwkn.net/2010/06/devel.html#devel-4">PyGtkEditor: On-device syntax-highlighting editor designed for Maemo</a></li>
<li><a href="http://mwkn.net/2010/06/devel.html#devel-5">Windows: Python &amp; Qt for Maemo development in half an hour</a></li>
<li><a href="http://mwkn.net/2010/06/devel.html#devel-6">Elena Reshetova interviewed before FOSDEM about Maemo 6 security</a></li>
</ul>
<p><a href="http://mwkn.net/2010/06/community.html"><strong>Community</strong></a></p>
<ul>
<li><a href="http://mwkn.net/2010/06/community.html#community-1">Testing Squad for maemo.org Extras created</a></li>
<li><a href="http://mwkn.net/2010/06/community.html#community-2">February maemo.org sprint meeting minutes &amp; actions online</a></li>
</ul>
<p><a href="http://mwkn.net/2010/06/devices.html"><strong>Devices</strong></a></p>
<ul>
<li><a href="http://mwkn.net/2010/06/devices.html#devices-1">Porting Maemo&#8217;s base to other chipsets/devices</a></li>
<li><a href="http://mwkn.net/2010/06/devices.html#devices-2">Device quality assurance inside look</a></li>
</ul>
<p><a href="http://mwkn.net/2010/06/wild.html"><strong>Maemo in the Wild</strong></a></p>
<ul>
<li><a href="http://mwkn.net/2010/06/wild.html#wild-1">2009 Engadget awards &#8211; N900 nominee in 2 categories</a></li>
<li><a href="http://mwkn.net/2010/06/wild.html#wild-2">A quick round up of the PUSH N900 Showcase last night</a></li>
<li><a href="http://mwkn.net/2010/06/wild.html#wild-3">PUSH N900 London party pole-dancing robot video</a></li>
</ul>
<p><a href="http://mwkn.net/2010/06/announce.html"><strong>Announcements</strong></a></p>
<ul>
<li><a href="http://mwkn.net/2010/06/announce.html#announce-1">Subscribe to MWKN to ensure you never miss an issue</a></li>
<li><a href="http://mwkn.net/2010/06/announce.html#announce-2">Marina theme for Maemo 5</a></li>
<li><a href="http://mwkn.net/2010/06/announce.html#announce-3">Hoops Frenzy available for $1.99</a></li>
<li><a href="http://mwkn.net/2010/06/announce.html#announce-4">Magnetic Scrolls adventure games interpreter in Testing</a></li>
<li><a href="http://mwkn.net/2010/06/announce.html#announce-5">MADDE tech preview updated for PR 1.1</a></li>
<li><a href="http://mwkn.net/2010/06/announce.html#announce-6">Maemo 6 Platform Security software home now in gitorious</a></li>
<li><a href="http://mwkn.net/2010/06/announce.html#announce-7">Maemo&#8217;s cellular software components&#8217; home now in gitorious</a></li>
<li><a href="http://mwkn.net/2010/06/announce.html#announce-8">mStatus updates multiple social networks&#8217; status</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/MaemoTalk/~4/67vLOqJNZ4Y" height="1" width="1"/><span class="net_nemein_favourites">10 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=9a372d2a14b911df9996f931fccbfce1fce1&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/9a372d2a14b911df9996f931fccbfce1fce1/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=9a372d2a14b911df9996f931fccbfce1fce1&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/9a372d2a14b911df9996f931fccbfce1fce1/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Reggie Suplido &lt;reggie@internettablettalk.com&gt;</author>
            <category>feed:994930aea431fd805006b92312248b2a</category>
            <pubDate>Mon, 08 Feb 2010 13:18:16 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-9a372d2a14b911df9996f931fccbfce1fce1</guid>
        </item>
        <item>
            <title>Nokia N900 Trailing in the 2009 Engadget Awards</title>
            <link>http://thenokiablog.com/2010/02/08/nokia-n900-2009-engadget-awards/</link>
            <description><![CDATA[
<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthenokiablog.com%2F2010%2F02%2F08%2Fnokia-n900-2009-engadget-awards%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthenokiablog.com%2F2010%2F02%2F08%2Fnokia-n900-2009-engadget-awards%2F" height="61" width="51" /></a></div><p>There&#8217;s still plenty of time, but after 4 days of voting, the <a href="http://thenokiablog.com/2009/11/13/nokia-n900-review/" title="Nokia N900 Review">Nokia N900</a> is losing badly to the iPhone 3GS in 2 categories of the 2009 Engadget Awards. Do you think the N900 is worthy to grab the titles Smartphone of the Year or Gadget of the Year? <a href="http://www.engadget.com/2010/02/04/vote-for-the-2009-engadget-awards/" title="Vote for the 2009 Engadget Awards! -- Engadget">Vote now!</a><span id="more-4491"></span></p>
<p><img src="http://thenokiablog.com/wp-content/uploads/2010/02/nokia_n900_engadget.jpg" alt="Nokia N900 Engadget" height="133" width="448"></p>
<p><img src="http://thenokiablog.com/wp-content/uploads/2010/02/nokia_n900_engadget_1_1.jpg" alt="Nokia N900 Engadget 1 1" height="110" width="448"></p>
<p>Nokia also snagged a nomination for the Booklet 3G in the Netbook of the Year category. I think they should win all the 3 categories, but this fanboy and Nokia blogger may be biased. You can vote until February 20th 11:59PM EDT.</p>
<h3  class="related_post_title"> If you enjoyed this article, you might also like...</h3><ul class="related_post"><li><a href="http://thenokiablog.com/2010/02/05/conversations-nokia-n900-facebook-chat-aim-msn/" title="Conversations on Nokia N900 Adds Support for Facebook Chat, AIM, MSN &#038; More With Extra Protocol Plugins">Conversations on Nokia N900 Adds Support for Facebook Chat, AIM, MSN &#038; More With Extra Protocol Plugins</a></li><li><a href="http://thenokiablog.com/2010/01/31/mac-os-x-nokia-n900/" title="Mac OS X 10.3 Installed On Nokia N900 Because It&#8217;s Possible">Mac OS X 10.3 Installed On Nokia N900 Because It&#8217;s Possible</a></li><li><a href="http://thenokiablog.com/2010/01/29/deal-nokia-n900-429-dell-coupon/" title="Deal: Nokia N900 $429 at Dell After Coupon &#8211; Exp 1/30">Deal: Nokia N900 $429 at Dell After Coupon &#8211; Exp 1/30</a></li><li><a href="http://thenokiablog.com/2010/01/28/how-to-install-deb-files-nokia-n900-x-terminal/" title="How to Install .deb Files on Nokia N900 Using X Terminal">How to Install .deb Files on Nokia N900 Using X Terminal</a></li></ul><span class="net_nemein_favourites">9 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=92e4ad4014b911df9996f931fccbfce1fce1&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/92e4ad4014b911df9996f931fccbfce1fce1/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>4 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=92e4ad4014b911df9996f931fccbfce1fce1&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/92e4ad4014b911df9996f931fccbfce1fce1/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Mark Guim &lt;mark@thenokiablog.com&gt;</author>
            <category>feed:23fcd2eb7caac6d74a0924e7d6bb428c</category>
            <pubDate>Mon, 08 Feb 2010 12:55:35 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-92e4ad4014b911df9996f931fccbfce1fce1</guid>
        </item>
        <item>
            <title>Nokia Plans To Develop Salo Plant Operating Mode To Further Increase Production Speed And ...</title>
            <link>http://maemo-freak.com/index.php/miscellaneous/1370-nokia-plans-to-develop-salo-plant-operating-mode-to-further-increase-production-speed-and-efficiency-for-a-growing-smartphone-market</link>
            <description><![CDATA[
<p style="text-align: justify;"><img style="margin-right: 2px; float: left;" alt="fighter_tm" src="http://maemo-freak.com/images/stories/0articles/generic/fighter_tm.jpg" width="122" height="122" />Nokia is planning to develop the operating mode of its Salo plant to ensure production is focused fully on the high-value smartphone market, especially in Europe.</p>
<p style="text-align: justify;">The plans will result in the introduction of new and highly specialized manufacturing methods and also entail changes to personnel at the facility.</p>
<p style="text-align: justify;">The planned new focus for Salo is expected to affect a maximum of 285 employees involved in production and in related support functions at Salo. Today, Nokia's Salo facility employs approximately 2 200 people. Nokia will support alter... .. .</p>
<span class="net_nemein_favourites">6 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=3075a318149511dfbc15a78eb79b60a660a6&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/3075a318149511dfbc15a78eb79b60a660a6/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>2 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=3075a318149511dfbc15a78eb79b60a660a6&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/3075a318149511dfbc15a78eb79b60a660a6/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Teo Bartulovic &lt;apocalypso@symbian-freak.com&gt;</author>
            <category>feed:59d65418afa5d349e0ee7365523a7fe6</category>
            <pubDate>Mon, 08 Feb 2010 08:57:52 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-3075a318149511dfbc15a78eb79b60a660a6</guid>
        </item>
        <item>
            <title>Maemo Weekly News for Monday, 1 February 2010</title>
            <link>http://www.mwkn.net/2010/05/front.html</link>
            <description><![CDATA[
<h1>Front Page</h1>
<div class="article article-front" id="front-1"><h2>First edition of Maemo Weekly News</h2><p><span class="lead-in">Hello, and welcome to the first edition of Maemo Weekly News. This, as the name suggests, is a new weekly digest of news and announcements from in and around the Maemo community. Our team of intrepid contributors are deeply embedded within all facets of the Maemo and 770, N800, N810 and N900 community; whether that&#39;s on IRC, talk.maemo.org, maemo.org Downloads, blogs, Twitter or the mailing lists. They read and process all the info, so you don&#39;t have to!</span></p><p><span>As this is the first issue, things are still bedding in - features such as the top downloads for the week, the newest downloads and the top bugs are still under development. Also, we&#39;re still looking for contributors; so if you feel like you stumble across Maemo items which are well hidden, and of interest to others, please hit &quot;Read more&quot; link to get involved. The key thing to all of us is that this adds lots of value, without taking up lots of our time. If laziness, hubris and a desire to help others are qualities you recognise in yourself, get in touch!</span></p><div class="link"><a href="http://talk.maemo.org/showthread.php?t=42888">Read more</a></div><div class="permalink"></div></div>
<div class="article article-front" id="front-2"><h2>Firefox mobile released for Maemo 5</h2><p><span class="lead-in">The news has been everywhere, but Mozilla&#39;s mobile Firefox (Fennec) has now been released for the N900. Using basically the same engine as the built-in browser, Firefox Mobile brings an interesting new take on the mobile browser user interface; can synchronise with your desktop Firefox and embraces the concepts of add-ons in the same way it&#39;s big brother does:</span> <span class="quote">Bringing Firefox to mobile devices is the next step toward fulfilling Mozilla&#39;s mission of providing one Web that everyone can access, regardless of device or location. Secure, powerful, and customizable, Firefox is the most modern mobile Web browser available and is optimized for a mobile experience. Key design principles are at the heart of the mobile browsing experience including minimal typing, seamless synchronization with desktop Firefox and the ability to take your Firefox with you, to name a few.</span> <span class="lead-out">It will be interesting to see whether it gets the user takeup that Firefox has had, given it&#39;s competing against its own cousin and every review lists the out-of-the-box browser as the best feature of the N900.</span></p><div class="link"><a href="http://blog.mozilla.com/blog/2010/01/29/firefox-for-maemo-now-available/">Read more</a></div><div class="permalink"></div></div>

<h3>In this edition...</h3><ol><li><span class="newscat"><a href="http://www.mwkn.net/2010/05/front.html">Front Page</a></span><ul><li>First edition of Maemo Weekly News</li><li>Firefox mobile released for Maemo 5</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/05/apps.html">Applications</a></span><ul><li>The One Ring - Google Voice properly integrated into Maemo 5</li><li>Ovi store still selling DRM content the N900 can't play</li><li>Mac OS X iSync plugin for N900</li><li>...</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/05/devel.html">Development</a></span><ul><li>Proposal for micro-donations for authors via maemo.org</li><li>maemo.org Extras definition of 'free' brought into focus</li><li>Network connected apps should better support proxy</li><li>...</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/05/community.html">Community</a></span><ul><li>UK development community used in Nokia marketing video</li><li>Brainstorm - how do we make it useful, and manage it?</li><li>Ask the Community Council</li><li>...</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/05/devices.html">Devices</a></span><ul><li>No clarification on Maemo 6 for N900</li><li>N900 call volume fading out - hardware or software fault?</li><li>PUSHN900 pre-London meet roundup</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/05/wild.html">Maemo in the Wild</a></span><ul><li>N900 viral marketing in top 5 for 2009</li><li>Prominent N900 adverts in London Underground</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/05/announce.html">Announcements</a></span><ul><li>SyncEvolution 0.9.2 announcement</li><li>Download Assistant preview</li><li>Catorise sorts your #N900 apps: now in Extras</li><li>...</li></ul></li></ol>
  <span class="net_nemein_favourites">11 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=0a8c2016149d11df89649d068cfafd15fd15&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/0a8c2016149d11df89649d068cfafd15fd15/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=0a8c2016149d11df89649d068cfafd15fd15&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/0a8c2016149d11df89649d068cfafd15fd15/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Andrew Flegg &lt;andrew@bleb.org&gt;</author>
            <category>feed:3e97844fb140de8423afbcb8ff62ccf8</category>
            <pubDate>Mon, 08 Feb 2010 06:00:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-0a8c2016149d11df89649d068cfafd15fd15</guid>
        </item>
        <item>
            <title>Maemo Weekly News for Monday, 8 February 2010</title>
            <link>http://www.mwkn.net/2010/06/front.html</link>
            <description><![CDATA[
<h1>Front Page</h1>
<div class="article article-front" id="front-1"><h2>BBC tech correspondent covers Nokia still ruling in face of iPhone &amp; iPad</h2><p><span class="lead-in">Rory Cellan-Jones is the BBC&#39;s senior technical journalist and, as with all the mainstream media, is often engrossed by Apple&#39;s product launches. However, he takes a closer look at the figures and points out that Nokia - as a worldwide company - are hoping to sell</span> <span class="quote">around 21 million smartphones in a quarter - as many as Apple might hope to sell in a year. Also note that mention of &quot;mobile computers&quot; in this category - Nokia is trying to point out, ever so quietly, that it&#39;s already in that new category described by Steve Jobs on Wednesday.</span> <span class="lead-out">He hasn&#39;t yet played with the N900, but mentions it as a sign that Nokia don&#39;t want to &quot;get caught out again&quot;. The comments on the article also feature largely positive comments about the N900.</span></p><div class="link"><a href="http://www.bbc.co.uk/blogs/thereporters/rorycellanjones/2010/01/nokias_quiet_comeback.html">Read more</a></div><div class="permalink"></div></div>
<div class="article article-front" id="front-2"><h2>PUSH N900 US competition launched for hardware hacking</h2><p><span class="lead-in">Following on from the success of the PUSH N900 invention competition in Europe (see the articles in the &#39;Wild&#39; section for more),</span> <span class="quote">we&rsquo;ve swung open the virtual doors once again, launching a whole new PUSH project dedicated to all the US hackers, modders and designers. [...] Now we want to see what the American hacker community can come up with. A panel of judges will choose the top three ideas from everything submitted, after which the finalist teams will be provided with a Nokia N900 and support from Nokia, to actually build their mod. Then, in March, a representative of these three winning teams will be flown to CTIA in Las Vegas, where they&rsquo;ll get the chance to demonstrate their hack for final judging and the chance for their team to win cash prizes of $10,000, $5,000 and $3,000.</span> <span class="lead-out">Submissions can be made until noon (Eastern), 15 February 2010.</span></p><div class="link"><a href="http://blogs.nokia.com/pushn900/usa/2010/01/welcome/">Read more</a></div><div class="permalink"></div></div>

<h3>In this edition...</h3><ol><li><span class="newscat"><a href="http://www.mwkn.net/2010/06/front.html">Front Page</a></span><ul><li>BBC tech correspondent covers Nokia still ruling in face of iPhone & iPad</li><li>PUSH N900 US competition launched for hardware hacking</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/06/apps.html">Applications</a></span><ul><li>Ken-Young on Orrery, bringing more stars into view than you can see</li><li>Hands-on Mozilla's pocket-sized Firefox mobile</li><li>Browser Switchboard makes it easy to define alternative browsers as default</li><li>...and 8 more</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/06/devel.html">Development</a></span><ul><li>Forum Nokia Developer Conference, 2nd March, Sydney Australia</li><li>Akademy KDE/Qt conference call for papers</li><li>Debian Etch rebuilt for Maemo</li><li>...and 3 more</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/06/community.html">Community</a></span><ul><li>Testing Squad for maemo.org Extras created</li><li>February maemo.org sprint meeting minutes & actions online</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/06/devices.html">Devices</a></span><ul><li>Porting Maemo's base to other chipsets/devices</li><li>Device quality assurance inside look</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/06/wild.html">Maemo in the Wild</a></span><ul><li>2009 Engadget awards - N900 nominee in 2 categories</li><li>A quick round up of the PUSH N900 Showcase last night</li><li>PUSH N900 London party pole-dancing robot video</li></ul></li><li><span class="newscat"><a href="http://www.mwkn.net/2010/06/announce.html">Announcements</a></span><ul><li>Subscribe to MWKN to ensure you never miss an issue</li><li>Marina theme for Maemo 5</li><li>Hoops Frenzy available for $1.99</li><li>...and 5 more</li></ul></li></ol>
  <span class="net_nemein_favourites">11 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=0c66b306149d11df89649d068cfafd15fd15&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/0c66b306149d11df89649d068cfafd15fd15/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=0c66b306149d11df89649d068cfafd15fd15&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/0c66b306149d11df89649d068cfafd15fd15/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Andrew Flegg &lt;andrew@bleb.org&gt;</author>
            <category>feed:3e97844fb140de8423afbcb8ff62ccf8</category>
            <pubDate>Mon, 08 Feb 2010 06:00:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-0c66b306149d11df89649d068cfafd15fd15</guid>
        </item>
        <item>
            <title>maemo.org Extras Bug Jar 2010.06</title>
            <link>http://www.octofish.net/bugjar/2010/02/maemoorg-extras-bug-jar-201006.html</link>
            <description><![CDATA[

        <p>A Quick Look at Extras in <a href="http://bugs.maemo.org/">Bugzilla</a><br />
2010-02-01 through 2010-02-07</p>
<p>As of 2010-02-08 Extras contains 1264 items (+49 this week),
including 583 open issues (+23 this week):
<ul>
<li>373 open bugs (+20 this week)</li>
<ul>
<li>17 critical/blocker (+2 this week)</li>
<li>2 "easyfix" (no change this week)</li>
<li>4 "moreinfo" (+1 this week)</li>
<li>0 "crash" (no change this week)</li>
<li>4 "patch" (no change this week)</li>
<li>4 reopened (no change this week)</li>
<li>168 unconfirmed (+13 this week)</li>
</ul>
<li>210 open enhancements (+3 this week)</li>
<ul>
<li>1 "easyfix" (no change this week)</li>
<li>1 "moreinfo" (no change this week)</li>
<li>2 "patch" (no change this week)</li>
<li>0 reopened (no change this week)</li>
<li>62 unconfirmed (no change this week)</li>
</ul></ul></p>
<h3>Top Tens</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=7351,7413,5181,6511,5774,8508,5673,6456,4452,4878">Ten biggest open bugs by number of votes</a>:
<ol></p>
<li>(8%) <a href="https://bugs.maemo.org/show_bug.cgi?id=7351">7351</a> [Recorder] Recorder app  closes automatically after few mins</li>
<li>(5%) <a href="https://bugs.maemo.org/show_bug.cgi?id=7413">7413</a> [ogg-support] Cover art not shown for Ogg Vorbis files</li>
<li>(4%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5181">5181</a> [gPodder] Automatically download new episodes when on 'home' connection (+5 this week)</li>
<li>(4%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6511">6511</a> [Canola] Unable to type text in Canola on N900 (-1 this week)</li>
<li>(4%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5774">5774</a> [Xournal] Consider using /opt to store the application files (-1 this week)</li>
<li>(4%) <a href="https://bugs.maemo.org/show_bug.cgi?id=8508">8508</a> [The One Ring] Integration with System Contacts isn't working (new this week)</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5673">5673</a> [eCoach] Implement translation infrastructure (+2 this week)</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6456">6456</a> [ogg-support] Register audio/ogg mimetype to support *.oga Vorbis audio files (-3 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=4452">4452</a> [Maemo Mapper] Default SQLite databases format is very slow, especially during maps pre-caching. (-3 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=4878">4878</a> [Canola] Support new last.fm api (-3 this week)</li>
</ol>
Please visit <a href="http://bugs.maemo.org/">bugs.maemo.org</a> to vote. Registration is easy and free.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=5453,7738,6990,5452,5823,6383,5018,5045,5564,5230">Ten biggest open enhancements by number of votes</a>:
<ol></p>
<li>(9%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5453">5453</a> [Hermes] Add google as a source for contact information (feature request)</li>
<li>(6%) <a href="https://bugs.maemo.org/show_bug.cgi?id=7738">7738</a> [FM Radio] Scan and auto-preset feature</li>
<li>(5%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6990">6990</a> [Hermes] Request for LinkedIn as data source</li>
<li>(5%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5452">5452</a> [Hermes] Don't overwrite pre-existing contact info (+1 this week)</li>
<li>(5%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5823">5823</a> [Personal GPRS Monitor] programmable auto-reset (+5 this week)</li>
<li>(5%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6383">6383</a> [PasswordSafe] Add support for V3 Format (+2 this week)</li>
<li>(4%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5018">5018</a> [StockThis] Create a Desktop widget to display portfolio (-1 this week)</li>
<li>(4%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5045">5045</a> [Conboy] Add undo and redo (-4 this week)</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5564">5564</a> [Dialcentral] Include links to the voice mail recordings in DC (-2 this week)</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5230">5230</a> [ogg-support] No proper tag support for vorbis (-1 this week)</li>
</ol>
Please visit <a href="http://bugs.maemo.org/">bugs.maemo.org</a> to vote. Registration is easy and free.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=4726,7505,4089,8301,7351,4083,8873,8722,3886,5278">Ten hottest open bugs</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4726">4726</a> [Mer] Mer Flash Installer, incompatible boot error</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7505">7505</a> [Mauku] Claims to be free, but ships no license and says 'You are NOT allowed to modify or redistribute the source code.'</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4089">4089</a> [Canola] SystemProperties plugin error crash after upgrade to beta11</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8301">8301</a> [Conboy] Note partly disappears - <note-content> tag closed too early</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7351">7351</a> [Recorder] Recorder app  closes automatically after few mins</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4083">4083</a> [Canola] cannot access to video and internet files after upgrade to 2.0.b11</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8873">8873</a> [PasswordSafe] Segmentation Fault on saving imported V2 Unicode files from Password Gorilla (new this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8722">8722</a> [appdownloader] DNS ERROR IN APP MANAGER UPDATE (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3886">3886</a> [Canola] Interface buttons disappeared: video, podcasts, internet media (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5278">5278</a> [Mer] Frequent reboots on mer0.16 testing 6 JFFS version (-1 this week)</li>
</ol></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=6231,4058,5004,5045,5971,6109,6324,6319,6383,6479">Ten hottest open enhancements</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6231">6231</a> [Gonvert] Fat scrollbar used rather than making it pannable</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4058">4058</a> [Canola] Vertical lists are not scrolled properly</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5004">5004</a> [Attitude] Support theming to give spirit-level view</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5045">5045</a> [Conboy] Add undo and redo</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5971">5971</a> [Dialcentral] An easier way to import contact lists is needed</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6109">6109</a> [Gonvert] Support for Custom Units</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6324">6324</a> [FM Radio] Add up a delay option for TDT sync.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6319">6319</a> [Quicknote] Highlight searched-for character strings in results</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6383">6383</a> [PasswordSafe] Add support for V3 Format</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6479">6479</a> [Quicknote] Import, export, send or share function</li>
</ol></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=3472,3886,3974,4005,4036,4050,4064,4068,4083,4084">Ten oldest open bugs</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3472">3472</a> [Advanced Backlight] LCARS and Hildon iconsets aren't complete</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3886">3886</a> [Canola] Interface buttons disappeared: video, podcasts, internet media</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3974">3974</a> [Browser Extras] webaddons category applications have inconsistent name convention</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4005">4005</a> [Canola] AudioBroadcast UPnP items not showing when browsing</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4036">4036</a> [Canola] Canola cannot properly merge multiple tracks into one album</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4050">4050</a> [mNotes] random comments about make/mnotes_framework</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4064">4064</a> [Maemo Mapper] "the the" is a typo in the first run page</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4068">4068</a> [Maemo Mapper] OK/Cancel references to another localization package break w/ fremantle - hildon_note_new_confirmation changed</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4083">4083</a> [Canola] cannot access to video and internet files after upgrade to 2.0.b11</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4084">4084</a> [Canola] Intermittent hangs on audio play</li>
</ol></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=4037,4058,4090,4101,4103,4117,4255,4335,4551,4650">Ten oldest open enhancements</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4037">4037</a> [Canola] Ability to switch between "Play Random Track" and "Album" mode</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4058">4058</a> [Canola] Vertical lists are not scrolled properly</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4090">4090</a> [Canola] Own radio stations and playlists are not supportet by canola last.fm plugin</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4101">4101</a> [Mer] zenity list should allow clicking in any column for radio and check lists</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4103">4103</a> [Mer] dpkg message for missing scripts is confusing</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4117">4117</a> [Canola] Tracks in playlists should be sortable by album and track</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4255">4255</a> [Canola] libre.fm support (instead of last.fm/audioscrobbler)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4335">4335</a> [Mer] Armel slowness</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4551">4551</a> [Mer] Powerlaunch is unable to handle keyboard backlight.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4650">4650</a> [Mer] Request for nbd kernel module</li>
</ol></p>
<h3>New Items</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8734,8735,8737,8738,8746,8749,8759,8761,8779,8780,8781,8794,8795,8797,8800,8801,8802,8803,8808,8814,8815,8822,8824,8847,8853,8855,8859,8861,8867,8871,8873,8875,8876,8882,8883,8884,8895,8900">38 bugs were opened</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8734">8734</a> [Ukeyboard] Arabic Hardware not works with other lang else english</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8735">8735</a> [Wormux] Crash with network games</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8737">8737</a> [Microfeed] Too much disk space used by the .microfeed directory</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8738">8738</a> [Qt] Installing libqt4-gui pulls in unnecessary packages</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8746">8746</a> [Personal GPRS Monitor] Counter value overflow after 2^31 which is around 2GB</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8749">8749</a> [Maetronome] Settings should be saved when Maetronome is closed</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8759">8759</a> [kmplayer] kmplayer stops playing video after switching out and back</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8761">8761</a> [FM Radio] After saving the first preset, scanning does not work anymore</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8779">8779</a> [The One Ring] Can't configure polling options</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8780">8780</a> [The One Ring] Viewing all  unread messages on upgrade is kind of annoying</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8781">8781</a> [The One Ring] grab_log Debug Command doesn't work</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8794">8794</a> [bluetooth-dun] Event handler respawns too fast</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8795">8795</a> [Panucci] Feature Request: Support for podacast Streaming</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8797">8797</a> [The One Ring] Reports claim newer versions of Empathy don't work</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8800">8800</a> [gPodder] Can't remove old episodes from gPodder if the corresponding file has been deleted</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8801">8801</a> [SuperTux] Crash after passing last event in the slot 1</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8802">8802</a> [SuperTux] Crash while closing superTux from application switcher panel</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8803">8803</a> [Catorise] Catorise forced N900 in to a boot cycle</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8808">8808</a> [FM Radio] Selected station lost after receiving a phone call</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8814">8814</a> [PyGTKEditor] Line numbering starts from 0, not 1</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8815">8815</a> [PyGTKEditor] Ctrl-S keyboard shortcut doesn't work</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8822">8822</a> [FM Radio] Audio is routed to speakers also in media player (after FM radio is closed) when FM radio audio is routed to speakers</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8824">8824</a> [Conversations Inbox] Inbox widget shows nothing...</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8847">8847</a> [OmWeather] Incorrect station chosen from GPS</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8853">8853</a> [Panucci] Panucci muted on bluetooth when a sound notification occures because of chating when using wireless</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8855">8855</a> [Htop] htop does not respect or save xterm font settings</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8859">8859</a> [Orrery] Setting Phone for location setup swaps orientation and closes program</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8861">8861</a> [gPodder] Episodes can't stream on N900</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8867">8867</a> [gPodder] Name resolution error in communication with my.gpodder.org server</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8871">8871</a> [The One Ring] Can't configure The One Ring's advanced settings</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8873">8873</a> [PasswordSafe] Segmentation Fault on saving imported V2 Unicode files from Password Gorilla</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8875">8875</a> [gPodder] Unintuitive settings dialog</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8876">8876</a> [gPodder] Can't download subscriptions from my.gpodder.org</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8882">8882</a> [Vagalume] Music Tagged feature not working</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8883">8883</a> [PyMaemo] Cython-generated shared library fails to load.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8884">8884</a> [mnemosyne] Program hangs during card review after "show answer".</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8895">8895</a> [Conversations Inbox] Upgrading Conversations Inbox results in removing non-system widgets from desktops</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8900">8900</a> [gPodder] discovery news feed doesn't show updates</li>
</ul></p>
<p>Of these, <a href="https://bugs.maemo.org/buglist.cgi?bug_id=8803,8876,8884">3 were critical/blockers</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8803">8803</a> [Catorise] Catorise forced N900 in to a boot cycle</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8876">8876</a> [gPodder] Can't download subscriptions from my.gpodder.org</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8884">8884</a> [mnemosyne] Program hangs during card review after "show answer".</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8748,8752,8753,8754,8755,8762,8783,8811,8812,8835,8892">11 enhancements were opened</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8748">8748</a> [Maetronome] Add +/- buttons next to the bar for selecting BPM</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8752">8752</a> [100 Boxes] Add the possibility to disable sounds</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8753">8753</a> [BurgerSpace] Add the possibility to disable sounds</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8754">8754</a> [BurgerSpace] Automatically switch to English keyboard layout while playing BurgerSpace</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8755">8755</a> [Countdown Timer] Make the app shortcut name shorter</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8762">8762</a> [FM Radio] Cursor keys should behave consistently with on-screen buttons</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8783">8783</a> [Catorise] Search for applications</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8811">8811</a> [shortcutd] Add the possibility to launch every application</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8812">8812</a> [shortcutd] Add the possibility to use the camera button complete pressure as shortcut</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8835">8835</a> [Conversations Inbox] Add option to display mails in the widget, too</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8892">8892</a> [Panucci] Feature Idea: Big Sleep Button</li>
</ul></p>
<h3>Resolved Bugs</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=4548,6073,6077,6078,6985,8250,8596,8616,8735,8779,8794,8859">12 bugs were resolved "fixed"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4548">4548</a> [MathJinni] Check whether maemo-select-menu-location is available before failing to install</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6073">6073</a> [MaStory] Add automatically http:// to blog URL when it isn't added for the user</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6077">6077</a> [StockThis] It's possible to add something to the Portfolio without setting a name</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6078">6078</a> [StockThis] Settings (and portfolio data) should be saved with the backup.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6985">6985</a> [Pyrecipe] Unable to save shopping list</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8250">8250</a> [Cinaest] Google movie times plugin never returns results</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8596">8596</a> [The One Ring] Can't Text contacts</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8616">8616</a> [maemo-org theme] System popups are unreadable because of the orange colour</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8735">8735</a> [Wormux] Crash with network games</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8779">8779</a> [The One Ring] Can't configure polling options</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8794">8794</a> [bluetooth-dun] Event handler respawns too fast</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8859">8859</a> [Orrery] Setting Phone for location setup swaps orientation and closes program</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=7768,7953,8734">3 bugs were resolved "invalid"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7768">7768</a> [maemo-org theme] Theme changes Pidgin Internet Messenger chat background colour so text is unreadable</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7953">7953</a> [maemo-org theme] maemo-org wasn't installed correctly and now its impossible to uninstall</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8734">8734</a> [Ukeyboard] Arabic Hardware not works with other lang else english</li>
</ul></p>
<p>0 bugs were resolved "wontfix".</p>
<p>0 bugs were resolved "duplicate".</p>
<p>0 bugs were resolved "worksforme".</p>
<p>0 bugs were resolved "moved".</p>
<h3>Resolved Enhancements</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=6076,6082,8510,8726">4 enhancements were resolved "fixed"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6076">6076</a> [Pyrecipe] Modify the Recipe-list so that is works like other fremantle lists.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6082">6082</a> [Pyrecipe] move the icons in the Ingredients list to the bottom in landscape-mode</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8510">8510</a> [The One Ring] Smarter Voicemail Polling</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8726">8726</a> [Orrery] Help button would be useful</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8835">1 enhancement was resolved "invalid"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8835">8835</a> [Conversations Inbox] Add option to display mails in the widget, too</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=6388,8783">2 enhancements were resolved "wontfix"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6388">6388</a> [Hermes] Keyboard search/filter does not work</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8783">8783</a> [Catorise] Search for applications</li>
</ul></p>
<p>0 enhancements were resolved "duplicate".</p>
<p>0 enhancements were resolved "worksforme".</p>
<p>0 enhancements were resolved "moved".</p>
<h3>Confirmed Items</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8794,8795,8800,8802,8859,8871">6 bugs were confirmed</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8794">8794</a> [bluetooth-dun] Event handler respawns too fast</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8795">8795</a> [Panucci] Feature Request: Support for podacast Streaming</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8800">8800</a> [gPodder] Can't remove old episodes from gPodder if the corresponding file has been deleted</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8802">8802</a> [SuperTux] Crash while closing superTux from application switcher panel</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8859">8859</a> [Orrery] Setting Phone for location setup swaps orientation and closes program</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8871">8871</a> [The One Ring] Can't configure The One Ring's advanced settings</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8711,8712,8752">3 enhancements were confirmed</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8711">8711</a> [Cinaest] show directors, writers, main actors</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8712">8712</a> [Cinaest] search IMdb by people</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8752">8752</a> [100 Boxes] Add the possibility to disable sounds</li>
</ul></p>
<h3>Reopened Items</h3>
<p>0 bugs were reopened.</p>
<p>0 enhancements were reopened.</p>
<h3>Unloved Items</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8722,7729,7148,4844,7356,4377,4155,8598,8719,8884">10 bugs were needing love</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8722">8722</a> [appdownloader] DNS ERROR IN APP MANAGER UPDATE</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7729">7729</a> [PyMaemo] no signals from python-conic or python-location</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7148">7148</a> [Personal Photo Frame] only set number of photos on loop</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4844">4844</a> [Load Applet] shows swap icon (floppy) even after swap is no longer in use</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7356">7356</a> [Zoutube] Audio loss on pressing the volume +/- buttons</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4377">4377</a> [Mer] Deselecting dropdown menu plugin crashes desktop</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4155">4155</a> [Canola] Canola videocast not finding items within some feeds</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8598">8598</a> [Gonvert] After updated govert, unable to boot</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8719">8719</a> [Maemo Mapper] "Help..." and "About..." buttons don't work at all</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8884">8884</a> [mnemosyne] Program hangs during card review after "show answer".</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=6081,4255,6991,8224,6512,6926,7242,8637,8753,8612">10 enhancements were needing love</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6081">6081</a> [Pyrecipe] Interpret a click outside Delete/Clear dialog as 'No'/'Cancel'</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4255">4255</a> [Canola] libre.fm support (instead of last.fm/audioscrobbler)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6991">6991</a> [Hermes] Request for Plaxo as data source</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8224">8224</a> [Hermes] Support for getting orkut contact details with Hermes</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6512">6512</a> [gPodder] Saving OPML files for later use</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6926">6926</a> [OmWeather] Add visual moon phase to the applet</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7242">7242</a> [gPodder] Gpodder Network Proxy Support</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8637">8637</a> [freecell4maemo] Cards should be draggable using touchscreen</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8753">8753</a> [BurgerSpace] Add the possibility to disable sounds</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8612">8612</a> [Countdown Timer] Add portrait mode to Countdown Timer</li>
</ul></p>
<h3>Keyworded Items</h3> (<a href="https://bugs.maemo.org/describekeywords.cgi">glossary</a>)
<p>0 bugs were tagged "crash".</p>
<p>0 bugs were tagged "easyfix".</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8803">1 bug was tagged "moreinfo"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8803">8803</a> [Catorise] Catorise forced N900 in to a boot cycle</li>
</ul></p>
<p>0 bugs were tagged "patch".</p>
<p>0 bugs were tagged "performance".</p>
<p>0 bugs were tagged "security".</p>
<p>0 enhancements were tagged "easyfix".</p>
<p>0 enhancements were tagged "moreinfo".</p>
<p>0 enhancements were tagged "patch".</p>
<p>0 enhancements were tagged "performance".</p>
<p>This summary is also posted to the Maemo developers' list and <a href="http://talk.maemo.org/showthread.php?p=515504#post515504">talk.maemo.org</a>.

        
    <span class="net_nemein_favourites">8 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=a1e35e14147c11df993adf742790d3bed3be&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/a1e35e14147c11df993adf742790d3bed3be/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=a1e35e14147c11df993adf742790d3bed3be&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/a1e35e14147c11df993adf742790d3bed3be/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Stephen Gadsby &lt;sjgadsby@ptdprolog.net&gt;</author>
            <category>feed:92758f42b900fe90ec500065e7ba5bc5</category>
            <pubDate>Mon, 08 Feb 2010 00:04:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-a1e35e14147c11df993adf742790d3bed3be</guid>
        </item>
        <item>
            <title>Maemo Official Applications Bug Jar 2010.06</title>
            <link>http://www.octofish.net/bugjar/2010/02/maemo-official-applications-bu-61.html</link>
            <description><![CDATA[

        <p>A Quick Look at Maemo Official Applications in <a href="http://bugs.maemo.org/">Bugzilla</a><br />
2010-02-01 through 2010-02-07</p>
<p>As of 2010-02-08 Maemo Official Applications contains 2914 items (+64 this week),
including 866 open issues (-3 this week):
<ul>
<li>511 open bugs (-14 this week)</li>
<ul>
<li>13 critical/blocker (-1 this week)</li>
<li>1 "easyfix" (no change this week)</li>
<li>129 "moreinfo" (+20 this week)</li>
<li>7 "crash" (no change this week)</li>
<li>9 "patch" (-1 this week)</li>
<li>19 reopened (-1 this week)</li>
<li>204 unconfirmed (-6 this week)</li>
</ul>
<li>355 open enhancements (+11 this week)</li>
<ul>
<li>2 "easyfix" (no change this week)</li>
<li>10 "moreinfo" (+2 this week)</li>
<li>14 "patch" (-1 this week)</li>
<li>13 reopened (+1 this week)</li>
<li>77 unconfirmed (+6 this week)</li>
</ul></ul></p>
<h3>Top Tens</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=5337,3888,5480,2962,6823,3700,3557,5033,8126,3762">Ten biggest open bugs by number of votes</a>:
<ol></p>
<li>(11%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5337">5337</a> Ovi Maps gives up finding GPS lock too soon</li>
<li>(10%) <a href="https://bugs.maemo.org/show_bug.cgi?id=3888">3888</a> IMAP-IDLE not working</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5480">5480</a> undo/un-merge merged contacts</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=2962">2962</a> Not able to open Maps application with contacts location as a search string</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6823">6823</a> media player won't play any video files now (.avi) divx / xvid (+1 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=3700">3700</a> Put signatures not on top in replies (thereby not forcing top-post) (-1 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=3557">3557</a> Browser tops its windows by itself (N8x0)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5033">5033</a> Select/Copy text within email is nonintuitive/broken (+1 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=8126">8126</a> OVI Maps spins when not Moving (+1 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=3762">3762</a> Performance is unusable on IMAP accounts with a large number of messages in one or more folders (e.g. INBOX) (new this week)</li>
</ol>
Please visit <a href="http://bugs.maemo.org/">bugs.maemo.org</a> to vote. Registration is easy and free.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=601,5139,1235,7002,1129,5797,5294,2796,5327,5345">Ten biggest open enhancements by number of votes</a>:
<ol></p>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=601">601</a> should offer remove/install multiple packages at once</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5139">5139</a> Provide multi-user chat (chatroom / IRC) support again</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=1235">1235</a> Please consider open-sourcing the media player</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=7002">7002</a> Change "swipe from right" behaviour to "back one page" through browser history (+2 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=1129">1129</a> Media player doesn't save the timeposition on close for audio</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5797">5797</a> Stop music player when unplugging the earphones (-2 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5294">5294</a> Support for modifying/deleting a single occurrence of repeating event</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=2796">2796</a> Media player should play audio tracks continuously (gapless) (+1 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5327">5327</a> Reintroduce shortcut configuration into Maemo5 XTerm (-1 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5345">5345</a> Enable or disable IM/VoIP accounts based on connection</li>
</ol>
Please visit <a href="http://bugs.maemo.org/">bugs.maemo.org</a> to vote. Registration is easy and free.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8893,6823,8747,2962,8165,8002,6898,7189,5385,7275">Ten hottest open bugs</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8893">8893</a> Email attachments attached in mailbody cant be saved (new this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6823">6823</a> media player won't play any video files now (.avi) divx / xvid (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8747">8747</a> Ringing tone selector crashes Settings application (new this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2962">2962</a> Not able to open Maps application with contacts location as a search string (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8165">8165</a> gst-video-thumbnailerd locks a media playback even for files from camera application (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8002">8002</a> Being offline, RSS Reader tries to connect for refresh unconditionally (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6898">6898</a> Sometimes auto-update intervals are lost (new this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7189">7189</a> web browser crashes viewing image-heavy websites. (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5385">5385</a> Check available diskspace BEFORE starting the installation (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7275">7275</a> Flickr sharing authentication (almost) didn't work (-1 this week)</li>
</ol></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=463,1129,1235,1563,2317,2779,3089,4211,5139,5321">Ten hottest open enhancements</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=463">463</a> Date format should be user defined (+3 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1129">1129</a> Media player doesn't save the timeposition on close for audio (+3 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1235">1235</a> Please consider open-sourcing the media player (+3 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1563">1563</a> Application installer to send feedback to the providing site if install fails (-3 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2317">2317</a> Chat doesn't show <composing> and <inactive> for chatting contact (+2 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2779">2779</a> Modest doesn't support S/MIME encryption (+2 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3089">3089</a> Add Contact and/or Map link to alarm (+2 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4211">4211</a> There should be a desktop widget for mail (like rss) (+2 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5139">5139</a> Provide multi-user chat (chatroom / IRC) support again (new this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5321">5321</a> Annoying "connection lost/established" banners (new this week)</li>
</ol></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=304,935,1142,1860,2150,2152,2223,2962,2987,3014">Ten oldest open bugs</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=304">304</a> Automatic proxy configuration URL not obeyed by RSS feed reader</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=935">935</a> RSS reader misbehavior on HTTP redirects (RFC 2616 violation)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1142">1142</a> Impossible to add authenticated RSS feeds (username & password)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1860">1860</a> Won't pass through VPN</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2150">2150</a> PDF Reader doesn't support internal document hyperlinks</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2152">2152</a> Documentation on how to build MicroB is not correct</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2223">2223</a> Changing device name impossible when in offline mode or bluetooth off</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2962">2962</a> Not able to open Maps application with contacts location as a search string</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2987">2987</a> Does not always mark e-mails as read (dovecot/cyrus/google IMAP server)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3014">3014</a> File chooser should remember last directory</li>
</ol></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=339,463,601,604,718,761,960,972,1117,1118">Ten oldest open enhancements</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=339">339</a> Browser able to access localhost without Internet connectivity</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=463">463</a> Date format should be user defined</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=601">601</a> should offer remove/install multiple packages at once</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=604">604</a> Renaming files by changing only case should be allowed</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=718">718</a> Supporting Jabber through proxy</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=761">761</a> Please add support for 'fit visible' option to PDF reader</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=960">960</a> specify socks proxy for Google Talk (to work behind firewall)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=972">972</a> Manage all accounts (Email etc) in Control Panel's Account settings</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1117">1117</a> xml to html xslt needs to handle opml files</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1118">1118</a> Address book should support importing either LDIF or LDAP</li>
</ol></p>
<h3>New Items</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8739,8744,8747,8750,8760,8763,8764,8765,8769,8770,8774,8775,8776,8782,8784,8785,8786,8789,8790,8805,8809,8810,8813,8816,8817,8818,8820,8821,8823,8826,8828,8829,8830,8833,8836,8838,8843,8844,8845,8846,8854,8858,8860,8870,8874,8877,8881,8888,8889,8891,8893">51 bugs were opened</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8739">8739</a> Cannot embed Media player in web page with HTML</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8744">8744</a> Not possible to change order of phone numbers in contact</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8747">8747</a> Ringing tone selector crashes Settings application</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8750">8750</a> wrong 'enter' behavior with onscreen keyboard and x terminal</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8760">8760</a> Sip client stopped working properly after firmware upgrade to 2.2009.51-1</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8763">8763</a> Back yields grayed page</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8764">8764</a> Back doesn't work if no connection (memory cache not taken into account)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8765">8765</a> too difficult to scroll the about:config page</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8769">8769</a> Screen unlocked at the end of a call</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8770">8770</a> Drag across pages</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8774">8774</a> Delete button location different for new and overdue items</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8775">8775</a> Skype profile based phone numbers with spaces don't identify caller</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8776">8776</a> inbox shows "expunged" e-mails with imap account</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8782">8782</a> "New mail" Notification doesn't update when additional new mails are available</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8784">8784</a> Browser crashes while changing system theme</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8785">8785</a> setting an empty status message does not update presence</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8786">8786</a> Merged Facebook Contacts duplicate after restarting device</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8789">8789</a> Long, text-only e-mails display incorrectly after a certain length</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8790">8790</a> App Manager Update to often</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8805">8805</a> HAM says: Write error - write (28 No space left on device)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8809">8809</a> No proper visual feedback for selecting SIP provider when more than one is present</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8810">8810</a> tag cloud is not deletable</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8813">8813</a> not possible to choose provider for calling</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8816">8816</a> xterminal - "pgup" "pgdn" don't work</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8817">8817</a> Now playing screen shows Album Artist rather than Artist</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8818">8818</a> Add view to display music collection grouped by Artist (not AlbumArtist!)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8820">8820</a> Map route fail when crosing bridges in Vancouver</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8821">8821</a> Reflow / Wrap text in Browser after zooming</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8823">8823</a> Bad icon display in conversation application</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8826">8826</a> Deleted conversation reincarnate when you text the contact</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8828">8828</a> Unable to remove a skype only contact from server</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8829">8829</a> Unable to remove a skype contact included in a non skype contact from server</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8830">8830</a> Dialer does not accept MMI codes (*#) from 3GPP TS 22.030</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8833">8833</a> Can't retreive contact using osso_abook_aggregator_find_contacts_for_im_contact() with defined McAccount in ready state.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8836">8836</a> Add reactivate option for IM accounts logged out by another location</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8838">8838</a> Can't stream webradio bandit.se Windows Media stream</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8843">8843</a> Application sizes are incorrect</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8844">8844</a> Wrong AVATAR shown when number on multiple contacts set</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8845">8845</a> Cannot read sim card contacts</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8846">8846</a> MP4 audio files misidentified as video files</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8854">8854</a> Jabber opens unnecessary proxy connections</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8858">8858</a> Handwritting appears as blank message in the conversation when using haze msn plugin by pidgin package.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8860">8860</a> Calendar does not update when date changes</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8870">8870</a> Does not save correct settings after installation of an application</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8874">8874</a> Sort dialog is not showing the last selected sort option</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8877">8877</a> Volume buttons should work in camera window when lens cover is not opened</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8881">8881</a> Media player widget does not play song after being dormant for a while.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8888">8888</a> Can't use Skype to call back anyone in call log</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8889">8889</a> New event in calendar causes crash when using bg_BG locales</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8891">8891</a> Application manager's restore popup ignores clicks on checkbox icons</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8893">8893</a> Email attachments attached in mailbody cant be saved</li>
</ul></p>
<p>Of these, <a href="https://bugs.maemo.org/buglist.cgi?bug_id=8747,8893">2 were critical/blockers</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8747">8747</a> Ringing tone selector crashes Settings application</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8893">8893</a> Email attachments attached in mailbody cant be saved</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8733,8741,8743,8745,8751,8766,8777,8796,8799,8819,8850,8851,8852,8864,8868,8894">16 enhancements were opened</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8733">8733</a> Easier entry of new calendar items.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8741">8741</a> Unable to see the clock easily while playing a movie</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8743">8743</a> No way to get contact informations from IM system</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8745">8745</a> Change file name format of taken photos and videos</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8751">8751</a> Sent items should go into Sent folder on SERVER</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8766">8766</a> ability to choose the preferred languages permanently (intl.accept_languages)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8777">8777</a> Add support for "Priority" field in tasks</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8796">8796</a> Notification of shared photos to service</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8799">8799</a> Shuffle all songs always starts play from the first song in the playlist</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8819">8819</a> Add a view to music player to group music by year</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8850">8850</a> Ovi Maps search history</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8851">8851</a> Maps do not use software keyboard</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8852">8852</a> volume/song control during locked device</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8864">8864</a> missing functionality of full text search through contacts information</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8868">8868</a> cannot create calendar entry from received email</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8894">8894</a> Order completed tasks in decending date order</li>
</ul></p>
<h3>Resolved Bugs</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=5847,6317,6412,6598,6673,6702,6743,6769,6920,6936,7227,7375,7480,7794,7933,8022,8115,8117,8276,8383,8495,8525,8574,8594,8683,8763,8784,8845">28 bugs were resolved "fixed"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5847">5847</a> Automatic phone launch by rotation not always working</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6317">6317</a> map search feature should set focus to search text input field</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6412">6412</a> Unable to import multiple contacts from contact files</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6598">6598</a> Browser should display passwords one character at a time like other applications</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6673">6673</a> Sometimes web pages aren't fully loaded, even if the browser's address field progress bar is no longer animating</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6702">6702</a> email application does not see folders on imap4 with namespace</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6743">6743</a> Screen sometimes flickers when scrolling through bookmarks triggers rubber banding</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6769">6769</a> Can't  answer a phone call with a short caller ID</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6920">6920</a> Problem when streaming video from RTSP servers</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6936">6936</a> Caller voice gets minced after some time when taking call via SIP</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7227">7227</a> Contact names do not resolve correctly when country code is prefixed.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7375">7375</a> account-plugin-butterfly - delete contacts doesn't work</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7480">7480</a> Entries with more than 2 lines mix up with each other</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7794">7794</a> After adding tags & editing details, photos are taken in January 1970 instead of January 2010 (EXIF data intact)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7933">7933</a> Conversation IM window is not responding when Select contact dialog is displayed in background</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8022">8022</a> Making a SIP call crashes osso-addressbook</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8115">8115</a> Having a modal dialog in background, Alarm dialog blocks entire UI => battery removal</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8117">8117</a> Browser doesn't show progress indicator when user selects url from urlbar completion list</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8276">8276</a> Imported SSL Certificates not recognized after PR1.1</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8383">8383</a> Rubberbanding (kinetic effect) immediately resets if Flash content is visible</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8495">8495</a> "SIP audio"  buttons active with no SIP accounts active</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8525">8525</a> Media Player is not playing WMV Video streams but KMPlayer can</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8574">8574</a> Subfolders of Zimbra IMAP server not appearing/not available</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8594">8594</a> skype username not accepted (nc)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8683">8683</a> Browser crashes when browsing some websites</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8763">8763</a> Back yields grayed page</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8784">8784</a> Browser crashes while changing system theme</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8845">8845</a> Cannot read sim card contacts</li>
</ul>
(nc) indicates the bug no longer has listed status.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8614,8770,8813,8816,8836,8858">6 bugs were resolved "invalid"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8614">8614</a> 'To:' button does not work properly</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8770">8770</a> Drag across pages</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8813">8813</a> not possible to choose provider for calling</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8816">8816</a> xterminal - "pgup" "pgdn" don't work</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8836">8836</a> Add reactivate option for IM accounts logged out by another location</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8858">8858</a> Handwritting appears as blank message in the conversation when using haze msn plugin by pidgin package.</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=3439,7247,8197,8210,8500,8765,8821">7 bugs were resolved "wontfix"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3439">3439</a> Connects to Audio but does not play sound when successfully installing package</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7247">7247</a> disabling audio output should not disable audio input</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8197">8197</a> Skype does not set online status</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8210">8210</a> Some streams work and some don't on svtplay.se (windows media)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8500">8500</a> Volume buttons do not work as expected when answering a call while in landscape mode</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8765">8765</a> too difficult to scroll the about:config page</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8821">8821</a> Reflow / Wrap text in Browser after zooming (nc)</li>
</ul>
(nc) indicates the bug no longer has listed status.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=6966,7824,8336,8665,8710,8769,8775,8786,8789,8810,8830,8888">12 bugs were resolved "duplicate"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6966">6966</a> Passwords not being hashed out upon entry</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7824">7824</a> Not possible to move email to IMAP sub-folder</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8336">8336</a> Updating stops after some time for imap accounts</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8665">8665</a> Media Player violates the RDS specification by abusing the PS field for dynamic text</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8710">8710</a> Keyboard (Onscreen & Slider) is not working as expected in Ovi Maps;</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8769">8769</a> Screen unlocked at the end of a call</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8775">8775</a> Skype profile based phone numbers with spaces don't identify caller</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8786">8786</a> Merged Facebook Contacts duplicate after restarting device</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8789">8789</a> Long, text-only e-mails display incorrectly after a certain length</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8810">8810</a> tag cloud is not deletable</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8830">8830</a> Dialer does not accept MMI codes (*#) from 3GPP TS 22.030 (nc)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8888">8888</a> Can't use Skype to call back anyone in call log</li>
</ul>
(nc) indicates the bug no longer has listed status.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=4859,5348,5382,8152,8594,8821">6 bugs were resolved "worksforme"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4859">4859</a> Offline mode not changing to online</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5348">5348</a> Trouble connecting to Fritz!Box SIP server</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5382">5382</a> SomaFM internet radio track display on the desktop widget broken</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8152">8152</a> Artefacts on IM/SMS/E-MAIL notifications</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8594">8594</a> skype username not accepted</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8821">8821</a> Reflow / Wrap text in Browser after zooming</li>
</ul></p>
<p>0 bugs were resolved "moved".</p>
<h3>Resolved Enhancements</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=3285,7342">2 enhancements were resolved "fixed"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3285">3285</a> "Copy and Paste" menu option would be useful (nc)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7342">7342</a> Volume keys trigger zooming in an open Conversation</li>
</ul>
(nc) indicates the enhancement no longer has listed status.
</p>
<p>0 enhancements were resolved "invalid".</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=3631,8741">2 enhancements were resolved "wontfix"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3631">3631</a> Better server communication progress feedback for slow links</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8741">8741</a> Unable to see the clock easily while playing a movie</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8297,8655,8751,8851,8864">5 enhancements were resolved "duplicate"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8297">8297</a> Allow free-form text in phone number fields</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8655">8655</a> Space not allowed in contact number</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8751">8751</a> Sent items should go into Sent folder on SERVER</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8851">8851</a> Maps do not use software keyboard</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8864">8864</a> missing functionality of full text search through contacts information</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=4118,8741">2 enhancements were resolved "worksforme"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4118">4118</a> Support Gmail VideoCall signalling</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8741">8741</a> Unable to see the clock easily while playing a movie (nc)</li>
</ul>
(nc) indicates the enhancement no longer has listed status.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=7434,7945,8732,8733">4 enhancements were resolved "moved"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7434">7434</a> Calendar week view should not start at 08:00 all day long</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7945">7945</a> hs-45 headset music controls donot work with the music player</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8732">8732</a> Easier navigation between calendar views</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8733">8733</a> Easier entry of new calendar items.</li>
</ul></p>
<h3>Confirmed Items</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=5719,5839,6702,6814,7378,8092,8492,8555,8706,8747,8764,8817,8844">13 bugs were confirmed</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5719">5719</a> Can't access browser Settings or History from the Bookmarks window</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5839">5839</a> Modest gets stuck updating POP3 mailboxes</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6702">6702</a> email application does not see folders on imap4 with namespace</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6814">6814</a> File Manager cannot rename from the top menu</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7378">7378</a> "move email" only possible to INBOX or to local folders, not to imap or exchange folders</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8092">8092</a> Cannot collapse imap folder view</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8492">8492</a> Change of country works only once a session</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8555">8555</a> Height of initial progress bar too large</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8706">8706</a> Maps does not remember Units of measurement setting after restarting</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8747">8747</a> Ringing tone selector crashes Settings application</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8764">8764</a> Back doesn't work if no connection (memory cache not taken into account)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8817">8817</a> Now playing screen shows Album Artist rather than Artist</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8844">8844</a> Wrong AVATAR shown when number on multiple contacts set</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=7195,7994,8309,8323,8743,8777">6 enhancements were confirmed</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7195">7195</a> Please allow non-digits in phone numbers</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7994">7994</a> make image viewer pan like the desktop does as opposed to all or nothing swipe left or right</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8309">8309</a> No way to copy status messages of contacts</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8323">8323</a> SMS To: Field should auto-complete from Contacts</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8743">8743</a> No way to get contact informations from IM system</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8777">8777</a> Add support for "Priority" field in tasks</li>
</ul></p>
<h3>Reopened Items</h3>
<p>0 bugs were reopened.</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=3285">1 enhancement was reopened</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3285">3285</a> "Copy and Paste" menu option would be useful</li>
</ul></p>
<h3>Unloved Items</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=5276,8776,8877,7697,8705,8838,8860,8870,8345,8826">10 bugs were needing love</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5276">5276</a> hildon-games-wrapper crashes in hgw_conf_request_string if gconf key has no value</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8776">8776</a> inbox shows "expunged" e-mails with imap account</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8877">8877</a> Volume buttons should work in camera window when lens cover is not opened</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7697">7697</a> Media Player UI stays in connecting state when resuming stream playback with WLAN disconnected.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8705">8705</a> Alarms for birthdays can only be set one day before</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8838">8838</a> Can't stream webradio bandit.se Windows Media stream</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8860">8860</a> Calendar does not update when date changes</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8870">8870</a> Does not save correct settings after installation of an application</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8345">8345</a> Call with Skype - should say Call "Work, Home or Cell" with Skype</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8826">8826</a> Deleted conversation reincarnate when you text the contact</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=5817,7258,7456,7770,8267,8600,8796,8852,7935,8662">10 enhancements were needing love</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5817">5817</a> Sorting rss feeds by non-read or keep-for-later</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7258">7258</a> Add a "clear local cache" option</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7456">7456</a> Contacts should be editable, independent of how they were shown</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7770">7770</a> Delete history item option is missing in history window</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8267">8267</a> Ability to export calendars with a single iCalendar object</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8600">8600</a> Limit map search to country and state and suburb</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8796">8796</a> Notification of shared photos to service</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8852">8852</a> volume/song control during locked device</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7935">7935</a> Notification disappears even when there are unread conversations</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8662">8662</a> No way to block a contact from the Chat UI</li>
</ul></p>
<h3>Keyworded Items</h3> (<a href="https://bugs.maemo.org/describekeywords.cgi">glossary</a>)
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8653,8683,8747">3 bugs were tagged "crash"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8653">8653</a> Media Player crashed when viewing UPNP contents.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8683">8683</a> Browser crashes when browsing some websites</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8747">8747</a> Ringing tone selector crashes Settings application</li>
</ul></p>
<p>0 bugs were tagged "easyfix".</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=3762,4935,5772,6273,6654,6682,6920,6977,7093,7189,7310,7363,7438,7480,7709,7956,7957,8035,8104,8360,8595,8610,8615,8639,8640,8654,8657,8671,8724,8725,8750,8760,8785,8786,8790,8805,8820,8823,8843,8845,8858">41 bugs were tagged "moreinfo"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3762">3762</a> Performance is unusable on IMAP accounts with a large number of messages in one or more folders (e.g. INBOX)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4935">4935</a> alarmtool query operation returns "No events." even when events exist</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5772">5772</a> Image viewer inconsistently displays non-N900 images</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6273">6273</a> Dialog does not disappear immediately after resubmitting HTTP POST</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6654">6654</a> IMAP accounts not updated (new messages) after some time</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6682">6682</a> Typing in web-based text input fields isn't as seamless as when using a desktop/laptop computer</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6920">6920</a> Problem when streaming video from RTSP servers</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6977">6977</a> Importing an updated VCard causes contact duplication</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7093">7093</a> Pressing the email subject does nothing</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7189">7189</a> web browser crashes viewing image-heavy websites.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7310">7310</a> Message delivery reports show 'Delivered' even when message is 'Pending'.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7363">7363</a> From a streaming mp3 audio doesn't play after time code change and rebuffer, pause/play needed to get audio</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7438">7438</a> URL context menu not always shown when tapping on URL/link</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7480">7480</a> Entries with more than 2 lines mix up with each other</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7709">7709</a> Notification button not opening email after Lock when Modest in foreground</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7956">7956</a> web browser showing empty page (+high cpu usage by browserd)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7957">7957</a> Messaging doesn't display message threads (+high cpu usage)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8035">8035</a> Selecting song in media player doesn't cause song to play</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8104">8104</a> Browser portrait mode makes it stop working after a while</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8360">8360</a> The maximum year in Calendar is 2037</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8595">8595</a> Contact phone numbers imported with dash in phone number cannot be edited</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8610">8610</a> Embedded images not shown in Mail For Exchange's email body but as attachment</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8615">8615</a> telepathy-sofia uses lots of memory and causes the phone to swap</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8639">8639</a> Media player does not pick up media on the Micro SD card after Maemo 5.0/(2.2009.51-1.002) update</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8640">8640</a> Camera storage location reset to memory card after reboot</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8654">8654</a> Return call from call log does not display avatar and therefore all call options</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8657">8657</a> Often no auto-capitalization, never get word-completion in SMS</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8671">8671</a> Deletion of messages should move first those items to "Deleted Items" folder</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8724">8724</a> The contacts menu appears on top of desktop.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8725">8725</a> Media Player shows the same UPNP server twice in the main view when the server is restarted.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8750">8750</a> wrong 'enter' behavior with onscreen keyboard and x terminal</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8760">8760</a> Sip client stopped working properly after firmware upgrade to 2.2009.51-1</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8785">8785</a> setting an empty status message does not update presence</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8786">8786</a> Merged Facebook Contacts duplicate after restarting device</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8790">8790</a> App Manager Update to often</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8805">8805</a> HAM says: Write error - write (28 No space left on device)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8820">8820</a> Map route fail when crosing bridges in Vancouver</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8823">8823</a> Bad icon display in conversation application</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8843">8843</a> Application sizes are incorrect</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8845">8845</a> Cannot read sim card contacts</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8858">8858</a> Handwritting appears as blank message in the conversation when using haze msn plugin by pidgin package.</li>
</ul></p>
<p>0 bugs were tagged "patch".</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=7556">1 bug was tagged "performance"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7556">7556</a> When multiple email notifications occur the device is unusable</li>
</ul></p>
<p>0 bugs were tagged "security".</p>
<p>0 enhancements were tagged "easyfix".</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=3686,4913,8581">3 enhancements were tagged "moreinfo"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3686">3686</a> No newline when pressing 'Return' in X-terminal under scratchbox</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4913">4913</a> Add transparent full screen keyboard option to XTerm</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8581">8581</a> Reduce XMPP data packets to save battery</li>
</ul></p>
<p>0 enhancements were tagged "patch".</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=7556">1 enhancement was tagged "performance"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7556">7556</a> When multiple email notifications occur the device is unusable</li>
</ul></p>
<p>This summary is also posted to the Maemo developers' list and <a href="http://talk.maemo.org/showthread.php?p=515376#post515376">talk.maemo.org</a>.

        
    <span class="net_nemein_favourites">8 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=29b6be84147411dfab9dfb1a9acdfc34fc34&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/29b6be84147411dfab9dfb1a9acdfc34fc34/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=29b6be84147411dfab9dfb1a9acdfc34fc34&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/29b6be84147411dfab9dfb1a9acdfc34fc34/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Stephen Gadsby &lt;sjgadsby@ptdprolog.net&gt;</author>
            <category>feed:92758f42b900fe90ec500065e7ba5bc5</category>
            <pubDate>Mon, 08 Feb 2010 00:02:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-29b6be84147411dfab9dfb1a9acdfc34fc34</guid>
        </item>
        <item>
            <title>Maemo Official Platform Bug Jar 2010.06</title>
            <link>http://www.octofish.net/bugjar/2010/02/maemo-official-platform-bug-ja-61.html</link>
            <description><![CDATA[

        <p>A Quick Look at Maemo Official Platform in <a href="http://bugs.maemo.org/">Bugzilla</a><br />
2010-02-01 through 2010-02-07</p>
<p>As of 2010-02-08 Maemo Official Platform contains 3008 items (+48 this week),
including 673 open issues (-10 this week):
<ul>
<li>486 open bugs (-15 this week)</li>
<ul>
<li>28 critical/blocker (no change this week)</li>
<li>6 "easyfix" (no change this week)</li>
<li>102 "moreinfo" (+4 this week)</li>
<li>24 "crash" (+3 this week)</li>
<li>21 "patch" (+1 this week)</li>
<li>18 reopened (-1 this week)</li>
<li>156 unconfirmed (-14 this week)</li>
</ul>
<li>187 open enhancements (+5 this week)</li>
<ul>
<li>1 "easyfix" (no change this week)</li>
<li>6 "moreinfo" (+1 this week)</li>
<li>4 "patch" (no change this week)</li>
<li>8 reopened (-1 this week)</li>
<li>31 unconfirmed (+5 this week)</li>
</ul></ul></p>
<h3>Top Tens</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=7026,5982,6685,5880,6766,5838,6063,7972,8011,7633">Ten biggest open bugs by number of votes</a>:
<ol></p>
<li>(5%) <a href="https://bugs.maemo.org/show_bug.cgi?id=7026">7026</a> Can't get a GPS lock with several satellites at view</li>
<li>(5%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5982">5982</a> Phone unlocked when receiving call</li>
<li>(4%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6685">6685</a> Generic pc105 layout is not supported</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5880">5880</a> A2DP unstable when WiFi is on.</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6766">6766</a> Bluetooth Audio Very Choppy and Stuttering</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5838">5838</a> Certain directory entries are duplicated (listed twice / doubled) (+2 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6063">6063</a> voice calls inaudible most of the time, but not through speakers or earplugs (new this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=7972">7972</a> Kernel in PR1.1 build-depends on fiasco-gen which is nowhere to be found (+1 this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=8011">8011</a> Changing volume without unlocking the phone no longer works (new this week)</li>
<li>(2%) <a href="https://bugs.maemo.org/show_bug.cgi?id=7633">7633</a> Enable SmartReflex on N900 by default</li>
</ol>
Please visit <a href="http://bugs.maemo.org/">bugs.maemo.org</a> to vote. Registration is easy and free.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=1695,6368,5371,6357,5835,793,1043,5422,5791,6376">Ten biggest open enhancements by number of votes</a>:
<ol></p>
<li>(7%) <a href="https://bugs.maemo.org/show_bug.cgi?id=1695">1695</a> Browser: Provide "open link in background"</li>
<li>(5%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6368">6368</a> No way for car kit to access contact information (PBAP) (+1 this week)</li>
<li>(5%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5371">5371</a> Allow same shortcut to be used on multiple home screen desktops (+1 this week)</li>
<li>(4%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6357">6357</a> HildonPannableArea: Support arrow keys (in Image Viewer/Photos) (+1 this week)</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5835">5835</a> Mail for Exchange does not Sync all Information for Google Contacts (new this week)</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=793">793</a> lock screen should have 'if lost' info (e.g. display owner contact info)</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=1043">1043</a> Add priority to defined wifi connections</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5422">5422</a> Disconnect inactive internet connections after idle timeout (+1 this week)</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=5791">5791</a> Unable to set alternate APN (-1 this week)</li>
<li>(3%) <a href="https://bugs.maemo.org/show_bug.cgi?id=6376">6376</a> Mention that Keyboard arrow keys + Ctrl move between text entry fields</li>
</ol>
Please visit <a href="http://bugs.maemo.org/">bugs.maemo.org</a> to vote. Registration is easy and free.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8899,8887,4607,7773,8898,7971,6455,7896,7972,6806">Ten hottest open bugs</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8899">8899</a> Limited keymap with wireless configuration (new this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8887">8887</a> Phone features not responding (new this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4607">4607</a> Sbrsh not included in Fremantle SDK devkits (CPU Transparency not working) (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7773">7773</a> GLES libraries missing from MADDE (no Qt 4.6 app can be linked) (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8898">8898</a> When connecting N900 to a Windows 7 x64 PC, it doesn't always show up in mass storage mode (new this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7971">7971</a> mail for exchange freezes when trying to sync calendar and tasks (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6455">6455</a> Mic doesn't work after a full charge with standard n900 charger (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7896">7896</a> Vodafone UK (205) varient firmware not available for update or download (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7972">7972</a> Kernel in PR1.1 build-depends on fiasco-gen which is nowhere to be found (-1 this week)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6806">6806</a> Cannot turn on device while charging (-1 this week)</li>
</ol></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=793,356,995,1043,1050,1249,1574,1695,2043,2076">Ten hottest open enhancements</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=793">793</a> lock screen should have 'if lost' info (e.g. display owner contact info)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=356">356</a> Kernel lacks IPv6 support</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=995">995</a> DNS resolution ignores local domain</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1043">1043</a> Add priority to defined wifi connections</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1050">1050</a> "Connect automatically" should be connection specific</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1249">1249</a> Maemo does not have persistent state</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1574">1574</a> Certificate Manager and WLAN EAP-TLS</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1695">1695</a> Browser: Provide "open link in background"</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2043">2043</a> Development environment should support x86_64 and other non-x86 platforms</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2076">2076</a> Adding file directories (i.e. Documents, MMC) to Task Launcher/Navigator</li>
</ol></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=657,796,1045,1792,2051,2168,2322,2441,2468,2501">Ten oldest open bugs</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=657">657</a> TN inferring WMClass from Exec is prone to breakage, it should ignore quotes</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=796">796</a> Fix hard-coded paths in osso-af-startup build files</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1045">1045</a> Media player breaks the original sorting of songs in a CD</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1792">1792</a> chage assumes shadow passwords enabled, hence fails</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2051">2051</a> Unable to connect to EAP PEAP MSCHAPV2 without certificates</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2168">2168</a> API needs destroy functions for user data</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2322">2322</a> Incorrect D-Bus interface/namespace usage for org.freedesktop.Notifications extensions</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2441">2441</a> Apps failing to launch without any feedback why it failed</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2468">2468</a> scratchbox should not include windres for arm</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2501">2501</a> Hardware keyboard doesn't switch Input language when pressing Ctrl+Space</li>
</ol></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=356,700,708,793,995,1043,1050,1109,1232,1249">Ten oldest open enhancements</a>:
<ol></p>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=356">356</a> Kernel lacks IPv6 support</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=700">700</a> Split busybox into busybox and busybox_root</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=708">708</a> Connection icon should show signalstrength</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=793">793</a> lock screen should have 'if lost' info (e.g. display owner contact info)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=995">995</a> DNS resolution ignores local domain</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1043">1043</a> Add priority to defined wifi connections</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1050">1050</a> "Connect automatically" should be connection specific</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1109">1109</a> Use english strings if locale does not exist after restore (instead of logical strings)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1232">1232</a> preferences for listing networks in "selection connection" window</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=1249">1249</a> Maemo does not have persistent state</li>
</ol></p>
<h3>New Items</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8736,8740,8742,8756,8757,8758,8767,8771,8772,8773,8778,8787,8788,8798,8804,8807,8831,8832,8834,8840,8841,8842,8848,8849,8856,8862,8863,8865,8866,8869,8878,8879,8880,8885,8887,8890,8896,8897,8898,8899">40 bugs were opened</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8736">8736</a> Word prediction doesn't work after a non-alphabetic character</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8740">8740</a> SDK didn't work correct, just black screen with lonely Twitter shortcut.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8742">8742</a> New E-mail Format translated illogically</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8756">8756</a> HW watchdog reboots and kernel oops caused resets which result in file system corruption?</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8757">8757</a> Pressing "More..." does not open the programs list</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8758">8758</a> Issues with dialing carries shortcuts like #646#</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8767">8767</a> Inconsistent playback of Key Clicks (sound)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8771">8771</a> Call ending problem</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8772">8772</a> Pulseaudio uses CPU when no sound playing</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8773">8773</a> Error on initial setup of Mail for Exchange</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8778">8778</a> Automatic disconnection from the Internet</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8787">8787</a> random but frequent HW watchdog reboots ("32wd_to"), in "specific" network environment</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8788">8788</a> Maemo5 packages have Debian maintainers listed but are not from Debian</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8798">8798</a> XVideo output blinks on geometry changes</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8804">8804</a> Wrong cursor position when clearing selections</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8807">8807</a> Hardware keyboard doesn't use languages from text-input settings</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8831">8831</a> Can not dial #646# to check minutes or #674# for sms count (t-mobile).</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8832">8832</a> Reverse name format for Contact Sync</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8834">8834</a> Receiving files via bluetooth while connected to computer via USB</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8840">8840</a> Low battery sound-alert pause mediaplayer while music is playing and dont continue playing after.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8841">8841</a> opening the device from power button go to wrong place</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8842">8842</a> The voume button up and down change the voume up and down depending on which orientation the Phone app is in.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8848">8848</a> omap2_mcspi drains battery after WiFi disconnects</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8849">8849</a> Multiple entries with same content are created when activating protocols</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8856">8856</a> no shadow, apparently no MD5 either</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8862">8862</a> Music, videos and pictures aren't appearing in my default media player.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8863">8863</a> Applications menu gets stuck into "more"</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8865">8865</a> More option doesn't work always</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8866">8866</a> Unexpectly synchronizing with Exchange 2003 aborts and reports error</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8869">8869</a> After sync with Outlook every contact have set RTF format of mail</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8878">8878</a> wget is in maemo extras but not optified</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8879">8879</a> Cannot connect to Personal Area Network with supplied bluez, since pand is missing;  bluez-utils-test not available</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8880">8880</a> cannot create a WiFi connection in offline mode</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8885">8885</a> Bad noise while network activity using DUN and playinng music at the same time</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8887">8887</a> Phone features not responding</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8890">8890</a> Device becomes unlocked when plugged into charger</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8896">8896</a> Microphone is dead</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8897">8897</a> Security hole - Password</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8898">8898</a> When connecting N900 to a Windows 7 x64 PC, it doesn't always show up in mass storage mode</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8899">8899</a> Limited keymap with wireless configuration</li>
</ul></p>
<p>Of these, <a href="https://bugs.maemo.org/buglist.cgi?bug_id=8862,8887,8896,8899">4 were critical/blockers</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8862">8862</a> Music, videos and pictures aren't appearing in my default media player.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8887">8887</a> Phone features not responding</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8896">8896</a> Microphone is dead</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8899">8899</a> Limited keymap with wireless configuration</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8792,8827,8837,8839,8857">5 enhancements were opened</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8792">8792</a> Think twice about using Moblin's connman for M2</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8827">8827</a> Please support Kerberos by default</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8837">8837</a> Voice mail number not stored in dial key "1"</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8839">8839</a> Feature Request</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8857">8857</a> SIM Services Can not be found</li>
</ul></p>
<h3>Resolved Bugs</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=4608,5173,5457,5550,6365,6467,7350,7637,7707,7774,7807,7821,8038,8390,8415,8623,8727,8731,8742,8773">20 bugs were resolved "fixed"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4608">4608</a> HildonBanner does not except NULL value for deprecated icon argument</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5173">5173</a> HildonPickerDialog selects the first item always if appended into shown widget</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5457">5457</a> Skype: "Incorrect address" for phone numbers missing the country code in Contacts</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5550">5550</a> "Not enough memory in target location" when receiving image from Nokia SU-1B using Bluetooth</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6365">6365</a> maemo-xinput-sounds uses all available CPU</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6467">6467</a> MfE connection wizard fails to connect to Exchange2007 with "allow non-provisional devices" set</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7350">7350</a> MADDE 0.5's dpkg replacement does not work with --search reliably</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7637">7637</a> pscreate writes a localized, invalid trailer line into debian/changelog</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7707">7707</a> maemo-optify-deb produces recursive symlink for plugins in derivative packages</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7774">7774</a> Can't run GLES applications under madde environment</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7807">7807</a> location-test-gui missing in Maemo 5.0update2</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7821">7821</a> Library search path wrong</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8038">8038</a> Unlocking screen using power button/touch slide tops last application when on the desktop</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8390">8390</a> Fast search on the desktop doesn't work with cyrillic (???????) layout</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8415">8415</a> Cannot install MADDE to different directory than the default</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8623">8623</a> hildon-1 pkg-config configuration broken</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8727">8727</a> Dead Link</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8731">8731</a> Memory leaks in widget HildonAnimationActor</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8742">8742</a> New E-mail Format translated illogically</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8773">8773</a> Error on initial setup of Mail for Exchange (nc)</li>
</ul>
(nc) indicates the bug no longer has listed status.
</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=6308,8105,8473,8620,8644,8656,8740,8807">8 bugs were resolved "invalid"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6308">6308</a> (native-)gdb doesn't see argc/argv with gcc optimization -O1 or higher</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8105">8105</a> Location function won't turn off</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8473">8473</a> After upgrade, DHCP client hostname still showing previous version</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8620">8620</a> PR1.1 upgrade rendered status LED useless</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8644">8644</a> Bluetooth disconnects from hands free and unable to transfer contacts to handsfree</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8656">8656</a> Media player: "Add items to current playlist" shown when there are no clips</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8740">8740</a> SDK didn't work correct, just black screen with lonely Twitter shortcut.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8807">8807</a> Hardware keyboard doesn't use languages from text-input settings</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=3415,6206,6216,6698,8577">5 bugs were resolved "wontfix"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3415">3415</a> device crashes after standby period</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6206">6206</a> BME exit causing reboot when charger plugged in</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6216">6216</a> Statusbar applet can only change USB mode from "charging only" state</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6698">6698</a> N810 sometimes switches off</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8577">8577</a> Scanning for IAPs interrupts A2DP playback</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8354,8627,8758,8772,8831,8841,8842,8863">8 bugs were resolved "duplicate"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8354">8354</a> apt-get update fails on Fremantle SDK</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8627">8627</a> Network connection dialog pops up on every update with no active WLAN connection</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8758">8758</a> Issues with dialing carries shortcuts like #646#</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8772">8772</a> Pulseaudio uses CPU when no sound playing</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8831">8831</a> Can not dial #646# to check minutes or #674# for sms count (t-mobile).</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8841">8841</a> opening the device from power button go to wrong place</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8842">8842</a> The voume button up and down change the voume up and down depending on which orientation the Phone app is in.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8863">8863</a> Applications menu gets stuck into "more"</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=2723,2934,3481,4466,7010,7169,7322,8609,8631,8757,8773">11 bugs were resolved "worksforme"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2723">2723</a> Pushing key once causes multiple repeats</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=2934">2934</a> Virtual keyboards generated from gen_vkb do not honor the "baseline" attribute from the keysizes block.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3481">3481</a> PSM Interoperability problem with Freebox ADSL Access Point</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4466">4466</a> Trigerring numerous lstat64 syscalls when loading pixbuf images (wouldn't be better to cache the realpaths?)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7010">7010</a> Headphones Status Icon not always displayed when plugging in headset</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7169">7169</a> Graphic artifacts sometimes appear on the screen.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7322">7322</a> Desktop stuck while panning</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8609">8609</a> speex codec is ignored for SIP calls</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8631">8631</a> "Bateria s?aba" implies "Weak battery" instead of "Low battery"</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8757">8757</a> Pressing "More..." does not open the programs list</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8773">8773</a> Error on initial setup of Mail for Exchange</li>
</ul></p>
<p>0 bugs were resolved "moved".</p>
<h3>Resolved Enhancements</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=3010">1 enhancement was resolved "fixed"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3010">3010</a> Provide FTP Bluetooth interface (OBEX FTP server)</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8792">1 enhancement was resolved "invalid"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8792">8792</a> Think twice about using Moblin's connman for M2</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=3600">1 enhancement was resolved "wontfix"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=3600">3600</a> Detect and indicate when connecting to an AP with broken PSM</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=7606,8857">2 enhancements were resolved "duplicate"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7606">7606</a> Provide better feedback of keyboard state - and allow tweaks</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8857">8857</a> SIM Services Can not be found</li>
</ul></p>
<p>0 enhancements were resolved "worksforme".</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=6343,8192,8839">3 enhancements were resolved "moved"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6343">6343</a> [Metabug] Add support to Mail for Exchange for Google</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8192">8192</a> Wired headphone should override bluetooth headset until unplugged</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8839">8839</a> Feature Request</li>
</ul></p>
<h3>Confirmed Items</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=5897,6233,7180,7594,7677,7764,7773,7893,8014,8191,8235,8307,8357,8432,8622,8701,8723,8736,8778,8788">20 bugs were confirmed</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5897">5897</a> Phone: Hardware volume control inconsistent between Portrait and Landscape Modes</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6233">6233</a> HildonPickerButton opens HildonPickerDialog dialog in landscape mode</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7180">7180</a> Device does not automatically connect for some services</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7594">7594</a> twitter link on the 2nd desktop should use https, not http</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7677">7677</a> Copying files over USB is very slow when using CFQ I/O scheduler</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7764">7764</a> WPA-EAP authentication fails with *any* expired certificate</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7773">7773</a> GLES libraries missing from MADDE (no Qt 4.6 app can be linked)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7893">7893</a> Alarm clock does not wake me up when battery has died.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8014">8014</a> WLAN connection gets dropped after a few minutes (U.S. Robotics Wireless MAXg Access Point USR5451)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8191">8191</a> MfE calendar (re)synchronization with Zimbra (version 5.0.x) fails</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8235">8235</a> SD Card unmounts itself, then sometimes comes back</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8307">8307</a> Media Player briefly shows wrong length for MP3 VBR song</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8357">8357</a> resolv.conf file update fails on the Maemo SDK</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8432">8432</a> Photo viewer shows corrupt images that are not corrupt (large PNGs)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8622">8622</a> MADDE Terminal can't be started</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8701">8701</a> Window menu closes if release finger outside of the menu</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8723">8723</a> items become totally non-responsive for no reason</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8736">8736</a> Word prediction doesn't work after a non-alphabetic character</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8778">8778</a> Automatic disconnection from the Internet</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8788">8788</a> Maemo5 packages have Debian maintainers listed but are not from Debian</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8827">1 enhancement was confirmed</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8827">8827</a> Please support Kerberos by default</li>
</ul></p>
<h3>Reopened Items</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=6746">1 bug was reopened</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6746">6746</a> USB mass storage enabled when connected while device is off</li>
</ul></p>
<p>0 enhancements were reopened.</p>
<h3>Unloved Items</h3>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8898,8840,7783,8313,8343,8607,8832,8849,8880,8896">10 bugs were needing love</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8898">8898</a> When connecting N900 to a Windows 7 x64 PC, it doesn't always show up in mass storage mode</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8840">8840</a> Low battery sound-alert pause mediaplayer while music is playing and dont continue playing after.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7783">7783</a> Quick tap in application switcher makes the interface unresponsive</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8313">8313</a> SDK requires outdated kernel features, requires update</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8343">8343</a> No pause before sending DTMF tones in Skype</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8607">8607</a> SIP call breaks during autoswitching from 3g to wifi</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8832">8832</a> Reverse name format for Contact Sync</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8849">8849</a> Multiple entries with same content are created when activating protocols</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8880">8880</a> cannot create a WiFi connection in offline mode</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8896">8896</a> Microphone is dead</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=7924,8709,8535">3 enhancements were needing love</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7924">7924</a> Packager should include filesys usage in description automatically</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8709">8709</a> There is not an option to turn on the speaker in a call while headset is connected</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8535">8535</a> modest next/prev mail icons are nondescriptive</li>
</ul></p>
<h3>Keyworded Items</h3> (<a href="https://bugs.maemo.org/describekeywords.cgi">glossary</a>)
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=8400,8756,8787">3 bugs were tagged "crash"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8400">8400</a> Some MAFW component crashes during playback of a H.264/AAC encoded movie.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8756">8756</a> HW watchdog reboots and kernel oops caused resets which result in file system corruption?</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8787">8787</a> random but frequent HW watchdog reboots ("32wd_to"), in "specific" network environment</li>
</ul></p>
<p>0 bugs were tagged "easyfix".</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=5694,6452,6705,6895,7010,7668,7677,7692,7796,8079,8576,8628,8676,8713,8756,8771,8773,8778,8834,8865,8866">21 bugs were tagged "moreinfo"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=5694">5694</a> Application Manager moves to background after start when quickly clicking</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6452">6452</a> Phone abruptly shutsdown while on charge and during a call via the headset.</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6705">6705</a> fetching of contacts from SE T700 fails via bluetooth</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6895">6895</a> Pixels become garbled in various locations on the screen</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7010">7010</a> Headphones Status Icon not always displayed when plugging in headset</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7668">7668</a> getting a call while playing music, need to tap speakers to hear</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7677">7677</a> Copying files over USB is very slow when using CFQ I/O scheduler</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7692">7692</a> Hardware key combinations still work while device is T&K locked</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=7796">7796</a> Call goes silent or bluetooth disconnects in car (BMW)</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8079">8079</a> Playing a video makes touch screen unresponsive & flashing</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8576">8576</a> Backlight wont turn off during transflective mode in direct sunlight</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8628">8628</a> No wireless after 2 days</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8676">8676</a> FM Transmitter very weak, and is not picked up by radio</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8713">8713</a> Incorrect Danish translation of 'Extras'</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8756">8756</a> HW watchdog reboots and kernel oops caused resets which result in file system corruption?</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8771">8771</a> Call ending problem</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8773">8773</a> Error on initial setup of Mail for Exchange</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8778">8778</a> Automatic disconnection from the Internet</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8834">8834</a> Receiving files via bluetooth while connected to computer via USB</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8865">8865</a> More option doesn't work always</li>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=8866">8866</a> Unexpectly synchronizing with Exchange 2003 aborts and reports error</li>
</ul></p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=6233">1 bug was tagged "patch"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=6233">6233</a> HildonPickerButton opens HildonPickerDialog dialog in landscape mode</li>
</ul></p>
<p>0 bugs were tagged "performance".</p>
<p>0 bugs were tagged "security".</p>
<p>0 enhancements were tagged "easyfix".</p>
<p><a href="https://bugs.maemo.org/buglist.cgi?bug_id=4651">1 enhancement was tagged "moreinfo"</a>:
<ul>
<li><a href="https://bugs.maemo.org/show_bug.cgi?id=4651">4651</a> Provide iwspy (which is currently not working)</li>
</ul></p>
<p>0 enhancements were tagged "patch".</p>
<p>0 enhancements were tagged "performance".</p>
<p>This summary is also posted to the Maemo developers' list and <a href="http://talk.maemo.org/showthread.php?p=515337#post515337">talk.maemo.org</a>.

        
    <span class="net_nemein_favourites">8 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=b0e8a52e146b11dfac9b434463b6829a829a&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/b0e8a52e146b11dfac9b434463b6829a829a/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=b0e8a52e146b11dfac9b434463b6829a829a&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/b0e8a52e146b11dfac9b434463b6829a829a/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Stephen Gadsby &lt;sjgadsby@ptdprolog.net&gt;</author>
            <category>feed:92758f42b900fe90ec500065e7ba5bc5</category>
            <pubDate>Mon, 08 Feb 2010 00:01:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-b0e8a52e146b11dfac9b434463b6829a829a</guid>
        </item>
        <item>
            <title>Boldly going... where I never thought I’d go.</title>
            <link>http://revdkathy.livejournal.com/60771.html</link>
            <description><![CDATA[
I’ve been reflecting this week on the extent to which I am a different person from the one who took delivery of My Mo. <br /><br />Back in October, when I placed the order for my n900, I knew very little beyond that it was a linux based device, truly open, with a great spec and supported by an awesome community. The one thing I was sure of was that the device was capable of a whole lot of things that I would never be able to do. That didn’t bother me – any piece of tech is capable of far more than the user needs: the trick is to know how to use the ones you <i>do</i> need.<br /><br />So when Mo arrived, I knew he had this thing called an ‘Xterminal’. I took it for granted that that was sort of the equivalent of the ‘command prompt’ in windows – certainly not for ordinary users like me. The other thing I did was promise myself that I would stick to apps from either Ovi or Extras – no facing the demons of testing or devel for Mo.<br /><br />I remember the very first time I opened the Xterm and ran a line. It was the command to view the exact battery status. The fear, excitement and sense of achievement remain with me – I did it and didn’t break anything! I’ve written on here before about the experience of gaining root for the first time – along with the first time I installed something using the Xterm rather than the installer as it wasn’t fully packaged.  Now I’m at the stage where I actually <i>remember</i> the command to check memory status (I check rootfs routinely after every installation). This from the person who was so, so certain that I would never, ever need that little box.<br /><br />The same is true of my ventures outside of extras. I generally keep the testing and devel repositories disabled, but I have been in there. I’ve even got a couple of additional repos entered, where I’ve picked up special bits and piece: the iplayer service I mentioned in my last post involved collecting something from a private repository, configuring a load of stuff in Xterminal, and then each time I want something new, going into the terminal again to download it. I have half a dozen apps either from testing or devel that I am testing or using – <a href="http://talk.maemo.org/showthread.php?t=35596">Witter</a> (Great twitter app), <a href="http://talk.maemo.org/showthread.php?t=31114">Rapier</a> (Bible reader using the Sword library), <a href="http://talk.maemo.org/showthread.php?t=39737">fMMS</a> for sending and receiving media messages and of course our wonderful <a href="http://talk.maemo.org/showthread.php?t=36198">Maesheep</a>, to name but a few. Some of the apps I downloaded from testing are now in extras, which is great to see. <br /><br />Where is a frightened, cautious person I used to be? Well, still there. There are apps I want which are still in development which I have not yet tried: Tweakr for extra profiles, and Shepherd for time-scheduling apps, connections etc (and those extra profiles once you’ve got them). I’d like to do the customising bit with the little flashing lights, but sadly I’m a coward on that, too. <br /><br />But overall, N900 has taken to me places I never thought I would go to. I have done things with it I never dreamt of. There is more to do – one day I want to try one of the emulators and run palm or debian on the device. I will never run out of new things to try!<br /><br />Several of my Maemo friends have been going to new places, too: Fargus is turning DVDs into amazing quality video to make the most of n900’s screen. Texrat has been dreaming up a game - oddly not one with gears and pulleys – though not far off: something about water management with wheels and locks (watch <a href="http://talk.maemo.org/showthread.php?t=43519">this space</a> for more news on that – that one will follow on from the sheep, I think!) Frals has been visiting the home of Nokia for support with fMMS (brilliant!) and Hopbeat has been whistling at his phone in the latest development for Maesheep (we’re worried he may get locked up for that!) And Lcuk has been at the FOSDEM event in Brussels, meeting other n900 users and discovering he’s famous!<br /><br />If I’ve missed anyone, nudge me – You’ll get a mention next week! And make sure you get in the new <a href="http://www.mwkn.net/2010/05/front.html">Maemo Weekly News</a> – a great round-up of all that’s going on in the Maemo world: thanks to Jaffa and Reggie for the first couple of issues and to all involved in that project, too. Send them a tweet @mwkn for anything you think should be in next week's round-up. <br /><br />So here I am, n900 in hand asking myself “Where do I want to go today?”<span class="net_nemein_favourites">13 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=5c315610141711dfae19439cf5fa80938093&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/5c315610141711dfae19439cf5fa80938093/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=5c315610141711dfae19439cf5fa80938093&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/5c315610141711dfae19439cf5fa80938093/" class="net_nemein_favourites_create"><img src="http://static.maemo.org/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Kathy Smith &lt;kathy@revdkathy.com&gt;</author>
            <category>feed:b31073d48a28625c25e0704e6226c79a</category>
            <pubDate>Sun, 07 Feb 2010 18:12:16 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-5c315610141711dfae19439cf5fa80938093</guid>
        </item>
    </channel>
</rss>
