You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by he...@apache.org on 2012/06/27 20:33:51 UTC

[18/20] ios commit: Update VERSION to 1.9.0rc1

Update VERSION to 1.9.0rc1


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/8cf9a5ab
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/8cf9a5ab
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/8cf9a5ab

Branch: refs/heads/master
Commit: 8cf9a5ab176a4676a777c660570583b9682d3c99
Parents: 626c233
Author: Shazron Abdullah <sh...@apache.org>
Authored: Wed Jun 20 17:22:45 2012 -0700
Committer: hermwong <he...@gmail.com>
Committed: Wed Jun 27 11:32:08 2012 -0700

----------------------------------------------------------------------
 CordovaInstaller/docs/releasenotes.md |   17 +++++++++++++++++
 CordovaLib/Classes/CDVAvailability.h  |    3 ++-
 CordovaLib/VERSION                    |    2 +-
 3 files changed, 20 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/8cf9a5ab/CordovaInstaller/docs/releasenotes.md
----------------------------------------------------------------------
diff --git a/CordovaInstaller/docs/releasenotes.md b/CordovaInstaller/docs/releasenotes.md
index 1dbf3d0..0eebaf2 100644
--- a/CordovaInstaller/docs/releasenotes.md
+++ b/CordovaInstaller/docs/releasenotes.md
@@ -22,12 +22,29 @@
   
 Cordova is a static library and static framework that enables developers to include the Cordova API in their iOS application projects easily, and also create new Cordova-based iOS application projects through an Xcode project template.
 
+
+### 1.9.0rc1 (20120621) ###
+
+* Fixes CB-915 - Pause/resume events get fired twice
+* Fixes CB-877 - Opening a .doc file under iOS causes the file system API to break (and any other plugins that may use NSMutableArray pop)
+* Fixes CB-864 - Failure in writing a large file blocks Cordova
+* Fixes CB-907 - Wrong URL encoding when downloading/uploading files from/to URLs with Unicode characters in the path
+* Fixes CB-906 - Hardware mute button doesn't effect Media API playback
+* Fixes CB-879 - Support to set the volume when playing short sounds
+* Enhanced CB-471 - LocalFileSystem.PERSISTENT "do not back up" file attribute iOS. Supports new iOS 5.1 iCloud Backup attribute (the old way is deprecated, and only for iOS 5.0.1)
+* Fixed CB-748 - refactored-UUID is broken and changes over time (changed according to Apple's guidelines for this)
+* Fixes CB-647 - Prefix/Namespace common native libraries
+
+<br />
+
 ### 1.8.1 (20120612) ###
 
 * Fixes CB-885 - Crash when sliding the notification tray and/or tel link confirm dialog
 * Fixed CB-506 - images taken via Camera.getPicture do not get deleted
 * Implemented CB-857 - Add deprecation notice if user is running iOS lesser than 4.2
 
+<br />
+
 ### 1.8.0 (20120605) ###
 
 * Fixes CB-819 fail callback not invoked

http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/8cf9a5ab/CordovaLib/Classes/CDVAvailability.h
----------------------------------------------------------------------
diff --git a/CordovaLib/Classes/CDVAvailability.h b/CordovaLib/Classes/CDVAvailability.h
index bf695e4..92845b4 100644
--- a/CordovaLib/Classes/CDVAvailability.h
+++ b/CordovaLib/Classes/CDVAvailability.h
@@ -30,6 +30,7 @@
 #define __CORDOVA_1_7_0  10700
 #define __CORDOVA_1_8_0  10800
 #define __CORDOVA_1_8_1  10801
+#define __CORDOVA_1_9_0  10900
 #define __CORDOVA_NA     99999  /* not available */
 
 
@@ -41,7 +42,7 @@
  #endif
  */
 #ifndef CORDOVA_VERSION_MIN_REQUIRED
-    #define CORDOVA_VERSION_MIN_REQUIRED __CORDOVA_1_8_1
+    #define CORDOVA_VERSION_MIN_REQUIRED __CORDOVA_1_9_0
 #endif
 
 /* 

http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/8cf9a5ab/CordovaLib/VERSION
----------------------------------------------------------------------
diff --git a/CordovaLib/VERSION b/CordovaLib/VERSION
index b9268da..f97077e 100644
--- a/CordovaLib/VERSION
+++ b/CordovaLib/VERSION
@@ -1 +1 @@
-1.8.1
\ No newline at end of file
+1.9.0rc1
\ No newline at end of file