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-02-04Replace ocsjob with JsonApiJobHannah von Reth
2021-06-16Remove possible qt containers detach (#8727)Aleksey Lysenko
* Replaced obsolete foreach-loops with for-loops * Added a copy of queries into SqlDatabase::close * Used const reference to avoid unneeded copying * Fixed Qt containers possible detach within for-loop * Removed unneeded copies before for-loops
2020-02-10Run clang-tidy check for modernize-use-nullptrOlivier Goffart
2018-10-25Sharing: add the `shareWithAdditionalInfo` string in autocompletion resultsOlivier Goffart
Issue #6749
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-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-05-08Sharing: Switch from QtJson to Qt5's QJson #5710Christian Kamm
2016-10-25License: Adjust license of GPLv2 source files to GPLv2+Christian Kamm
See #5180
2016-01-12Sharing: feedback when there is no result while searching for an user #4348Olivier Goffart
2015-12-10User Sharing: Match user names and case insensitive #4269Christian Kamm
2015-12-03Sharee.cpp: Get rid of lambdas because we still need to support GCC 4.4Olivier Goffart
2015-11-27show displaynames of users in share dialog instead of useridArthur Schiwon
2015-11-16ShareDialog: fix auto completion to actualy auto completeOlivier Goffart
2015-11-11Sharing: Fix crash with share deletion #4111Christian Kamm
The problem was that Share could be deleted *before* the OcsShareJob itself finished. Since Share was the parent of the network job, its object would be deleted too early. In general, it's unnecessary to assign parents to the OcsJobs because they delete themselves when finished.
2015-11-09ShareDialog: fix autocompletion took the wrong userOlivier Goffart
2015-11-05[Sharing] Filter sharee list properlyRoeland Jago Douma
You can't share with a user/group that you've already shared with You can't share with yourself
2015-11-05[Sharing] Allow sharing with users/groups from desktopRoeland Jago Douma
2015-11-04[Sharing] First step towards proper group sharingRoeland Jago Douma