115 Commits

Author SHA1 Message Date
Viktor Szakats
9dea6f2495 Secure URLs 2018-10-17 22:39:01 +00:00
Nathan Moinvaziri
ff6f2a1db6 Version 2.6.0. 2018-10-08 23:48:58 -07:00
Nathan Moinvaziri
5e6bac5bcc Updated comments. 2018-10-08 23:47:02 -07:00
Nathan Moinvaziri
904c408575 Fixed compiler warnings. 2018-10-08 23:31:21 -07:00
Nathan Moinvaziri
c7e852e33c Merge branch 'master' into dev 2018-10-08 22:03:19 -07:00
Nathan Moinvaziri
2bb21d769c Fixed bugs reading posix file attributes. 2018-10-08 21:47:15 -07:00
Damien Riquet
9098b6c823 Avoid double free on comment 2018-10-08 14:27:06 +02:00
Nathan Moinvaziri
ca8059ef61 Version 2.5.4. 2018-09-30 10:44:16 -07:00
Nathan Moinvaziri
825bfb8fbf Version 2.5.3. 2018-09-18 20:34:01 -07:00
Nathan Moinvaziri
980b3ab699 Fixed formatting. 2018-09-17 07:46:25 -07:00
Viktor Szakats
ab8507608e fix remaining strncpy() calls
to always terminate the target buffer with a zero byte.
2018-09-06 22:15:29 +00:00
Viktor Szakats
e7215072a0 enable warnings for gcc/clang, misc minor fixes
* enable -W -Wall for gcc and clang
* fix strncpy() calls that may potentially leave the target buffer without
  a terminating zero byte (in mz_zip_rw.c)
* fix warnings
* remove const from mz_path_remove_filename() parameter,
  the function is writing the passed buffer
* fix pedantic warnings (in mz_strm_buf.c):
  warning: suggest braces around empty body in an ‘if’ statement [-Wempty-body]
