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
2021-08-31let clang-tidy add missing override after enabling again the checkMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-08-23Align MkColJob finish signal with the other jobsHannah von Reth
2018-11-11GUI: run clang-tidy modernize-use-nullptrJ-P Nurmi
2017-10-24Wizard: Resolve url/ redirects only if url/status.php not foundChristian Kamm
Unfortunately checking the base-url for redirects in all cases lead to incorrect behavior in some SAML/OAuth2 edge cases. This new iteration checks the base url for redirects only if the standard CheckServerJob can't reach the server. That way the 2.3 behavior is only changed in cases that would have lead to errors. See #5954
2017-09-11Use DetermineAuthTypeJob in HttpCredentialsChristian Kamm
* Move it to networkjobs * Minor adjustments to its logic * Fixes redirect handling for oauth/basic http auth check #6003
2017-05-17Apply clang-formatChristian Kamm
2017-05-08Switch JsonApiJob to Qt5's QJson #5710Christian Kamm
2017-04-20Some Dialogs: Bring to top on tray click #5515 #5566 (#5664)Markus Goetz
On my OS X, it might get hidden under other apps while I opened it and then want to quickly verify something in another app.
2016-09-26Wizard: Do the system proxy lookup in a thread (#5160)Markus Goetz
This is analogous to the code in ConnectionValidator.
2016-06-28GUI: Show link to the page that allow to add a new token (#4963)Olivier Goffart
If owncloud >= 9.1 is detected: and add a link to the ownCloud page that allow to add device token. Issue #4877
2015-06-29Use doxygen style everywhereDaniel Molkentin
2015-06-29Structure developer documentationDaniel Molkentin
- rename target "doc-dev" - group into modules - move to doc/dev
2015-04-27Wizard: Setup the folder in the right accountOlivier Goffart
2015-04-27Merge branch 'master' into new-uiOlivier Goffart
2015-04-24AccountWizard: Fix auth error handling. #3155Christian Kamm
The problem was that on network error the networkError() and finishedWithError() signals both fired. To fix it, I collapse all error handing into a slot triggered by finishedWithError(). I tested the redirection case and the invalid credentials case.
2015-04-17Multi-account WIPOlivier Goffart
2015-04-10Handle redirect of auth request. #3082Christian Kamm
2015-03-03setup wizard: use a PROPFIND instead of a GET on the webdav urlOlivier Goffart
In order to initiate the conneciton, we should not send a GET on the webdav URL because that is not a valid webdav command on a collection. Issue #2911
2015-01-28Wizard Remove unused pointerDaniel Molkentin
2015-01-08Merge remote-tracking branch 'origin/master' into accountstateDaniel Molkentin
Conflicts: src/gui/owncloudsetupwizard.cpp src/gui/owncloudsetupwizard.h src/libsync/propagatedownload.cpp src/libsync/propagatedownload.h
2015-01-07Do not show the HTTP-reconnect popup when its not warrantedDaniel Molkentin
Fixes usability issues in the workaround of #2607
2014-12-18Wizard: Sometimes preserve folders when folder config is skipped.Christian Kamm
* When folder config is used, other folder definitions are always removed. * Fix a bug with the wizard becoming stuck when 'skip folder config' is used.
2014-12-18Use global Account/AccountState less.Christian Kamm
* Use a shared pointer to Account everywhere to ensure the instance stays alive long enough for a sync to terminate * Folder is now tied to an AccountState * SyncEngine and OwncloudPropagator tie to an Account and use that for all jobs they run Issue: Since the setup wizard currently always replaces the account, it will always wipe all folder definitions, even when the actual changes to the account were minor.
2014-11-10Adjust namespacesDaniel Molkentin
2014-08-12Merge branch 'master' into move_lib_to_sep_dirDaniel Molkentin
Conflicts: cmake/modules/NSIS.template.in src/CMakeLists.txt src/creds/shibboleth/authenticationdialog.cpp src/creds/shibboleth/authenticationdialog.h src/gui/owncloudgui.cpp src/libsync/creds/shibboleth/authenticationdialog.cpp src/libsync/creds/shibboleth/authenticationdialog.h src/libsync/mirallaccessmanager.cpp src/mirall/authenticationdialog.cpp src/mirall/authenticationdialog.h
2014-07-11Split into three separate projects: library, gui and cmdDaniel Molkentin