<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.systems.archos.rockbox.devel">
    <title>gmane.comp.systems.archos.rockbox.devel</title>
    <link>http://blog.gmane.org/gmane.comp.systems.archos.rockbox.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10646"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10639"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10637"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10636"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10634"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10632"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10627"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10625"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10624"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10621"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10618"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10617"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10613"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10603"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10598"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10595"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10594"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10593"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10591"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10590"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10646">
    <title>[ata] wait_for_bsy vs. wait_for_rdy: ATA spec interpretation</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10646</link>
    <description>&lt;pre&gt;Hi folks,

(heh, I hope this won't be too long, but its essentially just a short
question with a „bit“ of context)

I'm still messing with ATA code to debug further SSD issues. Now I
stumbled across what rockbox code does before command issuing. Basically
its like this:

(1) Select the device
(2) wait_for_rdy
(2a) wait_for_bsy (or return with error)
(2a.i) wait until STATUS_BSY is cleared (or timeout)
(2a) wait until STATUS_RDY is set (or timeout)
(3) Setup parameters and issue the command

(see firmware/ata.c, searching for ATA_SELECT for reference, its done at
several places)

However, ATA spec draft 5 (section 9.3, its at page 236 in the version I
have) has the following state graph for the bus idle mode (i.e. before a
command is being executed):


Check_Status:
    BSY = 0 &amp;amp; DRQ = 0 &amp;amp; wrong device selected
      =&amp;gt; Device_Select
    BSY = 0 &amp;amp; DRQ = 0 &amp;amp; correct device selected
      =&amp;gt; Write_parameters
    BSY = 1 or DRQ = 1
      =&amp;gt; Check_Status
Device_Select:
    Device selected
      =&amp;gt; Check_Statu&lt;/pre&gt;</description>
    <dc:creator>Jonas Wielicki</dc:creator>
    <dc:date>2012-05-07T16:21:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10639">
    <title>How to debug gapless issues?</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10639</link>
    <description>&lt;pre&gt;Hi folks,

I am still struggling with a gapless (or not) playback issue I'm having
since I got the SSD in my player.

As this is nonstandard hardware, I guess its best when I track the bug
by myself, but I need some advice where to look for potential issues.

My first thought was that it might be due to the SSD being slow when
writing changes to the playlist control file. So I tried to disable all
writing by putting a return 0 right at the start of flush_cached_control
in playlist.c, but that did not fix the issue.

It should be no problem in buffering, as the buffers are pretty full in
the buffering thread debug screen. The songs are all ogg/vorbis, so it
should not be an codec issue; also, everything was fine before the SSD
upgrade.

