CB-5980 Updated version and RELEASENOTES.md for release 1.0.0
Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/commit/d856bc0f Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/tree/d856bc0f Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/diff/d856bc0f Branch: refs/heads/master Commit: d856bc0f7ecbfb3b9eb6289e9710df78db9be780 Parents: 2f371d0 Author: Steven Gill <[email protected]> Authored: Wed Feb 5 17:53:59 2014 -0800 Committer: Steven Gill <[email protected]> Committed: Mon Feb 10 15:22:19 2014 -0800 ---------------------------------------------------------------------- RELEASENOTES.md | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++ plugin.xml | 2 +- 2 files changed, 76 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/d856bc0f/RELEASENOTES.md ---------------------------------------------------------------------- diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 2fd1c95..a79a4e3 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -49,3 +49,78 @@ * CB-5128: added repo + issue tag to plugin.xml for file plugin * CB-5015 [BlackBerry10] Add missing dependency for File.slice * [CB-5010] Incremented plugin version on dev branch. + +### 1.0.0 (Feb 05, 2014) +* CB-5974: Use safe 'Compatibilty' mode by default +* CB-5915: CB-5916: Reorganize preference code to make defaults possible +* CB-5974: Android: Don't allow File operations to continue when not configured +* CB-5960: ios: android: Properly handle parent references in getFile/getDirectory +* [ubuntu] adopt to recent changes +* Add default FS root to new FS objects +* CB-5899: Make DirectoryReader.readEntries return properly formatted Entry objects +* Add constuctor params to FileUploadResult related to CB-2421 +* Fill out filesystem attribute of entities returned from resolveLocalFileSystemURL +* CB-5916: Create documents directories if they don't exist +* CB-5915: Create documents directories if they don't exist +* CB-5916: Android: Fix unfortunate NPE in config check +* CB-5916: Android: Add "/files/" to persistent files path +* CB-5915: ios: Update config preference (and docs) to match issue +* CB-5916: Android: Add config preference for Android persistent storage location +* iOS: Add config preference for iOS persistent storage location +* iOS: Android: Allow third-party plugin registration +* Android: Expose filePlugin getter so that other plugins can register filesystems +* Fix typos in deprecation message +* Add backwards-compatibility shim for file-transfer +* Android: Allow third-party plugin registration +* CB-5810 [BlackBerry10] resolve local:/// paths (application assets) +* CB-5774: create DirectoryEntry instead of FileEntry +* Initial fix for CB-5747 +* Change default FS URL scheme to "cdvfile" +* Android: Properly format content urls +* Android, iOS: Replace "filesystem" protocol string with constant +* Android: Allow absolute paths on Entry.getFile / Entry.getDirectory +* Android: Make clear that getFile takes a path, not just a filename +* CB-5008: Rename resolveLocalFileSystemURI to resolveLocalFileSystemURL; deprecate original +* Remove old file reference from plugin.xml +* Android: Refactor File API +* CB-4899 [BlackBerry10] Fix resolve directories +* CB-5602 Windows8. Fix File Api mobile spec tests +* Android: Better support for content urls and cross-filesystem copy/move ops +* CB-5699 [BlackBerry10] Update resolveLocalFileSystemURI implementation +* CB-5658 Update license comment formatting of doc/index.md +* CB-5658 Add doc.index.md for File plugin. +* CB-5658 Delete stale snapshot of plugin docs +* CB-5403: Backwards-compatibility with file:// urls where possible +* CB-5407: Fixes for ContentFilesystem +* Android: Add method for testing backwards-compatibility of filetransfer plugin +* iOS: Add method for testing backwards-compatiblity of filetransfer plugin +* Android: Updates to allow FileTransfer to continue to work +* Android: Clean up unclosed file objects +* CB-5407: Cleanup +* CB-5407: Add new Android source files to plugin.xml +* CB-5407: Move read, write and truncate methods into modules +* CB-5407: Move copy/move methods into FS modules +* CB-5407: Move getParent into FS modules +* CB-5407: Move getmetadata methods into FS modules +* CB-5407: Move readdir methods into FS modules +* CB-5407: Move remove methods into FS modules +* CB-5407: Move getFile into FS modules +* CB-5407: Start refactoring android code: Modular filesystems, rfs, rlfsurl +* CB-5407: Update android JS to use FS urls +* CB-5405: Use URL formatting for Entry.toURL +* CB-5532 Fix +* Log file path for File exceptions. +* Partial fix for iOS File compatibility with previous fileTransfer plugin +* CB-5532 WP8. Add binary data support to FileWriter +* CB-5531 WP8. File Api readAsText incorrectly handles position args +* Added ubuntu platform support +* Added amazon-fireos platform support +* CB-5118 [BlackBerry10] Add check for undefined error handler +* CB-5406: Extend public API for dependent plugins +* CB-5403: Bump File plugin major version +* CB-5406: Split iOS file plugin into modules +* CB-5406: Factor out filesystem providers in iOS +* CB-5408: Add handler for filesystem:// urls +* CB-5406: Update iOS native code to use filesystem URLs internally +* CB-5405: Update JS code to use URLs exclusively +* CB-4816 Fix file creation outside sandbox for BB10 http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/d856bc0f/plugin.xml ---------------------------------------------------------------------- diff --git a/plugin.xml b/plugin.xml index 93be870..adeaf44 100644 --- a/plugin.xml +++ b/plugin.xml @@ -3,7 +3,7 @@ <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="org.apache.cordova.file" - version="1.0.0-dev"> + version="1.0.0"> <name>File</name> <description>Cordova File Plugin</description> <license>Apache 2.0</license>
