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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-29Always use makeQSettingsHannah von Reth
2022-05-19FolderWizard use vfs with spacesHannah von Reth
Fixes: #9649
2022-05-17Remove sharedAccessManagerHannah von Reth
2022-05-06Expose AccessManager from accountFabian Müller
Needed to be able to access planned TLS certificate handling related methods.
2022-03-10Drop secondary factoryFabian Müller
C++17 seems to allow using move construction of QSettings. Tested against a few common configuration values as well as the proxy specific stuff.
2022-03-10Use factories to construct QSettings objectsFabian Müller
2021-06-15Fix migration of settingsHannah von Reth
Don't initialize a settings object just to check whether the file exists. Fixes: https://github.com/owncloud/enterprise/issues/4597
2020-02-10ProxyAuthHandler Use QPointer instead of QWeakPointerOlivier Goffart
QWeakPointer::data is deprecated. In this case we should use QPointer
2020-02-10Run clang-tidy check for modernize-use-nullptrOlivier Goffart
2020-01-22[CMAKE] QtKeychain provides a proper config file, no need to use a find scriptHannah von Reth
2017-09-21Use the Qt5 connection syntax (automated with clazy)Olivier Goffart
This is motivated by the fact that QMetaObject::noralizeSignature takes 7.35% CPU of the LargeSyncBench. (Mostly from ABstractNetworkJob::setupConnections and PropagateUploadFileV1::startNextChunk). It could be fixed by using normalized signature in the connection statement, but i tought it was a good oportunity to modernize the code. This commit only contains calls that were automatically converted with clazy.
2017-05-17Apply clang-formatChristian Kamm
2017-05-11Upgrade some qCDebug to qCInfo or qCWarningJocelyn Turcotte
Use qCInfo for anything that has general value for support and development. Use qCWarning for any recoverable error and qCCritical for anything that could result in data loss or would identify a serious issue with the code. Issue #5647
2017-05-11Use Qt logging categories for loggingJocelyn Turcotte
This gives more insight about the logs and allow setting fine-tuned logging rules. The categories are set to only output Info by default so this allows us to provide more concise logging while keeping the ability to extract more information for a specific category when developping or debugging customer issues. Issue #5647
2017-04-20Fix a crash in ProxyAuthHandler (#5711)ckamm
See https://sentry.io/owncloud/desktop-win-and-mac/issues/243433178/activity/ https://sentry.io/owncloud/desktop-win-and-mac/issues/234182688/activity/ The problem was that an account's QNetworkAccessManager can be deleted when reentering the event loop.
2017-02-23Verify that all strings are properly escaped (#5558)Olivier Goffart
- I checked every occurence of a '%2' and make correct use of the QString::arg overload that takes several argument instead of chaining them, because the first argument can contains a '%1' - I tried to look for every label that they either use plain text or richtext and escape the user provided strings in there.
2016-10-25License: Adjust license of GPLv2 source files to GPLv2+Christian Kamm
See #5180
2015-07-17Proxy auth: Fix cred invalidation on Windows.Christian Kamm
2015-07-17System proxy: Ask for credentials if needed.Christian Kamm
The proxyAuthenticationRequired() signal now goes to the ProxyAuthHandler class. That class will try to read the proxy settings from the keychain or ask the user about them. We won't ask the user for credentials for explicitly configured proxies. It also does not change how the credentials for explicitly configured proxies are stored. (see #261)