When turning on Crossfade, after an reboot, crossfading works, but it
feels as if there is a lag between the start of crossfade and the press
of the next button on manual skip. Crossfading works then though. On
end-of-track skipping, there is still a lag and no crossfading (al&lt;/pre&gt;</description>
    <dc:creator>Jonas Wielicki</dc:creator>
    <dc:date>2012-05-06T16:21:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10637">
    <title>Treten Sie meinem Netzwerk auf LinkedIn bei</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10637</link>
    <description>&lt;pre&gt;LinkedIn
------------




    Jacob Mansfield möchte Sie als Kontakt auf LinkedIn hinzufügen:
  

------------------------------------------

Ich möchte Sie gerne zu meinem beruflichen Netzwerk auf LinkedIn hinzufügen.

Einladung von Jacob Mansfield annehmen
http://www.linkedin.com/e/-10baj0-h1opd4dh-2w/usr0uRhcvkZDWCRmYFo5YYCfQXVDxmR8WU-sDU/blk/I145919248_150/6lColZJrmZznQNdhjRQnOpBtn9QfmhBt71BoSd1p65Lr6lOfP0RclYUd38VcjARd359bRxge6xMgAtLbPwTdzkUcPsMejoLrCBxbOYWrSlI/EML_comm_afe/?hs=false&amp;amp;tok=0Nj4jpTaUAKBc1

Einladung von Jacob Mansfield anzeigen
http://www.linkedin.com/e/-10baj0-h1opd4dh-2w/usr0uRhcvkZDWCRmYFo5YYCfQXVDxmR8WU-sDU/blk/I145919248_150/c3kNnPwQczANejkQckALqnpPbOYWrSlI/svi/?hs=false&amp;amp;tok=1p--3LF5EAKBc1

------------------------------------------

Warum sollten Sie Jacob Mansfield in Ihr Netzwerk einladen?

Die Kontakte von Jacob Mansfield könnten auch Ihnen nützlich sein:

Nachdem Sie die Einladung von Jacob Mansfield akzeptiert haben, sehen Sie nach, welche Kontakte von Jacob Mansfield Sie &lt;/pre&gt;</description>
    <dc:creator>Jacob Mansfield über LinkedIn</dc:creator>
    <dc:date>2012-05-01T08:36:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10636">
    <title>Ladies and gentlemen, we have sound on the Creative Zen X-Fi3!</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10636</link>
    <description>&lt;pre&gt;I'm pleased to announced that my Creative Zen X-Fi3 successfully played its
first song:
Vincent Cheng - Seasons (Creative Demo)

Hopefully this target is pretty stable, everything basically works except
the recording, speakers, tv encoding and bluetooth of course.

Cheers !

Amaury Pouly
&lt;/pre&gt;</description>
    <dc:creator>Amaury Pouly</dc:creator>
    <dc:date>2012-04-30T17:41:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10634">
    <title>DevConEuro 2012</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10634</link>
    <description>&lt;pre&gt;Hello once more,

DevConEuro 2012 is only three weeks away now. If you plan to attend,
and you haven't done so already, please add your name to the list on
http://www.rockbox.org/wiki/DevConEuro2012.

If you're still looking for a place to stay and need some ideas,
http://www.ibishotel.com/gb/hotel-1456-ibis-hasselt-centrum/index.shtml
is a popular option, with several people already having booked there.
Note that the price currently advertised there for the devcon weekend
is only valid if you book at least 20 days in advance, so it will likely
go up in the next few days. 

Frank

&lt;/pre&gt;</description>
    <dc:creator>Frank Gevaerts</dc:creator>
    <dc:date>2012-04-27T11:28:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10632">
    <title>Ladies and gentlemen, we have sound on the Creative Zen X-Fi2!</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10632</link>
    <description>&lt;pre&gt;I'm pleased to announced that my Creative Zen X-Fi2 successfully played its
first song:
2Pac - California Love

The port is still very unstable, experimenting random crashes and weirdness
and is still running out of the SD card because of the lack of NAND drive.
On the good side it is very close to the Creative Zen X-Fi3 which also runs
rockbox (without sound unfortunately) so both ports share a lot of code and
will hopefully bring more features to the imx233/ subtarget.

Cheers !

Amaury Pouly
&lt;/pre&gt;</description>
    <dc:creator>Amaury Pouly</dc:creator>
    <dc:date>2012-04-25T17:49:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10627">
    <title>Fixing lags/freezes with SSD in iriver H320</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10627</link>
    <description>&lt;pre&gt;Hello rockbox-dev,

This is basically a repost of of my forum post [1], as I was indicated
to have a try on the mailing list. I'll repost everything here in a
restructured manner + some more details for the sake of completeness though.

I recently replaced the toshiba HDD (which had a hardware defect, i.e.
it only went tick-tick-tick crrrsssh on certain songs and I/O-errord
when trying to access those via USB) in my iriver H320 with a 60GB 1.8"
50-pin IDE SSD (MXSSD1MNANO50-60G). After reinstalling rockbox software
(bootloader was still there ofc), everything worked fine, but a few
minutes of playback later, some errors may (I say may, because the
symptoms differ, see below) occur:
* Playback reliably stops
* “Error accessing playlist control file” - may occur
* Freeze - may occur after the above error; however, freeze might also
be me too unpatient when trying to turn the player off
* Freeze if one tries to do anything with the drive (e.g. accessing
files, loading a theme…)

The first three conditions&lt;/pre&gt;</description>
    <dc:creator>Jonas Wielicki</dc:creator>
    <dc:date>2012-04-16T06:58:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10625">
    <title>Rockbox 3.11.2 released!</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10625</link>
    <description>&lt;pre&gt;Hello all,

On behalf of the Rockbox developers, I'm very pleased to announce that
Rockbox 3.11.2 has just been released!

Rockbox 3.11.2 fixes several important bugs in Rockbox 3.11 affecting
Sandisk Sansa and Olympus m:robe 100 devices. Please see the release
notes for details:

    http://www.rockbox.org/wiki/ReleaseNotes3112

There are no functional changes.

Go here to download the installer (individual zips are also available):

    http://www.rockbox.org/download/

Unfortunately we haven't managed to fix the outstanding serious issues
with the Ipod Nano 2g yet, so that one still isn't included in the
release.

Frank


&lt;/pre&gt;</description>
    <dc:creator>Frank Gevaerts</dc:creator>
    <dc:date>2012-04-12T08:45:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10624">
    <title>DevConEuro2012 date decided!</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10624</link>
    <description>&lt;pre&gt;Hello,

DevConEuro2012 will take place in Hasselt (Belgium) on 18-20 May 2012.

If you're planning to attend, please add your name to the wiki at
http://www.rockbox.org/wiki/DevConEuro2012. While doing that, have a
look at the rest of the page, and fill in other bits as applicable.
Things that spring to mind are hostel/hotel interest, and the agenda.

If you're not planning to attend, please still consider telling us what
to talk about. A DevCon without an agenda is no fun!

Frank

&lt;/pre&gt;</description>
    <dc:creator>Frank Gevaerts</dc:creator>
    <dc:date>2012-04-11T11:48:52</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10621">
    <title>Sansa E200 V1 radio works when reverting to rockbox 3.10 version.</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10621</link>
    <description>&lt;pre&gt;


I copied the rockbox version 3.10 version back on to my sansa and it worked.  Let me know of anything else you want me to test. 

Like if you have a new version of rockbox with radio for 3.11. 

Thank You, 

Greg Manhart&lt;/pre&gt;</description>
    <dc:creator>GREG</dc:creator>
    <dc:date>2012-04-01T23:36:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10618">
    <title>English Voice Pack tweak needed</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10618</link>
    <description>&lt;pre&gt;


Hello, 

If you have the 3.11 English voice pack downloaded it says Plug Inches instead of Plugins. Could someone tweak the English text? 

Thank You, 

Greg Manhart &lt;/pre&gt;</description>
    <dc:creator>GREG</dc:creator>
    <dc:date>2012-04-01T22:31:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10617">
    <title>Rockbox 3.11 released!</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10617</link>
    <description>&lt;pre&gt;Hello all,

On behalf of the Rockbox developers, I'm very pleased to announce that
Rockbox 3.11 has just been released!


Go here to download the installer (individual zips are also available):

          http://www.rockbox.org/download/

Read up on the most noticeable changes in 3.11:

          http://www.rockbox.org/wiki/ReleaseNotes311

Of note in this release is that due to some serious issues we have been 
forced to downgrade the Ipod Nano 2g to unstable, so it isn't included 
in the 3.11 release. We hope to add it back in a future update.

And above all, enjoy!

Alex



&lt;/pre&gt;</description>
    <dc:creator>Alex Parker</dc:creator>
    <dc:date>2012-04-01T11:35:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10613">
    <title>3.11 release candidate builds available</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10613</link>
    <description>&lt;pre&gt;Hello,

I've uploaded some release candidate builds for the 3.11 release to
http://www.hostname.be/3.11RC/ . Please test them and report back,
even if just to say there were no problems (we like those reports!),
either here or on the forums in the 3.11RC thread. The forum thread
about these builds is http://forums.rockbox.org/index.php/topic,33873.0.html

Don't forget to mention which exact player you're testing on.

If you encounter bugs, please file bug reports (unless the problem is
already reported), or at least report the bug here or on the forums in
the 3.11RC thread. We'd like 3.11 to be as good as possible.

Note that Rockbox Utility doesn't know about these release candidate
builds, so you'll have to install them manually. The final release will
of course be supported by Rockbox Utility.

There is one major known issue: USB is broken on the ipod nano2g. We
won't release until this has been fixed or worked around.

Frank



&lt;/pre&gt;</description>
    <dc:creator>Frank Gevaerts</dc:creator>
    <dc:date>2012-03-28T20:37:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10603">
    <title>DevConEuro 2012 dates</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10603</link>
    <description>&lt;pre&gt;Hello again,

We'd like to decide on the DevConEuro2012 dates as fairly soon now, so
people can start booking flights, trains, boats, and hotels and still
hope to get reasonable rates.

If you want to attend and haven't added your name and possible dates to 
http://www.rockbox.org/wiki/DevCon2012 yet, please do so as soon as
possible.

Frank

&lt;/pre&gt;</description>
    <dc:creator>Frank Gevaerts</dc:creator>
    <dc:date>2012-03-28T14:33:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10598">
    <title>Changing build/release terminology</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10598</link>
    <description>&lt;pre&gt;Hi folks,

I would like to propose that we change our terminology used to
describe the builds and releases, on the website and in Rockbox
Utility. Currently we talk about "release" and "current build" a lot,
and this confuses users over and over who don't understand the
distinction, and I am inclined to agree with people who think this is
confusing.

I propose that we do our best to switch to the following terminology
consistently in our written materials:

1) "Stable release": e.g. stable release 3.10.
2) "Development build": e.g. development build abc123g.
3) "Archived development build": the daily snapshots Rockbox Utility
can install.

