Skip to content

Releases: stnvh/php-partialzip

0.2.1

01 Nov 17:54
Compare
Choose a tag to compare
  • Fix fatal error in which files weren't being downloaded due to CDFile objects being stored in memory instead of raw data
  • This happens all too often - 0.2.0 is the first release for two years; tests.. tests need to happen 😞

0.2.0

01 Nov 17:32
Compare
Choose a tag to compare
  • Cleanup code
    • Prevent httpRequest reuse
    • Removed use of curl callbacks (this ain't quite C)
    • Stop using object props for throwaway data (fileName, EOCD, Local file headers, etc.)
    • Variable names make some sort of sense now
  • Removed outputting directly from get(): use echo lazy!
  • Merged fix: PartialData->tempName assignment (Closes #5)

0.1.6

23 Feb 16:53
Compare
Choose a tag to compare
  • Remove use of user_error, use throw cases instead
  • Remove use of ob_start/clean - documented instead

0.1.5

18 Feb 13:24
Compare
Choose a tag to compare
  • Added checks for Accept-Ranges: bytes header on initialisation instead of limiting execution to 15 seconds!
    • [internal] Added header parser to the Zip->httpRequest function
  • Use ob_clean() only when directly outputting file contents to browser
  • PHP 5.3 compatibility added
  • Added correct usage of switch (forgot breaks) in decompression selection

Bump to 0.1.4

13 Feb 17:14
Compare
Choose a tag to compare
  • Iteration optimisations; no longer needs to iterate to search for EOCD, uses strstr for neatness.
  • Added zip header info magic calls to file objects
  • Improved error handling for most function arguments
  • Updated README to reflect changes