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

<channel>
	<title>Blog of Anders Rune Jensen &#187; mms</title>
	<atom:link href="http://people.iola.dk/arj/tag/mms/feed/" rel="self" type="application/rss+xml" />
	<link>http://people.iola.dk/arj</link>
	<description>metalinguistic musings and other related ramblings</description>
	<lastBuildDate>Fri, 18 Nov 2011 19:13:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>My Media System 1.1.1 released</title>
		<link>http://people.iola.dk/arj/2009/04/26/my-media-system-111-released/</link>
		<comments>http://people.iola.dk/arj/2009/04/26/my-media-system-111-released/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 21:02:05 +0000</pubDate>
		<dc:creator>Anders Rune Jensen</dc:creator>
				<category><![CDATA[My Media System]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[HTPC]]></category>
		<category><![CDATA[media center]]></category>
		<category><![CDATA[mms]]></category>

		<guid isPermaLink="false">http://people.iola.dk/arj/?p=311</guid>
		<description><![CDATA[<p>A minor bugfix <a href="http://forum.mymediasystem.org/viewtopic.php?f=1&amp;t=1819">release</a> for the 1.1.0 series was released today. Special thanks to the many contributors.</p>
]]></description>
		<wfw:commentRss>http://people.iola.dk/arj/2009/04/26/my-media-system-111-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Media System 1.1.0 released</title>
		<link>http://people.iola.dk/arj/2009/03/09/my-media-system-110-released/</link>
		<comments>http://people.iola.dk/arj/2009/03/09/my-media-system-110-released/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 23:23:23 +0000</pubDate>
		<dc:creator>Anders Rune Jensen</dc:creator>
				<category><![CDATA[My Media System]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[HTPC]]></category>
		<category><![CDATA[mms]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://people.iola.dk/arj/?p=293</guid>
		<description><![CDATA[<p>Finally the day has arrived when <a href="http://forum.mymediasystem.org/viewtopic.php?f=1&amp;t=1740&amp;p=14389#p14389">mms 1.1.0 has been released</a>. After 9 release candidates the release is finally here. The last couple of months of only focusing on bugs has really payed off. Everyone was only fixing bugs which means that we where able to squaze in 67 bug fixes in 2 and a half month.</p>
<p>See photos of <a href="http://www.flickr.com/groups/994711@N25/">mms running</a> in the flickr group.</p>
]]></description>
		<wfw:commentRss>http://people.iola.dk/arj/2009/03/09/my-media-system-110-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distributed development using bzr</title>
		<link>http://people.iola.dk/arj/2009/01/20/distributed-development-using-bzr/</link>
		<comments>http://people.iola.dk/arj/2009/01/20/distributed-development-using-bzr/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 17:54:44 +0000</pubDate>
		<dc:creator>Anders Rune Jensen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bzr]]></category>
		<category><![CDATA[dvcs]]></category>
		<category><![CDATA[mms]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://people.iola.dk/arj/?p=260</guid>
		<description><![CDATA[<p>It&#8217;s no secret that I have been a big fan of distributed development tools for a while. One of the maybe best things about them is that they have almost zero overhead settings up. This means that the biggest argument for not using (are there really any?) a version control system is gone. We have been using <a href="http://bazaar-vcs.org/Bzr">bzr</a> in <a href="http://www.mymediasystem.org">MMS</a> for quite a while and recently the core team of developers with access to the source code has grown quite a bit.  So we started having trouble with revision numbers, since they are in a distributed version control by definition not absolute. But fear not, there is a good solution to &#8220;work around&#8221; that problem. One that goes well with the good idea of having multiple branches. I&#8217;ll just use mms as an example. First thing to do is to create a local main branch, a mirror of the what is available on the web:</p>
<blockquote><p>bzr get http://bazaar.launchpad.net/~team-mms/mms/1.1.0 mms-1.1.0</p></blockquote>
<p>Now we have a local version of the main repo. So lets branch that for our own changes:</p>
<blockquote><p>bzr branch mms-1.1.0 mms-1.1.0-arj</p></blockquote>
<p>Then whenever I want to do something I just work in mms-1.1.0-arj. Commit to that locally. Then when the changs are look good enough to be push, do a <em>bzr pull</em> in the main repo, <em>bzr merge ../mms-1.1.0-arj</em>. Then <em>bzr push</em> to push the changes to main repo.</p>
<p>When changes come in from other people through local the main repo, just do a <em>bzr merge ../mms-1.1.0</em> inside the mms-1.1.0-arj directory.</p>
<p>Futhermore if one is working on a big new feature, it might be a good idea to create another local branch just for that. This makes it easier to track everything in the long run.</p>
]]></description>
		<wfw:commentRss>http://people.iola.dk/arj/2009/01/20/distributed-development-using-bzr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Media System 1.1.0 rc9 released</title>
		<link>http://people.iola.dk/arj/2008/12/16/my-media-system-110-rc9-released/</link>
		<comments>http://people.iola.dk/arj/2008/12/16/my-media-system-110-rc9-released/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 03:19:06 +0000</pubDate>
		<dc:creator>Anders Rune Jensen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[HTPC]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[media center]]></category>
		<category><![CDATA[mms]]></category>

		<guid isPermaLink="false">http://people.iola.dk/arj/?p=232</guid>
		<description><![CDATA[<p>Yesterday <a href="http://forum.mymediasystem.org/viewtopic.php?f=1&amp;t=1582">MMS 1.1.0 rc9 was released</a>. This has been a long time coming and hopefully will be the last release candidate before MMS hits 1.1.0 final. Changes are all over the map, not that many big new shiny things, but a lot of bugfixes and rewritings of the internals of MMS.</p>
]]></description>
		<wfw:commentRss>http://people.iola.dk/arj/2008/12/16/my-media-system-110-rc9-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My media system 1.1.0 rc8 released</title>
		<link>http://people.iola.dk/arj/2008/08/16/my-media-system-110-rc8-released/</link>
		<comments>http://people.iola.dk/arj/2008/08/16/my-media-system-110-rc8-released/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 23:58:07 +0000</pubDate>
		<dc:creator>Anders Rune Jensen</dc:creator>
				<category><![CDATA[My Media System]]></category>
		<category><![CDATA[mms]]></category>

		<guid isPermaLink="false">http://people.iola.dk/arj/?p=176</guid>
		<description><![CDATA[<p>24 days since rc7 and <a href="http://forum.mymediasystem.org/viewtopic.php?f=1&amp;t=1468">40+ fixes</a>. Not bad, depending on how you view it <img src='http://people.iola.dk/arj/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Final shouldn&#8217;t be that far away now.</p>
]]></description>
		<wfw:commentRss>http://people.iola.dk/arj/2008/08/16/my-media-system-110-rc8-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Media System 1.1.0 rc7 released</title>
		<link>http://people.iola.dk/arj/2008/07/22/my-media-system-110-rc7-released/</link>
		<comments>http://people.iola.dk/arj/2008/07/22/my-media-system-110-rc7-released/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 22:01:42 +0000</pubDate>
		<dc:creator>Anders Rune Jensen</dc:creator>
				<category><![CDATA[HTPC]]></category>
		<category><![CDATA[My Media System]]></category>
		<category><![CDATA[n800]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[mms]]></category>

		<guid isPermaLink="false">http://people.iola.dk/arj/?p=164</guid>
		<description><![CDATA[<p>Did a new release of <a href="http://www.mymediasystem.org">My Media System</a> today. There are changes all over the place, but the things I personally care most about is the new zoom interface that makes it easier to find out what you are looking at, the multiple input so that I can use my nokia n800 with mms over vnc without shutting down mms, and finally switch resolution so that I can change from 720p projector size to 800&#215;480 (the size of the n800 screen) also without shutting down mms or having multiple instances running.</p>
<p>This makes it very easy to use the nokia as a remote control for music playback. I often listen to music at night and like that I have my whole collection available, connected to my stereo &amp; headphones. When I want to watch a movie I just switch back to &#8220;fullscreen&#8221; and I can easily navigate to the movie using remote control.</p>
]]></description>
		<wfw:commentRss>http://people.iola.dk/arj/2008/07/22/my-media-system-110-rc7-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

