<?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>Xavisys&#187; Upcoming WordPress Release</title>
	<atom:link href="http://xavisys.com/tag/upcoming-wordpress-release/feed/" rel="self" type="application/rss+xml" />
	<link>http://xavisys.com</link>
	<description>WordPress Plugins and Custom WordPress Development</description>
	<lastBuildDate>Wed, 16 Nov 2011 20:45:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<atom:link rel='hub' href='http://xavisys.com/?pushpress=hub'/>
		<item>
		<title>Looking forward to WordPress 2.9</title>
		<link>http://xavisys.com/wordpress-29/</link>
		<comments>http://xavisys.com/wordpress-29/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 21:11:56 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[Upcoming WordPress Release]]></category>
		<category><![CDATA[WordPress 2.9]]></category>

		<guid isPermaLink="false">http://xavisys.com/?p=485</guid>
		<description><![CDATA[The release of WordPress 2.9 is still a little way off. However, there&#8217;s already enough to get excited about. I&#8217;ve seen some of the media stuff, which allows you to crop and rotate images when you upload them, and it&#8217;s brilliant. It&#8217;s still a little rough around the edges, but it&#8217;s not finished yet so [...]]]></description>
			<content:encoded><![CDATA[<p>The release of WordPress 2.9 is still a little way off.  However, there&#8217;s already enough to get excited about.  I&#8217;ve seen some of the media stuff, which allows you to crop and rotate images when you upload them, and it&#8217;s brilliant.  It&#8217;s still a little rough around the edges, but it&#8217;s not finished yet so that&#8217;s to be expected.  They&#8217;ve also updated TinyMCE to the latest version.  Since the visual editor continues to be the bane of my existence, I&#8217;m always happy to see improvements to it.  However, I&#8217;m a plugin author and programmer, so these front end changes aren&#8217;t what I&#8217;m most excited about.</p>
<p>They have changed how contact methods in a user&#8217;s profile are handled.  Now, thanks to <a href="http://yoast.com">Joost</a> they are completely filterable.  You can add and remove contact fields as you please, making your user info exactly what you want it to be.  For example, if you don&#8217;t use Yahoo Messenger but you do use Twitter, you can simply do this:</p>
<pre class="brush: php; title: ; notranslate">
function twitterNotYim( $contactmethods ) {
	// Add Twitter
	$contactmethods['twitter'] = 'Twitter';

	// Remove Yahoo IM
	unset($contactmethods['yim']);

	return $contactmethods;
}

add_filter('user_contactmethods','twitterNotYim');
</pre>
<p>They&#8217;ve also added PUT support to the WP_Http class.  Ever since the class was added in 2.7, I&#8217;ve been enjoying the ease and reliability it offers for making HTTP requests.  It&#8217;s finally fleshing out to be a full featured API, and I use it in everything from <a href="http://xavisys.com/2008/04/wordpress-twitter-widget/">Twitter Widget Pro</a> to my <a href="http://xavisys.com/2009/09/wordpress-paypal-framework/">PayPal Framework</a>.</p>
<p>Lastly, and the most exciting thing in my opinion, is the new JSON class.  JSON, short for JavaScript Object Notation, is a lightweight computer data interchange format. It is a text-based, human-readable format for representing simple data structures and associative arrays (called objects).  It has quickly become a standard for both AJAX calls as well as transferring data between sites.  Popular sites like Twitter, Flickr, and del.icio.us all offer JSON versions of their APIs which allow for faster applications due to the reduced transfer.  <a href="http://xavisys.com/2008/04/wordpress-twitter-widget/">Twitter Widget Pro</a> now uses this class (I packaged it with the plugin for those not using 2.9 yet).<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://xavisys.com/news-wordpress-29/' title='News About WordPress 2.9'>News About WordPress 2.9</a></li>
<li><a href='http://xavisys.com/wordpress-2-8-release-date/' title='WordPress 2.8 Release Date'>WordPress 2.8 Release Date</a></li>
<li><a href='http://xavisys.com/drag-drop-widgets-wordpress-2-8/' title='WordPress 2.8 Brings Back Drag and Drop Widget Management'>WordPress 2.8 Brings Back Drag and Drop Widget Management</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://xavisys.com/wordpress-29/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>News About WordPress 2.9</title>
		<link>http://xavisys.com/news-wordpress-29/</link>
		<comments>http://xavisys.com/news-wordpress-29/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 15:16:28 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[Upcoming WordPress Release]]></category>
		<category><![CDATA[WordPress 2.9]]></category>
		<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[WordPress Performance]]></category>

		<guid isPermaLink="false">http://wpinformer.com/?p=81</guid>
		<description><![CDATA[There was a meeting in IRC for WordPress developers yesterday. A release date for WordPress 2.8 was chosen, and they made some great decisions regarding WordPress 2.9 as well. Here&#8217;s a quick summary of the things I found important. For WordPress 2.9, they&#8217;ve decided to raise the version of MySQL supported from 4.0 to 4.1.2! [...]]]></description>
			<content:encoded><![CDATA[<p>There was a <a href="http://wordpress.org/development/2009/06/summary-of-wordpress-dev-irc-meetup-for-20090603/">meeting in IRC for WordPress developers</a> yesterday.  A <a href="http://wpinformer.com/wordpress-2-8-release-date/">release date for WordPress 2.8</a> was chosen, and they made some great decisions regarding WordPress 2.9 as well.  Here&#8217;s a quick summary of the things I found important.</p>
<p>For WordPress 2.9, they&#8217;ve decided to raise the version of MySQL supported from 4.0 to 4.1.2!  That may not seem like much to those of us out there using the latest versions of everything, since version 5.1 is out, 5.4 is in beta, and even 6.0 is under development (and because 4.1.2 was released in May of 2004).  However, the big thing that sticks out to me is that 4.1 support subqueries and unicode.  Unicode should help for people that are using WordPress in non-English languages, and subqueries should help to greatly simplify queries.  Also in 4.1 MySQL added support for the &#8216;INSERT &#8230; ON DUPLICATE KEY UPDATE&#8217; syntax which will insert a new row unless that would cause a duplicate primary or unique key, in which case it updates the existing row.</p>
<p><span id="more-81"></span></p>
<p>I&#8217;m looking forward to the next few versions of WordPress, which I predict will get considerably faster (and the codebase will probably lean out a little too) simply because of the additional MySQL functionality.  Just remember that there&#8217;s a lot to do and not every query will be updated in 2.9 to take advantage of the new versions.  Also, for those that are worried, they plan to add a check to the automatic upgrader to keep people from upgrading to 2.9 if they don&#8217;t have a new enough version of MySQL.</p>
<p>Which brings me to the next big decision.  While WordPress is <strong>not</strong> going to require PHP 5, they <strong>are</strong> going to suggest it.  If someone is still running PHP 4, the WordPress upgrader will suggest that they switch to PHP 5, and will even link to a Codex page describing how to do it for various hosts!  As someone who&#8217;s been a huge proponent of moving the PHP requirements up to PHP 5, this is a big step in the right direction.  According to Matt Mullenweg at WordCamp San Francisco 2009, over 80% of WordPress.org users are already on PHP 5+.  If a notice like this could raise that percentage enough to make it reasonable to require PHP 5+, the codebase will see some huge improvements.</p>
<p>Overall, the meeting (which I unfortunately missed) took some great steps toward serious improvements of WordPress both in 2.9 and the versions to follow.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://xavisys.com/wordpress-29/' title='Looking forward to WordPress 2.9'>Looking forward to WordPress 2.9</a></li>
<li><a href='http://xavisys.com/wordpress-2-8-release-date/' title='WordPress 2.8 Release Date'>WordPress 2.8 Release Date</a></li>
<li><a href='http://xavisys.com/wordpress-weekly-podcast/' title='WordPress Weekly Podcast'>WordPress Weekly Podcast</a></li>
<li><a href='http://xavisys.com/improve-performance-of-your-wordpress-theme-in-5-minutes/' title='Improve Performance of Your WordPress Theme in 5 Minutes'>Improve Performance of Your WordPress Theme in 5 Minutes</a></li>
<li><a href='http://xavisys.com/drag-drop-widgets-wordpress-2-8/' title='WordPress 2.8 Brings Back Drag and Drop Widget Management'>WordPress 2.8 Brings Back Drag and Drop Widget Management</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://xavisys.com/news-wordpress-29/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8 Release Date</title>
		<link>http://xavisys.com/wordpress-2-8-release-date/</link>
		<comments>http://xavisys.com/wordpress-2-8-release-date/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 14:23:20 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[Upcoming WordPress Release]]></category>
		<category><![CDATA[WordPress 2.8]]></category>

		<guid isPermaLink="false">http://wpinformer.com/?p=79</guid>
		<description><![CDATA[I&#8217;ll keep this short. There was a meeting in IRC for WordPress developers yesterday. The quick summary is that you can expect the release of 2.8 on June 10th, 2009. However, while that&#8217;s what so many people are asking, that wasn&#8217;t the exciting part! Stay tuned for news about WordPress 2.9. Related Posts: WordPress 2.8 [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll keep this short.  There was a <a href="http://wordpress.org/development/2009/06/summary-of-wordpress-dev-irc-meetup-for-20090603/">meeting in IRC for WordPress developers</a> yesterday.  The quick summary is that you can expect the release of 2.8 on June 10th, 2009.  However, while that&#8217;s what so many people are asking, that wasn&#8217;t the exciting part!  Stay tuned for news about WordPress 2.9.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://xavisys.com/drag-drop-widgets-wordpress-2-8/' title='WordPress 2.8 Brings Back Drag and Drop Widget Management'>WordPress 2.8 Brings Back Drag and Drop Widget Management</a></li>
<li><a href='http://xavisys.com/wordpress-widget/' title='How To Make Your Own WordPress Widget'>How To Make Your Own WordPress Widget</a></li>
<li><a href='http://xavisys.com/wordpress-29/' title='Looking forward to WordPress 2.9'>Looking forward to WordPress 2.9</a></li>
<li><a href='http://xavisys.com/news-wordpress-29/' title='News About WordPress 2.9'>News About WordPress 2.9</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://xavisys.com/wordpress-2-8-release-date/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8 Brings Back Drag and Drop Widget Management</title>
		<link>http://xavisys.com/drag-drop-widgets-wordpress-2-8/</link>
		<comments>http://xavisys.com/drag-drop-widgets-wordpress-2-8/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 03:37:30 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[WordPress Widgets]]></category>
		<category><![CDATA[Upcoming WordPress Release]]></category>
		<category><![CDATA[WordPress 2.8]]></category>

		<guid isPermaLink="false">http://wpinformer.com/?p=3</guid>
		<description><![CDATA[The next version of WordPress is due out soon (probably in early May), and one of the most exciting new things in WordPress 2.8 is the re-worked widgets admin. The vast majority of the complaints I received about the WordPress 2.5 admin redesign, were about the widget admin page. First, you could no longer add [...]]]></description>
			<content:encoded><![CDATA[<p>The next version of WordPress is due out soon (probably in early May), and one of the <a href="http://xavisys.com/2009/04/exciting-wordpress-28/">most exciting new things in WordPress 2.8</a> is the re-worked widgets admin.  The vast majority of the complaints I received about the WordPress 2.5 admin redesign, were about the widget admin page.  First, you could no longer add widgets using drag and drop.  Instead they added the ever annoying &#8220;add&#8221; link, which would instantly add the widget to the bottom of the current sidebar.  The other thing was that if you had a widget configured just how you wanted, and you needed to remove it for even a couple minutes, you would lose all the settings and have to re-do them all.  Unfortunately, this seemingly backwards progress held on through versions 2.6 and 2.7 of WordPress as well.  However, this page has undergone a complete redesign for 2.8.  The real question is, does it make up for lost time?  In order to try to answer this, I set up WordPress 2.8 on a development version of <a href="http://xavisys.com">Xavisys.com</a>.</p>
<p><span id="more-721"></span></p>
<div id="attachment_5" class="wp-caption alignright" style="width: 310px"><a class="thickbox" title="A widget being added via the new drag &amp; drop in WordPress 2.8" href="http://xavisys.com/wp-content/uploads/2009/04/28-add-widget.png"><img class="size-medium wp-image-5" title="WordPress Widget added via Drag &amp; Drop" src="http://wpinformer.com/wp-content/uploads/2009/04/28-add-widget-300x161.png" alt="A widget being added via the new drag &amp; drop in WordPress 2.8" width="300" height="161" /></a><p class="wp-caption-text">A widget being added via the new drag &amp; drop in WordPress 2.8</p></div>
<p>First, the ability to add widgets to a sidebar by simply dragging them to where you want is back!  While I really am excited to see it, I&#8217;ll be the first to say that this should really have never left.  As web-based applications become more and more common, people expect to see the same kind of functionality on the web that they find on their local system.  I know that my mom would never be able to move things around on her computer if she were expected to open the proper window to the right, then click a link to move a file.  She has grown so accustom to drag and drop (and rightfully so, it&#8217;s everywhere) that it&#8217;s what she has come to expect.  If WordPress is really going to be the blogging platform for your average Joe, they can&#8217;t take steps backward like that.  Thankfully it&#8217;s back now.</p>
<p>Additionally, like the rest of the admin section in WordPress 2.7+, the widgets page has been modified to take advantage of nearly any screen size.  As you can see, in a browser that&#8217;s 1024 pixels wide, there is one column of available widgets and another column for active widgets.</p>
<div id="attachment_7" class="wp-caption alignnone" style="width: 677px"><a class="thickbox" title="WordPress Widgets Admin Page on a 1024px Wide Browser" href="http://xavisys.com/wp-content/uploads/2009/04/28-widgets-1024.png"><img class="size-large wp-image-7" title="WordPress Widgets Admin Page" src="http://wpinformer.com/wp-content/uploads/2009/04/28-widgets-1024-667x1024.png" alt="WordPress Widgets Admin Page on a 1024px Wide Browser" width="667" height="1024" /></a><p class="wp-caption-text">WordPress Widgets Admin Page on a 1024px Wide Browser</p></div>
<p>However, on my screen, which is 1920 pixels wide, I get four columns of available widgets along with the column of active widgets.  As a person that uses a high-resolution widescreen monitor almost everywhere, I really appreciate this new layout.  I know it won&#8217;t benefit everyone, but as you can see it degrades nicely and should work well for pretty much everyone.</p>
<div id="attachment_8" class="wp-caption alignnone" style="width: 710px"><a class="thickbox" title="WordPress Widgets Admin Page on a 1920px Wide Browser" href="http://xavisys.com/wp-content/uploads/2009/04/28-widgets-1920.png"><img class="size-large wp-image-8" title="WordPress Widgets Admin Page" src="http://wpinformer.com/wp-content/uploads/2009/04/28-widgets-1920-1024x521.png" alt="WordPress Widgets Admin Page on a 1920px Wide Browser" width="700" height="356" /></a><p class="wp-caption-text">WordPress Widgets Admin Page on a 1920px Wide Browser</p></div>
<p>If you look at the screenshots above, you&#8217;ll notice a couple of other new features as well.  First, you will see the inactive widgets box.</p>
<div id="attachment_6" class="wp-caption alignleft" style="width: 310px"><a class="thickbox" title="WordPress 2.8 Inactive Widgets" href="http://xavisys.com/wp-content/uploads/2009/04/28-inactive-widgets.png"><img class="size-medium wp-image-6" title="WordPress 2.8 Inactive Widgets" src="http://wpinformer.com/wp-content/uploads/2009/04/28-inactive-widgets-300x201.png" alt="WordPress 2.8 Inactive Widgets" width="300" height="201" /></a><p class="wp-caption-text">WordPress 2.8 Inactive Widgets</p></div>
<p>You can drop fully configured widgets here to store them, rather than lose them altogether, when you remove them from a sidebar.  As you can see, the <a href="http://xavisys.com/2008/04/wordpress-twitter-widget/">WordPress Twitter Widget Pro</a> widget is fully configured and ready to be dropped back into any one of the widget-ready spots on the theme.  This will be really handy for people who change their widgets on a regular basis.  However, one of the reasons people wanted this so bad, to move widgets between sidebars, is no longer needed.  Instead, you can now simply drag from one sidebar to the next.  If the sidebar is currently empty, it will be closed by default.  Simply click the name of the sidebar to open it first.  You will see it expand vertically, giving you a place to drop a widget.</p>
<div id="attachment_4" class="wp-caption alignright" style="width: 310px"><a class="thickbox" title="WordPress 2.8 Widget Settings" href="http://xavisys.com/wp-content/uploads/2009/04/28-widget-settings.png"><img src="http://wpinformer.com/wp-content/uploads/2009/04/28-widget-settings-300x208.png" alt="WordPress 2.8 Widget Settings" title="WordPress 2.8 Widget Settings" width="300" height="208" class="size-medium wp-image-4" /></a><p class="wp-caption-text">WordPress 2.8 Widget Settings</p></div>
<p>The widget settings still work in much the same way as they have for the last few versions.  Each WordPress, when the mouse hovers over it, shows a little arrow on the right side.  If you click the arrow the widget expands to show all the settings.  As you can see, the settings for the <a href="http://xavisys.com/2008/04/wordpress-twitter-widget/">WordPress Twitter Widget Pro</a> widget are exactly what you expect, looking just like they have for a while.  The settings will show if you click the arrow on any active or inactive widget.  Each of the available widgets has the same arrow, but expands to show a description of the widget rather than settings.  This actually makes for an extremely intuitive user interface, which is quite refreshing after what we&#8217;ve been working with for the last few versions.</p>
<p>So, does the new widgets admin page make up for lost time?  I think it does!  I was really afraid that the new updates would do nothing but restore what was lost in WordPress 2.5.  Instead, the new features in 2.8 give us that and more.  The refined user experience of the widgets admin page will go a long way toward truly making WordPress the blogging platform for everyone.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://xavisys.com/wordpress-2-8-release-date/' title='WordPress 2.8 Release Date'>WordPress 2.8 Release Date</a></li>
<li><a href='http://xavisys.com/wordpress-widget/' title='How To Make Your Own WordPress Widget'>How To Make Your Own WordPress Widget</a></li>
<li><a href='http://xavisys.com/wordpress-29/' title='Looking forward to WordPress 2.9'>Looking forward to WordPress 2.9</a></li>
<li><a href='http://xavisys.com/news-wordpress-29/' title='News About WordPress 2.9'>News About WordPress 2.9</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://xavisys.com/drag-drop-widgets-wordpress-2-8/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

