<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: New features</title>
	<atom:link href="http://icecream.epsicode.net/2009/09/new-features/feed/" rel="self" type="application/rss+xml" />
	<link>http://icecream.epsicode.net/2009/09/new-features/</link>
	<description>A powerful and feature rich open-source 2D engine and editor for XNA games</description>
	<lastBuildDate>Mon, 16 Jan 2012 03:38:11 +0100</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: John</title>
		<link>http://icecream.epsicode.net/2009/09/new-features/comment-page-1/#comment-7239</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 05 Jan 2012 07:33:14 +0000</pubDate>
		<guid isPermaLink="false">http://icecream.epsicode.net/?p=73#comment-7239</guid>
		<description>Admin - could you use help with your website?  Through our site you can find Outsourced Workers starting at $1/hour.  They speak English, work flexible hours, and pride themselves on doing a quality job.  There are Article Writers, Web Designers, Virtual Assistants, Email Response Handling, SEO Workers, &amp; more.  If interested we invite you to check out OutsourcedWorker.com .  Thanks :)</description>
		<content:encoded><![CDATA[<p>Admin &#8211; could you use help with your website?  Through our site you can find Outsourced Workers starting at $1/hour.  They speak English, work flexible hours, and pride themselves on doing a quality job.  There are Article Writers, Web Designers, Virtual Assistants, Email Response Handling, SEO Workers, &amp; more.  If interested we invite you to check out OutsourcedWorker.com .  Thanks :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vl4dt</title>
		<link>http://icecream.epsicode.net/2009/09/new-features/comment-page-1/#comment-2109</link>
		<dc:creator>vl4dt</dc:creator>
		<pubDate>Tue, 27 Jul 2010 04:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://icecream.epsicode.net/?p=73#comment-2109</guid>
		<description>I&#039;m also interested in this project, is it defunct?</description>
		<content:encoded><![CDATA[<p>I&#8217;m also interested in this project, is it defunct?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diego Santos Leao</title>
		<link>http://icecream.epsicode.net/2009/09/new-features/comment-page-1/#comment-2004</link>
		<dc:creator>Diego Santos Leao</dc:creator>
		<pubDate>Fri, 07 May 2010 03:35:39 +0000</pubDate>
		<guid isPermaLink="false">http://icecream.epsicode.net/?p=73#comment-2004</guid>
		<description>Time for a new blog update? :) 
Hate to be the one to ask for it... again!</description>
		<content:encoded><![CDATA[<p>Time for a new blog update? :)<br />
Hate to be the one to ask for it&#8230; again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://icecream.epsicode.net/2009/09/new-features/comment-page-1/#comment-1988</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Thu, 22 Apr 2010 19:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://icecream.epsicode.net/?p=73#comment-1988</guid>
		<description>Hi, I&#039;ve been following this project for a long time, always hoping to see a release! Any change of getting a Beta version to test?</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;ve been following this project for a long time, always hoping to see a release! Any change of getting a Beta version to test?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: naighes</title>
		<link>http://icecream.epsicode.net/2009/09/new-features/comment-page-1/#comment-1985</link>
		<dc:creator>naighes</dc:creator>
		<pubDate>Tue, 20 Apr 2010 14:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://icecream.epsicode.net/?p=73#comment-1985</guid>
		<description>Hi guys, excellent work!
I&#039;ve just found a couple of bug.

SpriteSheetGenerator.cs
------------------------
 - Event handlers for combo boxes are missing (&quot;textBoxInputDir_TextChanged&quot; should become &quot;comboBoxInputDir_SelectedIndexChanged&quot; and added to the handler list for comboBoxInputDir).

 - Method ConvertStringToList(String input) should check for null inputs. Otherwise, the SpriteEditor load attempt raises a null reference exception.

This is my suggestion:

private List ConvertStringToList(String input)
{
	List list = new List();
	Char[] sep = { &#039;,&#039; };

	if (input != null) // ADDED BY ME
	{
		String[] words = input.Split(sep, StringSplitOptions.RemoveEmptyEntries);

		foreach (String word in words)
			list.Add(word);
	}

	return list;
}

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Hi guys, excellent work!<br />
I&#8217;ve just found a couple of bug.</p>
<p>SpriteSheetGenerator.cs<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
 &#8211; Event handlers for combo boxes are missing (&#8220;textBoxInputDir_TextChanged&#8221; should become &#8220;comboBoxInputDir_SelectedIndexChanged&#8221; and added to the handler list for comboBoxInputDir).</p>
<p> &#8211; Method ConvertStringToList(String input) should check for null inputs. Otherwise, the SpriteEditor load attempt raises a null reference exception.</p>
<p>This is my suggestion:</p>
<p>private List ConvertStringToList(String input)<br />
{<br />
	List list = new List();<br />
	Char[] sep = { &#8216;,&#8217; };</p>
<p>	if (input != null) // ADDED BY ME<br />
	{<br />
		String[] words = input.Split(sep, StringSplitOptions.RemoveEmptyEntries);</p>
<p>		foreach (String word in words)<br />
			list.Add(word);<br />
	}</p>
<p>	return list;<br />
}</p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marty</title>
		<link>http://icecream.epsicode.net/2009/09/new-features/comment-page-1/#comment-1982</link>
		<dc:creator>Marty</dc:creator>
		<pubDate>Thu, 01 Apr 2010 03:18:22 +0000</pubDate>
		<guid isPermaLink="false">http://icecream.epsicode.net/?p=73#comment-1982</guid>
		<description>I&#039;d like to volunteer for beta testing.   
Let me know if you&#039;re ready to take one more tester.
I&#039;m not Carmack, but neither am I a noob.  :)

Keep up the good work!</description>
		<content:encoded><![CDATA[<p>I&#8217;d like to volunteer for beta testing.<br />
Let me know if you&#8217;re ready to take one more tester.<br />
I&#8217;m not Carmack, but neither am I a noob.  :)</p>
<p>Keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Winni</title>
		<link>http://icecream.epsicode.net/2009/09/new-features/comment-page-1/#comment-1978</link>
		<dc:creator>Winni</dc:creator>
		<pubDate>Wed, 24 Mar 2010 21:42:55 +0000</pubDate>
		<guid isPermaLink="false">http://icecream.epsicode.net/?p=73#comment-1978</guid>
		<description>Hi!
Great work! Can you provide me a download link? I&#039;d really like to try it out!
Thanks!</description>
		<content:encoded><![CDATA[<p>Hi!<br />
Great work! Can you provide me a download link? I&#8217;d really like to try it out!<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: masterblade</title>
		<link>http://icecream.epsicode.net/2009/09/new-features/comment-page-1/#comment-1974</link>
		<dc:creator>masterblade</dc:creator>
		<pubDate>Tue, 09 Mar 2010 00:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://icecream.epsicode.net/?p=73#comment-1974</guid>
		<description>hey conkerjo and epsicode!

why don&#039;t let any other developers to help you with this project?, I mean, I don&#039;t want to say that you have to leave this project in other hands, but you need more people in your team in order to develop it more faster. I&#039;m saying this because I have looked for some other game development tools like this one on internet but sincerely doesn&#039;t exist, and this project looks a really promising tool</description>
		<content:encoded><![CDATA[<p>hey conkerjo and epsicode!</p>
<p>why don&#8217;t let any other developers to help you with this project?, I mean, I don&#8217;t want to say that you have to leave this project in other hands, but you need more people in your team in order to develop it more faster. I&#8217;m saying this because I have looked for some other game development tools like this one on internet but sincerely doesn&#8217;t exist, and this project looks a really promising tool</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diego Santos Leão</title>
		<link>http://icecream.epsicode.net/2009/09/new-features/comment-page-1/#comment-1973</link>
		<dc:creator>Diego Santos Leão</dc:creator>
		<pubDate>Sun, 21 Feb 2010 02:33:26 +0000</pubDate>
		<guid isPermaLink="false">http://icecream.epsicode.net/?p=73#comment-1973</guid>
		<description>Please update this site more often :( We are dying here for more info! Please show videos of you doing stuff on the most current version of the engine, pleeease? Anyway, good job so far!</description>
		<content:encoded><![CDATA[<p>Please update this site more often :( We are dying here for more info! Please show videos of you doing stuff on the most current version of the engine, pleeease? Anyway, good job so far!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rantam</title>
		<link>http://icecream.epsicode.net/2009/09/new-features/comment-page-1/#comment-1968</link>
		<dc:creator>Rantam</dc:creator>
		<pubDate>Thu, 12 Nov 2009 10:13:30 +0000</pubDate>
		<guid isPermaLink="false">http://icecream.epsicode.net/?p=73#comment-1968</guid>
		<description>Nice job. The engine seems nice.
I try download beta, but the irc channel don`t exists. How can we get beta? Cheers</description>
		<content:encoded><![CDATA[<p>Nice job. The engine seems nice.<br />
I try download beta, but the irc channel don`t exists. How can we get beta? Cheers</p>
]]></content:encoded>
	</item>
</channel>
</rss>

