From c0022a6c5c5cea189a28cd733414e1d5495d50a8 Mon Sep 17 00:00:00 2001 From: Narek Torosyan Date: Tue, 3 Apr 2018 15:49:55 +0400 Subject: [PATCH 1/3] Update README.md --- README.md | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index d5faebd..c10680d 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,26 @@ UniZip ======== -UniZip is zipper for unity3d. +UniZip is a zipper for unity3d. -![unity zip](https://dl.dropboxusercontent.com/u/56297224/Images/unityzip%20rogo.jpg) +![unity zip](https://githubcatw.github.io/unity_zip.jpg) -#supported +## Supported -- iOS. -- Android. -- Mac.and probably windows. +- iOS +- Android +- Mac +- Probably Windows -#iOS how to +## iOS how to -1. build project. -2. add file "PluginsCode>iOS>ZipArchive" to xcode project. +1. Build project. +2. Add file "PluginsCode>iOS>ZipArchive" to xcode project. 3. enjoy. -#example +## Example --unzip +Unzip: ``` string zipfilePath = Application.temporaryCachePath + "/args.zip" @@ -28,7 +29,7 @@ string exportLocation = Application.temporaryCachePath + "/dir" ZipUtil.Unzip ( zipfilePath, exportLocation); ``` --zip +Zip ``` string exportZip = Application.temporaryCachePath + "/dir/args.zip"; @@ -37,6 +38,6 @@ string[] files = new string[]{ Application.temporaryCachePath + "/dir/args.txt"} ZipUtil.Zip (exportZip, files); ``` -#License +## License -This software is released under the MIT License, see LICENSE. \ No newline at end of file +This software is released under the MIT License, see LICENSE. From a09135d037237caea398f41a499cb11c88425f47 Mon Sep 17 00:00:00 2001 From: Narek Torosyan Date: Tue, 3 Apr 2018 15:52:44 +0400 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c10680d..d1b64b6 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ string exportLocation = Application.temporaryCachePath + "/dir" ZipUtil.Unzip ( zipfilePath, exportLocation); ``` -Zip +Zip: ``` string exportZip = Application.temporaryCachePath + "/dir/args.zip"; From e69725140be8134625df8dfa08bf41db2c28c817 Mon Sep 17 00:00:00 2001 From: Narek Torosyan Date: Tue, 5 Jun 2018 00:16:10 +0400 Subject: [PATCH 3/3] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d1b64b6..3868f14 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ UniZip ======== -UniZip is a zipper for unity3d. +UniZip is a zipper for Unity3D. ![unity zip](https://githubcatw.github.io/unity_zip.jpg) @@ -10,13 +10,13 @@ UniZip is a zipper for unity3d. - iOS - Android - Mac -- Probably Windows +- Windows (probably) ## iOS how to 1. Build project. -2. Add file "PluginsCode>iOS>ZipArchive" to xcode project. -3. enjoy. +2. Add "PluginsCode>iOS>ZipArchive" to Xcode project. +3. Enjoy. ## Example