<?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>Guillermo Rauch&#039;s Devthought &#187; release</title>
	<atom:link href="http://www.devthought.com/tag/release/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devthought.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 16:38:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>TextboxList 0.4 for jQuery is here!</title>
		<link>http://www.devthought.com/2009/11/11/textboxlist-04-for-jquery-is-here/</link>
		<comments>http://www.devthought.com/2009/11/11/textboxlist-04-for-jquery-is-here/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 21:10:02 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Client side]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[textboxlist]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=1069</guid>
		<description><![CDATA[Big update for my dear jQuery users. I&#8217;m rolling out TextboxList for jQuery 0.4 with these updates: [FEATURE] Autocompletion with on-demand server querying [ENHANCEMENT] All classes moved to $. to avoid global namespace pollution. Please make sure to prepend $. &#8230; <a href="http://www.devthought.com/2009/11/11/textboxlist-04-for-jquery-is-here/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Big update for my dear jQuery users. I&#8217;m rolling out TextboxList for jQuery 0.4 with these updates:</p>
<ul>
<li>[FEATURE] Autocompletion with on-demand server querying</li>
<li>
<p>[ENHANCEMENT] All classes moved to $. to avoid global namespace pollution. Please make sure to prepend <code class="inline">$.</code> to TextboxList if you are upgrading from an older version:</p>
<pre class='highlight ' lang="javascript">
   new $.TextboxList('#element');
</pre>
</li>
<li>
<p>[FEATURE] Easier jQuery-friendly initialization like this:</p>
<pre class='highlight ' lang="javascript">
   $('#element').textboxlist({options});
</pre>
<p>However, if you still need to access the TextboxList instance to call additional methods (like <code class="inline">add</code>), you&#8217;ll have to continue to use <code class="inline">new $.TextboxList</code></p>
</li>
<li>[BUGFIX] <code class="inline">GrowingInput</code> now works in noConflict mode</p>
<li>[BUGFIX] Fix for <code class="inline">GrowingInput</code> to handle special characters and correctly calculate the input length.</li>
<li>[BUGFIX] Fix for support of multiple addKeys</li>
<li>[BUGFIX] Fix for focus problem when TextboxList gains focus through focusing an editable input</li>
<li>[BUGFIX] Autocomplete search term is now trimmed (thanks Mike Feng)</li>
<li>[BUGFIX] Fix for when the max option is used</li>
<li>[BUGFIX] Fix for unique = true and autocomplete.</li>
</ul>
<p>As usual, head to the <a href="http://devthought.com/projects/jquery/textboxlist/">project page</a> for download.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/11/11/textboxlist-04-for-jquery-is-here/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
		<item>
		<title>TextboxList 0.4: On-Demand suggestions</title>
		<link>http://www.devthought.com/2009/06/01/textboxlist-04-on-demand-suggestions/</link>
		<comments>http://www.devthought.com/2009/06/01/textboxlist-04-on-demand-suggestions/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 12:07:42 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Client side]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[textboxlist]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=983</guid>
		<description><![CDATA[TextboxList 0.4 is out, with new features: check option, which can allow you to specify a function to filter out new boxes that do not meet a requirement encode now receives the complete values, not only the id or string &#8230; <a href="http://www.devthought.com/2009/06/01/textboxlist-04-on-demand-suggestions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>TextboxList 0.4 <a href="/projects/mootools/textboxlist/">is out</a>, with new features:</p>
<ul>
<li><code class="inline">check</code> option, which can allow you to specify a function to filter out new boxes that do not meet a requirement</li>
<li><code class="inline">encode</code> now receives the complete values, not only the id or string of the bit. This gives you full control of what you want to send to the server.</li>
<li>
<p>Autocomplete now works with on-demand suggestions. As easy as this:</p>
<pre class='highlight ' lang="javascript">
new TextboxList('form_tags_input_4', {unique: true, plugins: {autocomplete: {
	minLength: 3,
	queryRemote: true,
	remote: {url: 'autocomplete2.php'}
}}});
</pre>
</li>
</ul>
<p>And some bugfixes:</p>
<ul>
<li>Fixed missing index when unique: false and autocomplete were used, which resulted in an error</li>
<li>Fixed problems with items with id 0, which incorrectly evaluated as false.</li>
</ul>
<p>Head to <a href="/wp-content/projects/mootools/textboxlist/Demo/">the demo</a> to see the new autocomplete in action, and as usual, report any bugs you might encounter.<br />
Update: 0.5 is out already, which fixes a bug with the traditional use of Autocomplete. Sorry for the trouble!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/06/01/textboxlist-04-on-demand-suggestions/feed/</wfw:commentRss>
		<slash:comments>44</slash:comments>
		</item>
		<item>
		<title>BarackSlideshow 0.3</title>
		<link>http://www.devthought.com/2009/05/11/barackslideshow-03/</link>
		<comments>http://www.devthought.com/2009/05/11/barackslideshow-03/#comments</comments>
		<pubDate>Tue, 12 May 2009 02:40:08 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[mootools plugin]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=954</guid>
		<description><![CDATA[Due to popular request, I&#8217;ve made some changes to BarackSlideshow: New project page with documentation and how to use explanation It includes the upcoming, updated and optimized Fx.MorphList The download package has been fixed for a very easy deployment.]]></description>
			<content:encoded><![CDATA[<p>Due to popular request, I&#8217;ve made some changes to <a href="/projects/mootools/barackslideshow">BarackSlideshow</a>:</p>
<ul>
<li>New <a href="/projects/mootools/barackslideshow">project page</a> with documentation and how to use explanation</a></li>
<li>It includes the upcoming, updated and optimized Fx.MorphList</a></li>
<li>The download package has been fixed for a very easy deployment.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/05/11/barackslideshow-03/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>PHP URL Shortening Class released</title>
		<link>http://www.devthought.com/2009/04/24/php-url-shortening-class-released/</link>
		<comments>http://www.devthought.com/2009/04/24/php-url-shortening-class-released/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 16:27:34 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Server side]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=921</guid>
		<description><![CDATA[I&#8217;ve just released PHPShortener, a PHP class that makes it very easy to encode/decode URLs with services such as tr.im, is.gd, and others. Encoding and decoding is a simple as this: $s = new PHPShortener(); // encode a long url &#8230; <a href="http://www.devthought.com/2009/04/24/php-url-shortening-class-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just released <a href="/projects/php/phpshortener/">PHPShortener</a>, a PHP class that makes it very easy to encode/decode URLs with services such as tr.im, is.gd, and others.</p>
<p>Encoding and decoding is a simple as this:</p>
<pre class='highlight ' lang="php">
$s = new PHPShortener();
// encode a long url
$shorturl = $s->encode('http://devthought.com/projects/php/phpshortener/', 'is.gd');
// decode a short url (autodetects the service)
$longurl = $s->decode('http://tr.im/jBBp');
</pre>
<p>Head to the <a href="/projects/php/phpshortener/">project page</a> for downloads and documentation. Fork me on <a href="http://github.com/Guille/phpshortener/tree/master">GitHub</a> if you want to contribute!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/04/24/php-url-shortening-class-released/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>TextboxList 0.3 and jQuery version out!</title>
		<link>http://www.devthought.com/2009/04/21/textboxlist-03-and-jquery-version-out/</link>
		<comments>http://www.devthought.com/2009/04/21/textboxlist-03-and-jquery-version-out/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 15:17:02 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Client side]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=855</guid>
		<description><![CDATA[Moo TextboxList 0.3 changes: HTML for bits not showing properly fixed highlightSelector not working (due to a typo) fixed GrowingInput missing pad function added (only affected if you customized growing.mini option) Improved clicking the whole widget behavior Other tiny enhancements &#8230; <a href="http://www.devthought.com/2009/04/21/textboxlist-03-and-jquery-version-out/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Moo TextboxList 0.3 changes:</p>
<ul>
<li>HTML for bits not showing properly fixed</li>
<li><code class="inline">highlightSelector</code> not working (due to a typo) fixed</li>
<li><code class="inline">GrowingInput</code> missing pad function added (only affected if you customized growing.mini option)</li>
<li>Improved clicking the whole widget behavior</li>
<li>Other tiny enhancements / cleanup</li>
</ul>
<p>Secondly, in the best interest of the JavaScript community, I&#8217;ve ported TextboxList to jQuery. The API changes slightly due to the different OOP approach, but all the functionality is intact. Head to <a href="/projects/jquery/textboxlist/">jQuery TextboxList</a> project page for more.</p>
<p>Update: 0.2 is out for jQuery. Bugs in autocompleter and IE have been addressed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/04/21/textboxlist-03-and-jquery-version-out/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>WP-o-Matic release date</title>
		<link>http://www.devthought.com/2009/04/14/wp-o-matic-release-date/</link>
		<comments>http://www.devthought.com/2009/04/14/wp-o-matic-release-date/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 19:04:19 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wp-o-matic]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=822</guid>
		<description><![CDATA[Everyone follow @wpomatic on Twitter to learn the release date before everyone else!]]></description>
			<content:encoded><![CDATA[<p>Everyone follow <a href="http://twitter.com/wpomatic">@wpomatic</a> on <a href="http://twitter.com">Twitter</a> to learn the release date before everyone else!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/04/14/wp-o-matic-release-date/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>The new TextboxList is here</title>
		<link>http://www.devthought.com/2009/04/08/the-new-textboxlist-is-here/</link>
		<comments>http://www.devthought.com/2009/04/08/the-new-textboxlist-is-here/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 22:20:54 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[jquery plugin]]></category>
		<category><![CDATA[mootools plugin]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=642</guid>
		<description><![CDATA[It&#8217;s been some time since TextboxList got some attention. It is undoubtedly one of my most popular JavaScript projects, along with the famous Fancy Menu (MorphList) and its slideshow sibling, BarackSlideshow. TextboxList (demo) has been rewritten from scratch, and it&#8217;s &#8230; <a href="http://www.devthought.com/2009/04/08/the-new-textboxlist-is-here/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been some time since <a href="/projects/mootools/textboxlist/">TextboxList</a> got some attention. It is undoubtedly one of my most popular JavaScript projects, along with the famous Fancy Menu (<a href="/projects/mootools/morphlist/">MorphList</a>) and its slideshow sibling, <a href="/blog/projects-news/2008/06/barackslideshow-an-elegant-lightweight-slideshow-script/">BarackSlideshow</a>.</p>
<p>TextboxList (<a href="/wp-content/projects/mootools/textboxlist/Demo/">demo</a>) has been rewritten from scratch, and it&#8217;s more solid than ever. The first time around, elegance was not one of the goals. I focused on releasing the <strong>first</strong> open source script that reproduced the Facebook&#8217;s tokenizer.</p>
<p><span id="more-642"></span></p>
<p>Let&#8217;s see the new changes:</p>
<h3>TextboxList</h3>
<ul>
<li>Compatible with MooTools 1.2.x</li>
<li>New options, such as addOnEnter, which adds boxes upon pressing enter (useful for tags or categories widgets).</li>
<li>More events, which gives the developer more power to extend it.</li>
<li>Each element is now identified by an id, a plain value and a HTML value.</li>
<li>Use of control, alt, meta keys no longer interfere with the elements keyboard navigation.</li>
<li>Bugs with text selection fixed.</lI>
<li>Improved API, even more extensible.</li>
<li>Plugins support</li>
</ul>
<h3>Textboxlist.Autocomplete</h3>
<p>This is the most important official plugin. It also has been rewritten, and packs new features:</p>
<ul>
<li>Flexible. It does not depend on a specific data source (XHR, Json). Instead, the developer supplies the data which can come from anywhere.</li>
<li>Binary search for maximum performance</li>
<li>Simpler CSS with comments for non-experienced developers.</li>
</ul>
<p>Without further ado, head to the <a href="/projects/mootools/textboxlist/">project page</a> to check out the demos and downloads.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/04/08/the-new-textboxlist-is-here/feed/</wfw:commentRss>
		<slash:comments>69</slash:comments>
		</item>
		<item>
		<title>Count your feed readers with style</title>
		<link>http://www.devthought.com/2009/03/24/count-your-feed-readers-with-style/</link>
		<comments>http://www.devthought.com/2009/03/24/count-your-feed-readers-with-style/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 03:45:05 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=611</guid>
		<description><![CDATA[I&#8217;ve just released a new WordPress plugin: FeedBurnerCount. It gets the job of retrieving feed readers from the FeedBurner API done efficiently. Lately it seems the API is up and down all the time, many times providing invalid data, and &#8230; <a href="http://www.devthought.com/2009/03/24/count-your-feed-readers-with-style/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just released a new WordPress plugin: <a href="/projects/wordpress/feedburnercount/">FeedBurnerCount</a>. It gets the job of retrieving feed readers from the FeedBurner API done efficiently.</p>
<p>Lately it seems the API is up and down all the time, many times providing invalid data, and recently moved to a new URI. The one plugin that solves this same task hasn&#8217;t been updated in months, and it&#8217;s not ready for an inconsistent API, which results in a <em>N/A</em> count all the time.</p>
<p><strong>FeedBurnerCount</strong> can maintain your feed count even if the Awareness API is not working (or you can specify a custom message for those situations), and calculate the average readers count in a period of time. It also sniffs your feedburner details (if the FeedBurner plugin installed) for an impossibly easier setup.</p>
<p>Head to the the <a href="/projects/wordpress/feedburnercount/">plugin page</a> for more details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/03/24/count-your-feed-readers-with-style/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>The APNG Class</title>
		<link>http://www.devthought.com/2009/03/11/the-apng-class/</link>
		<comments>http://www.devthought.com/2009/03/11/the-apng-class/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 04:26:53 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Client side]]></category>
		<category><![CDATA[apng]]></category>
		<category><![CDATA[mootools plugin]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=464</guid>
		<description><![CDATA[If you&#8217;re looking for an object-oriented, straightforward way to animate those alpha transparent PNGs, look no further. Check out Devthought&#8217;s latest release, APNG 0.1]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re looking for an object-oriented, straightforward way to animate those alpha transparent PNGs, look no further.</p>
<p>Check out Devthought&#8217;s latest release, <a href="/projects/mootools/apng/">APNG 0.1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/03/11/the-apng-class/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>More please.</title>
		<link>http://www.devthought.com/2009/03/09/more-please/</link>
		<comments>http://www.devthought.com/2009/03/09/more-please/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 23:36:48 +0000</pubDate>
		<dc:creator>Guillermo Rauch</dc:creator>
				<category><![CDATA[Client side]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[mootools more]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://devthought.com/?p=429</guid>
		<description><![CDATA[You wanted more, we give you More. Today the new MooTools More RC1 is being released, with an outstanding number of new plugins. More functionality, but with the quality you come to expect from the MooTools framework. Most of the &#8230; <a href="http://www.devthought.com/2009/03/09/more-please/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://devthought.com/wp-content/uploads/2009/03/mootools.png" alt="mootools" title="mootools" width="184" height="46" class="alignnone size-medium wp-image-430" /></p>
<p>You wanted more, we give you More. Today the new MooTools More RC1 <a href="http://mootools.net/blog/2009/03/09/more-to-love/">is being released</a>, with an outstanding number of new plugins. More functionality, but with the quality you come to expect from the MooTools framework.</p>
<p>Most of the new components come from the excellent Aaron&#8217;s <a href="http://clientcide.com">Clientcide</a> library. I contributed to the improvement, refining and testing of some of his vast code, which brings More to its present state.</p>
<p>The goal here is to provide more great, simple and extensible tools to make developers&#8217; lives easier. I suggest you head to the <a href="http://www.mootools.net/docs_rc1/">Docs</a> or <a href="http://www.mootools.net/more_rc1">Builder</a> page right away to start trying out the new stuff. As always, head to Lighthouse to report the bugs you encounter, or even to suggest new additions or features.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devthought.com/2009/03/09/more-please/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

