Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CHANGELOG.md « zip « nelexa « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db811cf7886e24236c9c2f392c33dc34e922533d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Changelog

# 3.1.2 (2017-11-17)
- Changed the algorithm for adding paddings to zipalign. 
  Now we will use the special field ExtraField c ID 0xD935, 
  which was implemented by Google in the apksigner library. 
  Now this field corresponds to the ZIP standard for storing 
  ExtraField records, and not just filling with zero bytes, 
  as in the zipalign console utility.

## 3.1.1 (2017-11-15)
- Fix resave zip aligned archive

## 3.1.0 (2017-11-14)
- Added class `ZipModel` for all changes.
- All manipulations with incoming and outgoing streams are in separate files: `ZipInputStream` and `ZipOutputStream`.
- Removed class `CentralDirectory`.
- Optimized extra fields classes.
- Fixed issue #4 (`count()` returns 0 when files are added in directories).
- Implemented issue #8 - support inline Content-Disposition and empty output filename.
- Optimized and tested on a php 32-bit platform (issue #5).
- Added output as PSR-7 Response.
- Added methods for canceling changes.
- Added [russian documentation](README.RU.md).
- Updated [documentation](README.md).
- Declared deprecated methods:
  + rename `ZipFile::withReadPassword` to `ZipFile::setReadPassword`
  + rename `ZipFile::withNewPassword` to `ZipFile::setPassword`
  + rename `ZipFile::withoutPassword` to `ZipFile::disableEncryption`

## 3.0.3 (2017-11-11)
Fix bug issue #8 - Error if the file is empty.

## 3.0.0 (2017-03-15)
Merge `ZipOutputFile` with ZipFile and optimize the zip archive update.

See the update instructions in README.md.

## 2.2.0 (2017-03-02)
Features:
  - create output object `ZipOutputFile` from `ZipFile` in method `ZipFile::edit()`.
  - create output object `ZipOutputFile` from filename in static method `ZipOutputFile::openFromFile(string $filename)`.