I think this would make the distinction much clearer, and it would
also help to make it clear that the daily snapshots are not something
most people should install (currently people often believe they are
somehow more stable/reliable than the current builds, which is not the
case).

Please, reply with your thoughts. I'm not set on these particular
terms, it's just an initi&lt;/pre&gt;</description>
    <dc:creator>Torne Wuff</dc:creator>
    <dc:date>2012-03-28T09:49:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10595">
    <title>re FS#12625 - Sleep timer setting is broken</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10595</link>
    <description>&lt;pre&gt;Hi,

This wasnt caught when the sleep timer changes were commited, and its
not really a big deal but it should be changed.

IIUC the sleep timer is now broken into a few different settings:
1) set timer on boot
2) restart timer on keypress
3) start the timer with the chosen minutes value (arbitrarily set to
5min increments).

Both the first two settings use the 3rd to know how long to start the
timer for manually. The issue in the task is:
1) It isnt a normal setting so cant be added to the quickscreen and
shortcuts menu (minor inconvinience)
2) cancelling the setting screen enables the timer anyway. - BAD!

I don't understand why setting the sleep timer duration for boot
should be linked to the sleep timer duration i want to set
temporarily. (i.e the current system means unless I have a fixed.cfg
it is impossible for me to set a 30min timer before i go to bed and
have it turn on with a 90min timer).

