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-11-03Info.experiment/add-qthttpserver-modulealex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-02Replace deprecated QRegExp with QRegularExpression.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-02properly extract the file id when querying serverMatthieu Gallien
use the proper local file id to get the e2ee meta data Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-10-27Forbid trusting the untrusted certificate.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-10-27Request OCSP validation data from the server during the SSL handshake.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-10-26schedule files upload after all other jobs have been completedMatthieu Gallien
should allow smarter policy dedicated to optimizing files upload Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-10-26add missing Q_ENUM macro to improve loggingMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-10-26no oneliner if: a bug waiting to happenMatthieu Gallien
it is much too easy to get a bug because one could miss the lask of { and } Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-10-25Fix JsonApiJob incorrect 'statuscode' parsing.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-10-25Unified Search via Tray windowalex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-10-20Fix folder creation issues.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-10-19Log file name and line numberFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-10-18Only use basic authentication if neededFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-10-18Give the user a more descriptive error message when syncing is aborted.Camila
Signed-off-by: Camila <hello@camila.codes>
2021-10-15i18n: Correct typo and remove apostropheValdnet
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2021-10-14Add .sync-exclude.lst to exclude filesFelix Weilbach
Previously the .sync-exclude.lst file of the sync root directory was not added to the exclude files, because the current logic did only recognize .sync-exclude.lst files when their containing directory was discovered during the discovery phase. Therefore the sync root .sync-exclude.lst file was never discovered. See also ExcludedFiles::traversalPatternMatch(). Fix: #3830, #2728 Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-10-14Trim trailing spaces before uploading filesFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-10-13provide logs of SSL errors including the certificate chainMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-10-12Show sync progress in main dialogFelix Weilbach
Fixes #3662 Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-10-06use alias target for internal librariesMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-10-06ensure DLL are generated with branded namesMatthieu Gallien
cmake distinct runtime and library on unix dynamic shared libraries are library kind of objects on windows they are runtime kind of objects Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-09-30Remove Temporary solution for file restoration issue due to failing to set ↵alex-z
the data-fingerprint. Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-09-27Don't log encryption data in release modeFelix Weilbach
We deliver our builds to users with debug logging enabled to have an easier time finding problems. However, logging all the encryption data in this loop is too much and should not be done in release mode. Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-09-27Check server capabilities for file sharing default permissions.Camila
Signed-off-by: Camila <hello@camila.codes>
2021-09-23Add dialog to resolve invalid filenamesFelix Weilbach
Fixes #3751 Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-09-17Fix warningsFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-09-14Emit user status changed after clear user statusFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-09-13Fixed warnings from ntstatus.h on WindowsDmytro Korchynskyi
Signed-off-by: Dmytro Korchynskyi <kdl.dima@gmail.com>
2021-09-13Fixed warnings by using static_castDmytro Korchynskyi
Signed-off-by: Dmytro Korchynskyi <kdl.dima@gmail.com>
2021-09-09Add dialog to set user statusFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-09-08Fix various deprecated warningsFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-09-08Replace deprecated use of QProcess::execute()Felix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-09-08Use QRandomGenerator instead of qrandFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-09-08endl has been deprecatedFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-09-07prevent infinte recursion when closing a websocket in case of SSL errorsMatthieu Gallien
the slots connected to the web socket can be called even during close and lead to infinite calls to close -> error slot -> close -> ... Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-09-06Remove assert that caues crashesFelix Weilbach
This assert does not add value. Utility::concatUrlPath() takes care of appending paths correctly. Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-09-06Enable share to Talk and Email. Display correct icon. Added unit tests.allexzander
Signed-off-by: allexzander <blackslayer4@gmail.com>
2021-08-31switch from Q_DECL_OVERRIDE to plain overrideMatthieu Gallien
our requirements guarantee availability of override keyword so we just use it Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
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-26Add parens around && in || statementFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-08-26Fix warnings related to wrong ordering of ctor initFelix Weilbach
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-08-26remove a tr call where translator cannot do anything meaningfulMatthieu Gallien
close #3708 Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-08-23remove broken assert that is not needed and break account setupMatthieu Gallien
it has been also removed from the original branch so no problem removing it Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-08-23fix clang-tidy check for usage of =defaultMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-08-23Add socket command to upload a selection of files based on a regexHannah von Reth
(cherry picked from commit 0ded3a56a9f3470a951b18eaa9d3c1b5e8db1135)
2021-08-23Remove dead codeHannah von Reth
2021-08-23owncloudcmd: Use env vars for chunk sizes #7078Christian Kamm
Moves a bunch of env var reading from Folder into SyncOptions.
2021-08-23Don't create QStringList copy firstHannah von Reth
2021-08-23Always call doLog to ensure we get a crash logHannah von Reth
2021-08-23Remove anchient debug msg that mutated to a warning over the yearHannah von Reth