* fix spaces at EOL
* fix a redefinition warning for HAVE_ARC4RANDOM_BUF on macOS
2018-09-04 22:58:02 +00:00
Nathan Moinvaziri
85d36c5e83 Clean up includes. #306 2018-08-31 16:43:41 -07:00
Nathan Moinvaziri
5d9f95fca1 Fixed code analysis warnings. 2018-08-30 16:22:25 -07:00
Nathan Moinvaziri
351b14e512 Version 2.5.2. 2018-08-27 19:06:59 -07:00
Nathan Moinvaziri
638f31ff41 Move CP437 encoding handling higher up the stack. 2018-08-27 08:17:16 -07:00
Nathan Moinvaziri
a0d1877d0e Added support for converting CP437 to UTF8 via MZ_ENCODING_CODEPAGE437.
Rename MZ_USE_FILE32API as MZ_FILE32_API and MZ_USE_WIN32_API as MZ_WIN32_API.
2018-08-26 23:23:02 -07:00
Nathan Moinvaziri
d79fb39d4b Removed unused variable. 2018-08-25 10:07:27 -07:00
Nathan Moinvaziri
a2e89bf85e Fixed potential unused variable warning. 2018-08-24 15:01:38 -07:00
Nathan Moinvaziri
d2aa2277d9 Removed debug code.
Fixed compiler warnings.
2018-08-20 18:23:50 -07:00
Nathan Moinvaziri
da4b58f6e5 Added missing comments. 2018-08-20 18:21:26 -07:00
Nathan Moinvaziri
b994caeab9 Added function to get stream pointer used for mz_zip_open. 2018-08-20 16:01:08 -07:00
Nathan Moinvaziri
4b8e4b372c Set the file attributes for the correct system for extracted files.
Added reading of time from info-zip unix extra field v1.
2018-08-20 09:06:23 -07:00
Nathan Moinvaziri
2b3cd16b6f Version 2.5.1. 2018-08-18 08:14:27 -07:00
Nathan Moinvaziri
79cfab094d Updated readme and copyright statements due to quantity of changes. 2018-08-17 12:21:06 -07:00
Nathan Moinvaziri
590e5909b3 Removed duplicate extern keyword. 2018-08-17 11:10:35 -07:00
Nathan Moinvaziri
c98dec4291 Version 2.5.0. 2018-08-15 07:37:30 -07:00
Nathan Moinvaziri
ca014e6f37 Fixed wrong check for writing to stream. #295 2018-08-15 07:31:12 -07:00
Nathan Moinvaziri
f5cc4c0355 Fixed potential invalid filename/comment buffer. #295 2018-08-14 17:46:36 -07:00
Nathan Moinvaziri
829ffb5cce Fixed check for directory if path ends with slash.
Fixed return error if compression method is not supported.
2018-08-14 14:00:16 -07:00
Nathan Moinvaziri
9a170d4d60 Added zip reader/writer class to encapsulate a lot of functionality.
Added create/delete functions for zip class.
Simplify locating an entry by filename.
Added more advanced functions for locating an entry based on callback decision.
Change default mem grow size to 64kb since we have unzOpen_MZ and zipOpen_MZ. #283
2018-08-13 23:07:42 -07:00
Nathan Moinvaziri
77687f3a42 Added default comparison function for locating entry that ignores path slashes.
Check current entry when locating entry before starting from first entry.
Added function to determine if entry has been opened.
Return error if can't find eocd otherwise any file will be considered open successfully.
2018-08-09 16:29:26 -07:00
Nathan Moinvaziri
a64c919e0b Code cleanup. 2018-08-08 17:47:12 -07:00
Nathan Moinvaziri
9eb113dee7 Fixed closing entry with raw mode. #293 2018-08-08 17:38:38 -07:00
Nathan Moinvaziri
d08e1561d9 Change order of parameters for consistency. #294 2018-08-08 09:43:14 -07:00
Nathan Moinvaziri
26308b244e Use uint8_t for raw parameter. #294 2018-08-08 09:40:15 -07:00
Nathan Moinvaziri
0e4fe82acb Fixes to reading raw encrypted entries. #294 2018-08-08 09:38:39 -07:00
Nathan Moinvaziri
fa146ad6bd Clean up reading and writing of raw entries. #294
Fixed ambiguity between store and raw.
Added raw parameter to entry write open function.
2018-08-07 23:50:31 -07:00
Nathan Moinvaziri
0f8d91101b Version 2.4.0. 2018-08-05 10:33:42 -07:00
Nathan Moinvaziri
298126af7f Don't write duplicate ntfs, zip64, and aes extra fields. 2018-07-31 10:19:48 -07:00
Nathan Moinvaziri
a8f4a09de6 Version 2.3.9. 2018-07-26 17:56:05 -07:00
Nathan Moinvaziri
e824da8453 Updated comments about eocd functions. #288 2018-07-26 17:53:15 -07:00
Nathan Moinvaziri
51bf61d04e Second try at fixing reading global comment. #288 2018-07-26 16:41:54 -07:00
Nathan Moinvaziri
546607c8e4 Fix reading global comment. #288 2018-07-26 13:40:58 -07:00
Nathan Moinvaziri
4042763729 Don't include libbsd if we don't have to. #283 2018-07-22 11:12:40 -07:00
Nathan Moinvaziri
a6d1f6692e Changed name of compression inclusion #defines. 2018-07-22 10:35:49 -07:00
Nathan Moinvaziri
16d9f47a4f Improve logic around raw entry close. #277 2018-07-21 14:37:56 -07:00
Nathan Moinvaziri
6ac2ff4ec2 Fixed issues with closing entry when raw. #277 2018-07-21 14:29:29 -07:00
Nathan Moinvaziri
e099a2a8f7 Fixed writing of encrypted raw entries. #284 2018-07-20 07:54:54 -07:00
Nathan Moinvaziri
446d062b3c Fixed open mode for zip compatibility. 2018-07-16 19:17:46 -07:00