The duration should be a separate setting and the "start sleep timer"
menu item should then be changed to st&lt;/pre&gt;</description>
    <dc:creator>Jonathan Gordon</dc:creator>
    <dc:date>2012-03-27T13:20:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10594">
    <title>DevConEuro 2012</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10594</link>
    <description>&lt;pre&gt;OK, I've not seen other proposals, so DevConEuro2012 will take place in
Hasselt. I've started the usual wiki pages.

If you want to attend, please add your name and suitable dates to
http://www.rockbox.org/wiki/DevCon2012.

There's general information about the location and how to get there
on http://www.rockbox.org/wiki/DevConEuro2012.

What's still missing on the wiki is instructions on how to find the
correct building and door from the car park. I'll add an illustrated
guide later.

One thing I forgot to mention earlier is that the location is upstairs
(one floor up), and doesn't have a lift, so it's not suited for
wheelchairs.

Frank

&lt;/pre&gt;</description>
    <dc:creator>Frank Gevaerts</dc:creator>
    <dc:date>2012-03-18T14:59:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10593">
    <title>3.11 release status</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10593</link>
    <description>&lt;pre&gt;Hello everyone

The release schedule said we were going to release today, but
unfortunately there are some nasty bugs left, mainly with USB on the
ipod nano 2G. Until this is fixed releasing is not a very good idea.

