mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-20 14:02:38 +02:00
revert change for GH #1828: causes Zip file corruption in some cases; bumped version no to 1.8.0.1
This commit is contained in:
@@ -1,6 +1,14 @@
|
|||||||
This is the changelog file for the POCO C++ Libraries.
|
This is the changelog file for the POCO C++ Libraries.
|
||||||
|
|
||||||
|
|
||||||
|
Release 1.8.0.1 (2017-11-11)
|
||||||
|
============================
|
||||||
|
|
||||||
|
- Reverted change for GH #1828; DeflatingStreamBuf::sync() no longer flushes
|
||||||
|
underlying stream as this causes corruption for some Zip files.
|
||||||
|
- PocoDoc: fix for handling compiler configuration for Gradle builds.
|
||||||
|
|
||||||
|
|
||||||
Release 1.8.0 (2017-11-10)
|
Release 1.8.0 (2017-11-10)
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
#include "winres.h"
|
#include "winres.h"
|
||||||
|
|
||||||
#define POCO_VERSION 1,8,0,0
|
#define POCO_VERSION 1,8,0,1
|
||||||
#define POCO_VERSION_STR "1.8.0"
|
#define POCO_VERSION_STR "1.8.0.1"
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION POCO_VERSION
|
FILEVERSION POCO_VERSION
|
||||||
|
@@ -35,7 +35,7 @@
|
|||||||
// Ax: alpha releases
|
// Ax: alpha releases
|
||||||
// Bx: beta releases
|
// Bx: beta releases
|
||||||
//
|
//
|
||||||
#define POCO_VERSION 0x01080000
|
#define POCO_VERSION 0x01080001
|
||||||
|
|
||||||
|
|
||||||
#endif // Foundation_Version_INCLUDED
|
#endif // Foundation_Version_INCLUDED
|
||||||
|
@@ -196,7 +196,9 @@ int DeflatingStreamBuf::sync()
|
|||||||
_zstr.next_out = (unsigned char*) _buffer;
|
_zstr.next_out = (unsigned char*) _buffer;
|
||||||
_zstr.avail_out = DEFLATE_BUFFER_SIZE;
|
_zstr.avail_out = DEFLATE_BUFFER_SIZE;
|
||||||
}
|
}
|
||||||
_pOstr->flush();
|
// NOTE: This breaks the Zip library and causes corruption in some files.
|
||||||
|
// See GH #1828
|
||||||
|
// _pOstr->flush();
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,15 @@
|
|||||||
POCO C++ Libraries Release Notes
|
POCO C++ Libraries Release Notes
|
||||||
AAAIntroduction
|
AAAIntroduction
|
||||||
|
|
||||||
|
!!!Release 1.8.0.1
|
||||||
|
|
||||||
|
!!Summary of Changes
|
||||||
|
|
||||||
|
- Reverted change for GH #1828; DeflatingStreamBuf::sync() no longer flushes
|
||||||
|
underlying stream as this causes corruption for some Zip files.
|
||||||
|
- PocoDoc: fix for handling compiler configuration for Gradle builds.
|
||||||
|
|
||||||
|
|
||||||
!!!Release 1.8.0
|
!!!Release 1.8.0
|
||||||
|
|
||||||
!!Summary of Changes
|
!!Summary of Changes
|
||||||
|
Reference in New Issue
Block a user