<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>BlackBerry Developer Blog &#187; bug fixes</title>
	<atom:link href="http://devblog.blackberry.com/tag/bug-fixes/feed/" rel="self" type="application/rss+xml" />
	<link>http://devblog.blackberry.com</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 13:34:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='devblog.blackberry.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/9ef0a66c09615fa946c4179662398878?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>BlackBerry Developer Blog &#187; bug fixes</title>
		<link>http://devblog.blackberry.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://devblog.blackberry.com/osd.xml" title="BlackBerry Developer Blog" />
	<atom:link rel='hub' href='http://devblog.blackberry.com/?pushpress=hub'/>
		<item>
		<title>BlackBerry 10 WebWorks SDK and Ripple Emulator Refreshed</title>
		<link>http://devblog.blackberry.com/2012/06/blackberry-10-webworks-sdk-ripple-update/</link>
		<comments>http://devblog.blackberry.com/2012/06/blackberry-10-webworks-sdk-ripple-update/#comments</comments>
		<pubDate>Wed, 06 Jun 2012 14:21:25 +0000</pubDate>
		<dc:creator>Ken W</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[BlackBerry 10]]></category>
		<category><![CDATA[BlackBerry 10 WebWorks SDK]]></category>
		<category><![CDATA[blackberry webworks]]></category>
		<category><![CDATA[bug fixes]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[ripple]]></category>
		<category><![CDATA[Ripple Emulator]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=9699</guid>
		<description><![CDATA[We've just released an update to the BlackBerry 10 WebWorks SDK and Ripple Emulator, available through our GitHub account.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=9699&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://rimdevblog.files.wordpress.com/2012/06/ripple.jpg"><img class="aligncenter size-full wp-image-9722" title="ripple" src="http://rimdevblog.files.wordpress.com/2012/06/ripple.jpg?w=550&#038;h=206" alt="TITLE_IMAGE" width="550" height="206" /></a></p>
<p>When we released our first Betas of the <a href="http://devblog.blackberry.com/2012/05/blackberry-10-webworks-sdk/" target="_new">BlackBerry® 10 WebWorks™ SDK</a> and <a href="http://devblog.blackberry.com/2012/05/ripple-blackberry-10/" target="_new">Ripple Emulator</a> at the <a href="http://www.blackberryjamconference.com" target="_new">BlackBerry 10 Jam</a> conference in May, we spoke about our desire to bring frequent updates of these tools to you, our dedicated developer community. We want to keep fueling your creativity and desire to build the best BlackBerry 10 applications leading up to the official release. So, <a href="http://developer.blackberry.com/html5/download" target="_new">here is your next BlackBerry WebWorks and Ripple fix</a>.</p>
<p>This update brings a few new APIs (and emulation thereof in Ripple) along with a host of fixes and a slight change to how we handle whitelisting of events.</p>
<p>First up is the addition of the blackberry.ui.dialog APIs that will be very familiar to existing BlackBerry WebWorks developers. This API provides two methods that allow you to launch asynchronous dialogs requesting feedback from the user. These dialogs leverage the standard system level dialogs so you can get a consistent look and feel for your application with the rest of the system. standardAskAsync provides a predefined set of buttons for your dialog, whereas customAskAsync allows you to customize the dialog buttons.</p>
<p><span id="more-9699"></span></p>
<p>We have also added an API that, in conjunction with the standard HTML5 onLine API, will let you know just how connected you really are. The standard <em>navigator.onLine</em> property and <em>online/offline</em> events are supported to let you know if your application has connectivity in general. If you would like to know what type of connection you have and when the type of connection changes, check out our <em>blackberry.connection.type</em> property, and listen for the <em>connectionchange</em> event. This will tell you if you are on VPN, BlackBerry® Bridge™, WiFi®, etc.</p>
<p>Speaking of events, we have adjusted how these work slightly from the first release. In the initial beta, all events were defined in the blackberry.event namespace. Without getting into gory details, this proved to be somewhat inefficient on the final code size, so we have moved the event definitions into the namespace that contains the functionality related to that event – i.e. the battery events are now defined in the blackberry.system namespace. Note that you no longer need to whitelist blackberry.event, since it only has the add and remove listener functions (these will always be available to call), but you will have to whitelist any namespace that has an event you are specifically interested in. Please check out the <a href="http://developer.blackberry.com/html5/apis" target="_new">API reference</a>.</p>
<p>In terms of bug fixes, there are a couple of key ones that I want to call out. If you use a module loader, you can now also use BlackBerry WebWorks, hooray! In the first release, the last one included into your app would work but break the first. Now webworks.js and module loaders play nicely together.</p>
<p>In the first release, you also could not sign your application at the same time as enabling remote web inspector. You can now do this so you can test your application on secure devices without needing to worry about debug tokens. That said, be sure to turn off web inspector before you submit your application to the BlackBerry App World™ storefront. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>The team here at Research In Motion® (RIM®) is hard at work on the next Beta refresh, currently slated to land in early July. If you are really eager/curious/have lots of free time, feel free to check out our progress in <a href="https://github.com/blackberry" target="_new">GitHub</a>, and let us know whether we are heading in the right direction on new features and APIs.</p>
<p>For BlackBerry WebWorks SDK work, check out:</p>
<p><a href="https://github.com/blackberry/BB10-Webworks-Packager" target="_new">https://github.com/blackberry/BB10-Webworks-Packager</a></p>
<p><a href="https://github.com/blackberry-webworks/BB10-Webworks-API" target="_new">https://github.com/blackberry-webworks/BB10-Webworks-API</a></p>
<p>Ripple? Check out:</p>
<p><a href="https://github.com/blackberry/Ripple-UI" target="_new">https://github.com/blackberry/Ripple-UI</a></p>
<p>Looking forward to a great summer of BlackBerry 10 and BlackBerry WebWorks coding!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/9699/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/9699/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=9699&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2012/06/blackberry-10-webworks-sdk-ripple-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/3b422c1a037b89d4ddf5bef834dbdeef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kjwallis</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/06/ripple.jpg" medium="image">
			<media:title type="html">ripple</media:title>
		</media:content>
	</item>
	</channel>
</rss>
