Skip to content

Commit

Permalink
Incremeting version to 2.3.0rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
infil00p committed Dec 10, 2012
1 parent 01f062d commit 6efeb14
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0rc1
2.3.0rc2
2 changes: 1 addition & 1 deletion bin/templates/project/assets/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h1>Apache Cordova</h1>
<p class="event received">Device is Ready</p>
</div>
</div>
<script type="text/javascript" src="cordova-2.3.0rc1.js"></script>
<script type="text/javascript" src="cordova-2.3.0rc2.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
Expand Down
20 changes: 10 additions & 10 deletions framework/assets/js/cordova.android.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// commit 832eb92dbc908e9544bed202878906fba49667c7
// commit 4301bc92e237b59d5515bd7758ab289e454168cb

// File generated at :: Fri Nov 30 2012 05:23:45 GMT-0800 (PST)
// File generated at :: Mon Dec 10 2012 14:13:09 GMT-0800 (PST)

/*
Licensed to the Apache Software Foundation (ASF) under one
Expand Down Expand Up @@ -3322,7 +3322,7 @@ module.exports = GlobalizationError;
define("cordova/plugin/InAppBrowser", function(require, exports, module) {

var exec = require('cordova/exec');

function InAppBrowser()
{
var _channel = require('cordova/channel');
Expand All @@ -3339,7 +3339,7 @@ InAppBrowser.prototype._eventHandler = function(event)
this.channels[event.type].fire(event);
}
}

InAppBrowser.open = function(strUrl, strWindowName, strWindowFeatures)
{
var iab = new InAppBrowser();
Expand All @@ -3357,16 +3357,16 @@ InAppBrowser.prototype.close = function(eventname, f)

InAppBrowser.prototype.addEventListener = function(eventname, f)
{
if (eventname in this.channels) {
this.channels[eventname].subscribe(f);
}
if (eventname in this.channels) {
this.channels[eventname].subscribe(f);
}
}

InAppBrowser.prototype.removeEventListener = function(eventname, f)
{
if (eventname in this.channels) {
this.channels[eventname].unsubscribe(f);
}
if (eventname in this.channels) {
this.channels[eventname].unsubscribe(f);
}
}

module.exports = InAppBrowser.open;
Expand Down
2 changes: 1 addition & 1 deletion framework/assets/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<html>
<head>
<title></title>
<script src="cordova-2.3.0rc1.js"></script>
<script src="cordova-2.3.0rc2.js"></script>
</head>
<body>

Expand Down
2 changes: 1 addition & 1 deletion framework/src/org/apache/cordova/Device.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Licensed to the Apache Software Foundation (ASF) under one
public class Device extends CordovaPlugin {
public static final String TAG = "Device";

public static String cordovaVersion = "2.3.0rc1"; // Cordova version
public static String cordovaVersion = "2.3.0rc2"; // Cordova version
public static String platform = "Android"; // Device OS
public static String uuid; // Device UUID

Expand Down

0 comments on commit 6efeb14

Please sign in to comment.