Return-Path: X-Original-To: apmail-cordova-dev-archive@www.apache.org Delivered-To: apmail-cordova-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DC30711F15 for ; Fri, 20 Jun 2014 18:20:47 +0000 (UTC) Received: (qmail 26415 invoked by uid 500); 20 Jun 2014 18:20:47 -0000 Delivered-To: apmail-cordova-dev-archive@cordova.apache.org Received: (qmail 26382 invoked by uid 500); 20 Jun 2014 18:20:47 -0000 Mailing-List: contact dev-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list dev@cordova.apache.org Received: (qmail 25922 invoked by uid 99); 20 Jun 2014 18:20:47 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Jun 2014 18:20:47 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E4743987B65; Fri, 20 Jun 2014 18:20:46 +0000 (UTC) From: fberton To: dev@cordova.apache.org Reply-To: dev@cordova.apache.org Message-ID: Subject: [GitHub] cordova-plugin-file pull request: CB-6994 - Windows 8 does not sav... Content-Type: text/plain Date: Fri, 20 Jun 2014 18:20:46 +0000 (UTC) GitHub user fberton opened a pull request: https://github.com/apache/cordova-plugin-file/pull/54 CB-6994 - Windows 8 does not save big file transferred using Blob When trying to save Blob using FileWriter.write method, if the blob's size is too high, we get a stack overflow exception during the conversion of the blob into an basic array. In order to avoid this exception, we pass the Blob or File directly in FileProxy (avoid the conversion to ArrayBuffer) and we use a specific method in FileProxy to save the Blob directly to the filesystem by using Streams (safe). More info at : https://issues.apache.org/jira/browse/CB-6994 You can merge this pull request into a Git repository by running: $ git pull https://github.com/Touchit/cordova-plugin-file CB-6994 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/cordova-plugin-file/pull/54.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #54 ---- commit 823d2ff100757b21411e990633d084482bbca52e Author: Florian BERTON Date: 2014-06-20T17:22:16Z Fix function write for big files on windows 8 ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---