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-03-14Ensure to flush log when using stdoutHannah von Reth
Especially relevant for the cmd app.
2022-03-09Remove db entry for no longer existing ignored filesHannah von Reth
Fixes: #9236
2022-03-09Lock a file during the completion of its uploadHannah von Reth
2022-03-08CheckServerJob: clear cookies under more circumstancesHannah von Reth
2022-02-23Remove redundant comment about DefaultRemotePollIntervalPhil Davis
2022-02-23Improve poll-interval commentsPhil Davis
2022-02-17Bugfix: mention source file in activity tab when renamingErik Verbruggen
Fixed: https://github.com/owncloud/client/issues/9238
2022-02-11Fix connects on repliesHannah von Reth
2022-02-11Ocis nowadays reports the permissionsHannah von Reth
2022-02-11Ensure we connect to an existing objectHannah von Reth
12-13 13:35:17:462 [ warning default ]: QObject::connect(QNetworkReply, OCC::UploadDevice): invalid null parameter 12-13 13:35:17:462 [ warning default ]: QObject::connect(QNetworkReply, OCC::PropagateUploadFileTUS): invalid null parameter Fixes: #9121
2022-02-03Ensure the retry counter is resetHannah von Reth
2022-01-26Introduce new error category that is not handled by the ignore listHannah von Reth
Fixes: #9382
2022-01-25Don't translate log messageHannah von Reth
2022-01-25Ignore network/http errors and retry to refresh the token multiple timesHannah von Reth
Fixes: #9245
2022-01-18Remove error when checking removed file for changesHannah von Reth
Fixes: #9304
2022-01-12Don't set origin file of moves to in syncHannah von Reth
2022-01-04Fix OpenID Connect authentication regressionFabian Müller
Introduced in ba37025f4b5ac4a2a6cde6aac7d4a5896cfbac1.
2021-12-17Handle locks in recursive deleteHannah von Reth
2021-12-17Only check whether a file is locked before we start the uploadHannah von Reth
Fixes: #9194
2021-12-16Handle file locks with deletesHannah von Reth
Fixes: #9293
2021-12-15Fix wrong status displayed for files moved on the serverHannah von Reth
Completed was emitted before the database entry was created in PropagateDirectory::slotSubJobsFinished.
2021-12-15Restart oauth on errorHannah von Reth
Fixes: #9196
2021-12-14Use tr for user facing messages (#9277)Hannah von Reth
* Use tr for user facing messages * Update src/libsync/propagatedownload.cpp Co-authored-by: Dominik Schmidt <dschmidt@owncloud.com> Co-authored-by: Dominik Schmidt <dschmidt@owncloud.com>
2021-12-14Fix: `QSignalSpy: Unable to handle parameter '' of type 'SyncFileItemSet&' ↵Hannah von Reth
of method 'aboutToPropagate', use qRegisterMetaType to register it.`
2021-12-13Handle local errors with the ignore listHannah von Reth
Fixes: #9208, #9133
2021-12-09Only check for locked files before we start the uploadHannah von Reth
Fixes: #9194
2021-12-09Move dehydration into updateMetadataHannah von Reth
2021-11-25Ensure we prooperly close the log fileHannah von Reth
We relied on the stack to destroy our logger which can have unreliable results.
2021-11-23Display correct error message for files containign `\:?*"<>|`Hannah von Reth
2021-11-22Fix crash in PropagateRemoteMkdirHannah von Reth
Fixes: #9170
2021-11-19Fix crash when handling SSL errorsErik Verbruggen
https://github.com/owncloud/client/issues/9015
2021-11-16Add branding option to disable multiple db warningHannah von Reth
2021-10-27Add branding parameter to disable explorer context menu iconsHannah von Reth
Fixes: #9167
2021-10-07Do not try to (repeatedly) fetch profile pictures when not availableErik Verbruggen
The server has a capability to indicate that profile pictures (avatars) are not available. Previously, the client would try to fetch them no matter what, and even retry when the server responded with a 404. Now we take the server capability into account, and do not try to fetch those when not available. Fixes: #8758
2021-09-29Allow to filter issue table by issue typeErik Verbruggen
Fixes: #9000
2021-09-28CleanupHannah von Reth
2021-09-28Fix dehydration of read only filesHannah von Reth
2021-09-27Cleanup and some assrts to ensure assumptionsHannah von Reth
2021-09-23No longer try to concatenate definesHannah von Reth
Fixes: #8920
2021-09-22Improve error handling during vfs setupHannah von Reth
2021-09-22Use NtfsPermissionLookupRAII when checking for readable/writeabelHannah von Reth
2021-09-21Allow up to 20000 sync issuesHannah von Reth
2021-09-21Don't ignore suffix placeholderHannah von Reth
2021-09-17Turn raw QSettings pointer into a reference in the CredentialManagerErik Verbruggen
The underlying object is managed by a std::unique_ptr. So accidentally setting a parent, or managing it somewhere else, will result in a double-free. Returning a reference is slightly more safe, and has the added benefit that it communicates the fact that it will never be a nullptr.
2021-09-17Work around compiler bug in old GCC versionsErik Verbruggen
The previous use of template specialisation triggered a compiler bug on Debian 9 and CentOS 7, which use gcc 5.4 or earlier. As there is just one specialisation, the work-around is to change the function to be a static member function of the wrapping class of the enum. See also: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56480
2021-09-17Fix some compiler warningsErik Verbruggen
- comparison of integers of different signs - usused parameter - loop variable creates a copy - unused variable (due to #ifdef)
2021-09-15Fix crash on missing sync rootHannah von Reth
Fixes: #9016
2021-09-15Fix crash on shutdownHannah von Reth
Fixes: #9014
2021-09-14Remove dead codeHannah von Reth
2021-09-14Add SyncStatus to the tablesHannah von Reth
Issue: #9000