This means we'll delay the release until at least next week. I hope
everything will be ready by then, but there are of course no guarantees.

There is a bit of good news though for those who want to work on new
features: the move to git makes merging bugfixes to the release branch
much easier, so there's no real need for holding back on invasive
changes like there used to be in the svn days.

Frank

&lt;/pre&gt;</description>
    <dc:creator>Frank Gevaerts</dc:creator>
    <dc:date>2012-03-18T13:40:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10591">
    <title>[Review Request] Constrain get_next_dir() to directories below global_settings.start_directory. (#182)</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10591</link>
    <description>&lt;pre&gt; From the commit description;

If the user has set "Start File Browser Here" (config.cfg: start 
directory) to anything other than root and "Auto-Change Directory" is 
set to "Yes" or "Random", the directory returned when an auto change is 
required will be constrained to the value of "start directory" or below.

http://gerrit.rockbox.org/r/#/c/182/

&lt;/pre&gt;</description>
    <dc:creator>Nick Peskett</dc:creator>
    <dc:date>2012-03-14T09:16:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10590">
    <title>A DevCon proposal</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10590</link>
    <description>&lt;pre&gt;Hello,

It appears I can organise DevCon2012 at work, in Hasselt, Belgium.

The location has a meeting room that should be able to hold the usual
DevCon crowd (i.e. 10 to 15 people), although it's not very big. There's
some open space in the building though, so we can manage overflows
without too many problems.

There's an internet connection that should be fast enough for what we need,
and enough coffee to make people happy, and the meeting room had a new
air conditioning unit installed last year (and I know how to control
it!).

For food, there are: a supermarket, self service restaurant, and fast
food places within DAP-throwing distance, other places are bit further
away.

Hasselt has a decent selection of hotels in various price ranges, and
there's a hostel about 10km away. This isn't a large metropolitan area
though, so don't expect public transport at 3am.

Ideally we'd have a few cars available to get everyone around, but I
think we should be able to get those.

Getting to Hasselt from Brussels Airpor&lt;/pre&gt;</description>
    <dc:creator>Frank Gevaerts</dc:creator>
    <dc:date>2012-03-12T20:03:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10589">
    <title>Branched for 3.11</title>
    <link>http://comments.gmane.org/gmane.comp.systems.archos.rockbox.devel/10589</link>
    <description>&lt;pre&gt;Hello everyone

We have branched for 3.11.

This means master is open for new features again, but bugfixes of course
remain very welcome.

If all goes well, we'll release in a week. There are some known bugs
that might delay the release a bit though, so don't flame us if we're a
bit late.

You can get the new branch using "git checkout v3.11", and changes for
the stable release can be pushed to refs/for/v3.11 if you want them to
be reviewed.

Frank

&lt;/pre&gt;</description>
    <dc:creator>Frank Gevaerts</dc:creator>
    <dc:date>2012-03-11T22:47:35</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.systems.archos.rockbox.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.systems.archos.rockbox.devel</link>
  </textinput>
</rdf:RDF>

