mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2026-04-05 05:34:18 +02:00
Compare commits
3 Commits
v1.7.0-alp
...
v1.6.2-the
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cfdfd6a860 | ||
|
|
5254c9785c | ||
|
|
0f37484b8a |
@@ -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 )
|
||||||
|
|||||||
@@ -405,7 +405,7 @@ void ShibbolethCredentials::showLoginWindow(Account* account)
|
|||||||
|
|
||||||
QList<QNetworkCookie> ShibbolethCredentials::accountCookies(Account *account)
|
QList<QNetworkCookie> ShibbolethCredentials::accountCookies(Account *account)
|
||||||
{
|
{
|
||||||
return account->networkAccessManager()->cookieJar()->cookiesForUrl(account->url());
|
return account->networkAccessManager()->cookieJar()->cookiesForUrl(account->davUrl());
|
||||||
}
|
}
|
||||||
|
|
||||||
QNetworkCookie ShibbolethCredentials::findShibCookie(Account *account, QList<QNetworkCookie> cookies)
|
QNetworkCookie ShibbolethCredentials::findShibCookie(Account *account, QList<QNetworkCookie> cookies)
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
|
#include <QTimer>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
|
||||||
@@ -145,9 +146,12 @@ void OwncloudSetupPage::initializePage()
|
|||||||
if (Theme::instance()->overrideServerUrl().isEmpty()) {
|
if (Theme::instance()->overrideServerUrl().isEmpty()) {
|
||||||
_ui.leUrl->setFocus();
|
_ui.leUrl->setFocus();
|
||||||
} else {
|
} else {
|
||||||
setVisible(false);
|
|
||||||
setCommitPage(true);
|
setCommitPage(true);
|
||||||
validatePage();
|
validatePage();
|
||||||
|
setVisible(false);
|
||||||
|
// because the wizard will call show on us right after this call, we need to hide in the
|
||||||
|
// next event loop iteration.
|
||||||
|
QTimer::singleShot(0, this, SLOT(hide()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -161,7 +161,6 @@ void OwncloudWizard::slotCurrentPageChanged( int id )
|
|||||||
|
|
||||||
if( id == WizardCommon::Page_ServerSetup ) {
|
if( id == WizardCommon::Page_ServerSetup ) {
|
||||||
emit clearPendingRequests();
|
emit clearPendingRequests();
|
||||||
_setupPage->initializePage();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if( id == WizardCommon::Page_Result ) {
|
if( id == WizardCommon::Page_Result ) {
|
||||||
|
|||||||
Reference in New Issue
Block a user