forked from jonhargett/cordova-plugin-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed default zip algorithm to miniz-cpp (more reliable and faster for many small files). Improved error catching and handling in ZipComponentUWP and ZipProxy.js. Added version number to ZipComponentUWP and pre-build script that updates it.
- Loading branch information
Showing
28 changed files
with
337 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+6 KB
(110%)
src/windows/ZipComponentUWP/Bin/ZipComponentUWP_ARM64_Release/ZipComponentUWP.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
src/windows/ZipComponentUWP/Bin/ZipComponentUWP_ARM64_Release/ZipComponentUWP.winmd
Binary file not shown.
Binary file modified
BIN
+5 KB
(110%)
src/windows/ZipComponentUWP/Bin/ZipComponentUWP_ARM_Release/ZipComponentUWP.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
src/windows/ZipComponentUWP/Bin/ZipComponentUWP_ARM_Release/ZipComponentUWP.winmd
Binary file not shown.
Binary file modified
BIN
+5.5 KB
(110%)
src/windows/ZipComponentUWP/Bin/ZipComponentUWP_x64_Release/ZipComponentUWP.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
src/windows/ZipComponentUWP/Bin/ZipComponentUWP_x64_Release/ZipComponentUWP.winmd
Binary file not shown.
Binary file modified
BIN
+3.5 KB
(100%)
src/windows/ZipComponentUWP/Bin/ZipComponentUWP_x86_Release/ZipComponentUWP.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
src/windows/ZipComponentUWP/Bin/ZipComponentUWP_x86_Release/ZipComponentUWP.winmd
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...otNetComponentUWP/Bin/EmptyDotNetComponentUWP_ARM64_Release/EmptyDotNetComponentUWP.winmd
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...yDotNetComponentUWP/Bin/EmptyDotNetComponentUWP_ARM_Release/EmptyDotNetComponentUWP.winmd
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...tNetComponentUWP/Bin/EmptyDotNetComponentUWP_AnyCPU_Release/EmptyDotNetComponentUWP.winmd
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...yDotNetComponentUWP/Bin/EmptyDotNetComponentUWP_x64_Release/EmptyDotNetComponentUWP.winmd
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...yDotNetComponentUWP/Bin/EmptyDotNetComponentUWP_x86_Release/EmptyDotNetComponentUWP.winmd
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
//{{NO_DEPENDENCIES}} | ||
// Microsoft Visual C++ generated include file. | ||
// Used by C:\CG\Projects\sitewaerts\cordova-plugin-zip\src\windows\ZipComponentUWP\ZipComponentUWP.rc | ||
// | ||
|
||
// Next default values for new objects | ||
// | ||
#ifdef APSTUDIO_INVOKED | ||
#ifndef APSTUDIO_READONLY_SYMBOLS | ||
#define _APS_NEXT_RESOURCE_VALUE 101 | ||
#define _APS_NEXT_COMMAND_VALUE 40001 | ||
#define _APS_NEXT_CONTROL_VALUE 1001 | ||
#define _APS_NEXT_SYMED_VALUE 101 | ||
#endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/windows/ZipComponentUWP/Source/ZipComponent.Version.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// DO NOT EDIT THIS FILE MANUALLY | ||
// | ||
// This file is automatically generated in the pre-build step by the UpdateVersion.bat script | ||
// Change the version number in the ZipComponentUWP.rc file | ||
// | ||
// DO NOT EDIT THIS FILE MANUALLY | ||
// | ||
#include "pch.h" | ||
#include <cvt/wstring> | ||
#include <codecvt> | ||
#include "ZipAlgorithm.h" | ||
#include "ZipComponent.h" | ||
|
||
using namespace ZipComponentUWP; | ||
|
||
String^ ZipComponent::GetVersion() | ||
{ | ||
return "1.0.1.0"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.