Overview
| Comment: | Add OFZooArchive
Only support for reading so far. Compression methods 0 (uncompressed) and 2 (LZ77 + Huffman, apparently |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9a95da71d52f7396534a701e7c07b09d |
| User & Date: | js on 2024-02-28 00:24:42 |
| Other Links: | manifest | tags |
Context
|
2024-02-28
| ||
| 00:41 | Fix missing import (check-in: 4f9e27d416 user: js tags: trunk) | |
| 00:24 | Add OFZooArchive (check-in: 9a95da71d5 user: js tags: trunk) | |
|
2024-02-27
| ||
| 21:06 | Add missing imports when using --disable-sockets (check-in: 2d14df1979 user: js tags: trunk) | |
Changes
Modified src/Makefile from [914eea7d94] to [fc3f492094].
| ︙ | |||
104 105 106 107 108 109 110 111 112 113 114 115 116 117 | 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | + + |
OFXMLElement.m \
OFXMLElementBuilder.m \
OFXMLNode.m \
OFXMLParser.m \
OFXMLProcessingInstruction.m \
OFZIPArchive.m \
OFZIPArchiveEntry.m \
OFZooArchive.m \
OFZooArchiveEntry.m \
${USE_SRCS_FILES} \
${USE_SRCS_PLUGINS} \
${USE_SRCS_SOCKETS} \
${USE_SRCS_SUBPROCESSES} \
${USE_SRCS_THREADS} \
${USE_SRCS_WINDOWS}
SRCS_FILES = OFFile.m \
|
| ︙ |
Modified src/OFLHAArchive.m from [b00facb75e] to [97efb45aaf].
| ︙ | |||
412 413 414 415 416 417 418 | 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | - + - + |
_CRC16 = OFCRC16(_CRC16, buffer, ret);
if (_toRead == 0) {
_atEndOfStream = true;
if (_CRC16 != _entry.CRC16) {
OFString *actualChecksum = [OFString stringWithFormat:
|
| ︙ |
Modified src/OFLHAArchiveEntry.m from [49afc93b6c] to [13f8a765b6].
| ︙ | |||
29 30 31 32 33 34 35 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | - + | #import "OFString.h" #import "OFInvalidArgumentException.h" #import "OFInvalidFormatException.h" #import "OFOutOfRangeException.h" #import "OFUnsupportedVersionException.h" |
| ︙ |
Modified src/OFZIPArchiveEntry.m from [1e5ec904f3] to [d0352dc341].
| ︙ | |||
424 425 426 427 428 429 430 | 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 | - - + + | OFString *compressionMethod = OFZIPArchiveEntryCompressionMethodName(_compressionMethod); OFString *ret = [OFString stringWithFormat: @"<%@:\n" @"\tFile name = %@\n" @"\tFile comment = %@\n" @"\tGeneral purpose bit flag = %u\n" |
| ︙ |
Added src/OFZooArchive.h version [966424ef25].