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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-27Adds parameter to retrieve shares with its reshares.Camila San
If the initiator or the recipient is not the current user, show the list of sharees without any options to edit it. Minor change: updates api to v2. Signed-off-by: Camila San <hello@camila.codes>
2018-06-06SocketApi/Sharing: Add "copy public link" to menu #6356Christian Kamm
* The new menu option will fetch shares and create a new link share if no "context menu share" currently exists. * Various cleanup of common operations in socketapi happened as well, in particular there's now FileData::get() that calculates all the relevant paths that are useful for most socketapi actions.
2017-10-05Use 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-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
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-04[Sharing] First step towards proper group sharingRoeland Jago Douma