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-06-29Revert "Sync spaces to Spaces subfolder"Hannah von Reth
This reverts commit 0c4f977615fcd19ca46962b45ce15fcc912f51b6. Fixes: #9821
2022-05-27Change the way the continous log files are createdHannah von Reth
We now only rotate the logs when the client is started or the log gets bigger than 100mb
2022-05-25Use ocis productversionHannah von Reth
2022-05-25Allow to connect to unsupported serversHannah von Reth
2022-05-19FolderWizard use vfs with spacesHannah von Reth
Fixes: #9649
2022-05-19Unpause sync before we schedule a syncHannah von Reth
Fixes: #9691
2022-05-17Remove version checks for < 10.0Hannah von Reth
2022-05-13Allow to use the ConnectionValidator without checking the authHannah von Reth
That way we can use it to check for ssl errors
2022-05-13Use new TLSErrorDialogHannah von Reth
2022-05-06Sync spaces to Spaces subfolderHannah von Reth
2022-05-06Name the personal space `Personal`Hannah von Reth
2022-05-05Introduce per account default folderHannah von Reth
2022-05-05Resize FolderWizard when run after account wizardHannah von Reth
2022-05-03Properly prepare new sync foldersHannah von Reth
2022-04-26Use folder wizard for manual sync configFabian Müller
This approach gives the user a lot more freedom. The commit further moves the dialog logic out of the folder manager code, which allows us to clean up some API weirdness.
2022-04-13Add display name to foldersHannah von Reth
2022-04-13Use the folder object directly instead of looking it up by its name (#9583)Hannah von Reth
2022-04-13Schedule sync after account was addedHannah von Reth
2022-04-13Properly save the account including the credentialsHannah von Reth
2022-04-12Implement advanced sync options in wizardFabian Müller
2022-04-05Only save fully defined accountsHannah von Reth
2022-03-24Query capabilities before we setup the foldersHannah von Reth
2022-03-24Rewrite wizard from scratchFabian Müller
2022-02-18Use a per folder davUrlHannah von Reth
2021-12-03Use the refcounted AccountStatePtr as much as possibleErik Verbruggen
The AccountManager creates AccountState objects, and stores them in a shared pointer. Previously, the raw pointer was given out, and stored in other objects. That made removal very tricky: when an account gets removed, the underlying object gets deleted, and then all classes that listen get notified of the deletion. Those classes would sometimes put a nullptr into the AccountState pointer they stored, and in each usage would (hopefully) check for a nullptr. The problem was that a number of checks were missing, which the clang static analyser pointed out. This patch changes nearly all uses of a raw pointer into the shared pointer, thereby making sure all usages have a valid reference, even when account deletion happens. The two places where a raw pointer is still used, now put it into a refcounted pointer as soon as possible.
2021-11-25Use some more std::chronoHannah von Reth
2021-11-25Use std::chrono with QTimer::singleShotHannah von Reth
2021-08-23Fix last sync date for multiple accountsHannah von Reth
Fixes: #8904
2021-08-12Modern connectHannah von Reth
2021-08-12Clazy: old-style-connectHannah von Reth
2021-08-06Count ignored errorsHannah von Reth
2021-08-06Align sync status iconsHannah von Reth
Display info state if we have ignored issues Fixes: #7715 Fixes: #7365 Fixes: #7200 Fixes: #5860
2021-06-18Fixed unneeded allocations in for-loopsOleksii Lysenko
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
2021-06-10Removed unnecessary temporary containers during iteration over QMap valuesOleksii Lysenko
2021-04-26Remove pre 2.6 client side cert supportHannah von Reth
2021-04-15Display last sync date in context menuFabian Müller
This way, the user can quickly see what "up to date" refers to. In case the last sync was done on the same day, the date is hidden and only the time is shown.
2021-04-12Merge remote-tracking branch 'origin/2.8' into masterHannah von Reth
2021-04-07Allow to specify a icon for the system tray (Windows only)Hannah von Reth
2021-04-07Directly use owncloudGui instead of the LoggerHannah von Reth
2021-03-24Use uuid as main identifier for accountsHannah von Reth
2021-01-13Ensure that our dialogs are modalHannah von Reth
2020-12-21Merge remote-tracking branch 'origin/2.7' into masterHannah von Reth
2020-12-21Properly display parent Window when displaying a dialogHannah von Reth
Fixes: #8313
2020-10-28Merge remote-tracking branch 'origin/2.7' into masterHannah von Reth
2020-10-28Reintroduce a dark and a light themeHannah von Reth
2020-10-14Merge remote-tracking branch 'origin/2.7' into masterHannah von Reth
2020-10-14While the dialog is modal, the systray allows to click about multiple timesHannah von Reth
2020-10-14Raise the about dialogHannah von Reth
Fixes: #8160
2020-10-13Fix broken icon nameHannah von Reth