mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2026-04-15 21:44:07 +02:00
Compare commits
3 Commits
v1.6.2-rc2
...
v1.6.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f37484b8a | ||
|
|
3d0c009719 | ||
|
|
208011f6ab |
@@ -1,6 +1,7 @@
|
|||||||
ChangeLog
|
ChangeLog
|
||||||
=========
|
=========
|
||||||
version 1.6.2 (release 2014-07-x )
|
version 1.6.2 (release 2014-07-28 )
|
||||||
|
* Limit the HTTP buffer size when downloading to limit memory consumption.
|
||||||
* Another small mem leak fixed in HTTP Credentials.
|
* Another small mem leak fixed in HTTP Credentials.
|
||||||
* Fix local file name clash detection for MacOSX.
|
* Fix local file name clash detection for MacOSX.
|
||||||
* Limit maximum wait time to ten seconds in network limiting.
|
* Limit maximum wait time to ten seconds in network limiting.
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ set( MIRALL_VERSION_PATCH 2 )
|
|||||||
set( MIRALL_SOVERSION 0 )
|
set( MIRALL_SOVERSION 0 )
|
||||||
|
|
||||||
if ( NOT DEFINED MIRALL_VERSION_SUFFIX )
|
if ( NOT DEFINED MIRALL_VERSION_SUFFIX )
|
||||||
set( MIRALL_VERSION_SUFFIX "rc2") #e.g. beta1, beta2, rc1
|
set( MIRALL_VERSION_SUFFIX "") #e.g. beta1, beta2, rc1
|
||||||
endif( NOT DEFINED MIRALL_VERSION_SUFFIX )
|
endif( NOT DEFINED MIRALL_VERSION_SUFFIX )
|
||||||
|
|
||||||
if( NOT DEFINED MIRALL_VERSION_BUILD )
|
if( NOT DEFINED MIRALL_VERSION_BUILD )
|
||||||
|
|||||||
@@ -303,7 +303,7 @@ void PropagateUploadFileQNAM::slotPutFinished()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (Utility::qDateTimeToTime_t(fi.lastModified()) != _item._modtime) {
|
if (Utility::qDateTimeToTime_t(fi.lastModified()) != _item._modtime) {
|
||||||
/* Uh oh: The local file has changed during upload */
|
qDebug() << "The local file has changed during upload:" << _item._modtime << "!=" << Utility::qDateTimeToTime_t(fi.lastModified()) << fi.lastModified();
|
||||||
_propagator->_activeJobs--;
|
_propagator->_activeJobs--;
|
||||||
done(SyncFileItem::SoftError, tr("Local file changed during sync."));
|
done(SyncFileItem::SoftError, tr("Local file changed during sync."));
|
||||||
// FIXME: the legacy code was retrying for a few seconds.
|
// FIXME: the legacy code was retrying for a few seconds.
|
||||||
@@ -402,6 +402,7 @@ void GETFileJob::start() {
|
|||||||
|
|
||||||
setReply(davRequest("GET", path(), req));
|
setReply(davRequest("GET", path(), req));
|
||||||
setupConnections(reply());
|
setupConnections(reply());
|
||||||
|
reply()->setReadBufferSize(128 * 1024);
|
||||||
|
|
||||||
if( reply()->error() != QNetworkReply::NoError ) {
|
if( reply()->error() != QNetworkReply::NoError ) {
|
||||||
qWarning() << Q_FUNC_INFO << " Network error: " << reply()->errorString();
|
qWarning() << Q_FUNC_INFO << " Network error: " << reply()->errorString();
|
||||||
|
|||||||
Reference in New Issue
Block a user