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
2018-11-11GUI: search'n'replace remaining "Q_DECL_OVERRIDE" with "override"J-P Nurmi
2018-11-11GUI: run clang-tidy modernize-use-overrideJ-P Nurmi
2018-05-07Adds function to add raw header to the request.Camila San
Function added to be able to add If-None-Match to save the ETag. Signed-off-by: Camila San <hello@camila.codes>
2017-12-13Notifications: Propagate "Dismiss" as DELETE to server #5922Markus Goetz
(cherry picked from commit e86416fff7c74174e699802cec46da8ca3c3aad5)
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
2016-03-14ocs jobs: Add a define for OCS job success.Klaas Freitag
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-10-29Act properly if OCS endpoint returned an error (OCS error)Roeland Jago Douma
For now pass it on to the gui. So at least they know something is wrong.
2015-10-29Add share manager and the share objectsRoeland Jago Douma
2015-10-16TyposRoeland Jago Douma
2015-10-16Now only 1 constructor to ocssharejobRoeland Jago Douma
* Pass the share_id to the functions that need it
2015-10-15Now add parameters in a less crappy wayRoeland Jago Douma
2015-10-15OCSJob -> OcsJob and more docsRoeland Jago Douma
2015-10-15Split sharing codeRoeland Jago Douma
There is now a generic OCSJob which must be inherited by other jobs. This is in prepartion for the other OCS job that will come (for the Sharee API endpoint for example). More logic is moved from the sharedialog to the OcsShareJob. So in the GUI code we now only say what we want (a new share, set the password etc). And the code in libsync will make that happen. Error handling is for now still done in the GUI part. For now the ocsjob and ocssharejob live in gui but probabaly we should create a libshare or libocs at some point.