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
2021-12-17[tx] updated client translations from transifex [skip ci]ownClouders
2021-12-16Handle file locks with deletesHannah von Reth
Fixes: #9293
2021-12-16Use faster `QFileInfo::exists`Hannah von Reth
2021-12-16[tx] updated client translations from transifex [skip ci]ownClouders
2021-12-15Fix wrong status displayed for files moved on the serverHannah von Reth
Completed was emitted before the database entry was created in PropagateDirectory::slotSubJobsFinished.
2021-12-15Tests: always check the hydration state and the mtimeErik Verbruggen
operator== will now always also check the hydration state and mtime. For the few cases where this will fail (on purpose), the equals method can be called with `IgnoreLastModified` passed to it.
2021-12-15[tests-only]add tests for sharee editing files/folder (#9282)Swoichha Adhikari
2021-12-15[tests-only]Added tests for folder creation and syncing (part 2) (#9258)Talank
2021-12-15Make clang happyHannah von Reth
2021-12-15Run tests with full debug logHannah von Reth
2021-12-15Restart oauth on errorHannah von Reth
Fixes: #9196
2021-12-15[Tests-Only] add test for folder sync (#9280)Swoichha Adhikari
2021-12-14[tests-only]Skipped 3 failed tests (#9288)Talank
2021-12-14[tx] updated client translations from transifex [skip ci]ownClouders
2021-12-14Use tr for user facing messages (#9277)Hannah von Reth
* Use tr for user facing messages * Update src/libsync/propagatedownload.cpp Co-authored-by: Dominik Schmidt <dschmidt@owncloud.com> Co-authored-by: Dominik Schmidt <dschmidt@owncloud.com>
2021-12-14Fix: `QSignalSpy: Unable to handle parameter '' of type 'SyncFileItemSet&' ↵Hannah von Reth
of method 'aboutToPropagate', use qRegisterMetaType to register it.`
2021-12-14Run test on WindowsHannah von Reth
2021-12-13Ensure we compare the correct signalsHannah von Reth
2021-12-13Handle local errors with the ignore listHannah von Reth
Fixes: #9208, #9133
2021-12-13[tests-only]add test for sharing file to multiple users (#9188)Swoichha Adhikari
2021-12-13bump middleware commit id for tests (#9279)Saw-jan Gurung
2021-12-13[tx] updated client translations from transifex [skip ci]ownClouders
2021-12-12[tx] updated client translations from transifex [skip ci]ownClouders
2021-12-10CI: Update craft-coreHannah von Reth
2021-12-10use qt5.12 squish for UI tests (#9272)Artur Neumann
2021-12-10[tx] updated client translations from transifex [skip ci]ownClouders
2021-12-09Only check for locked files before we start the uploadHannah von Reth
Fixes: #9194
2021-12-09Support dehydrated files in autotestsErik Verbruggen
When creating the local state, check if files are hydrated or not. If not hydrated, don't read the file: the OS will trigger a download. This is bad: first the read will fail, because the test is running on the main thread, the same place where work from callbacks from the OS get handled. This will result in a time-out for the OS, and it will return 0 bytes read. So the size for the file in our local state is set to zero bytes, which makes the comparisson with the remote state fail, which in turn makes the comparisson fail. Worse: the callbacks from the system do come in, and are emitted as a _QueuedConnection_. So when another call to `syncOnce` is made, the queued downloads will be done, and the file will be re-hydrated, thus changing the state of the files on disk.
2021-12-09Move dehydration into updateMetadataHannah von Reth
2021-12-09Fix parameter nameHannah von Reth
2021-12-08Fix hiding of activity tab in case app is disabled or not installedFabian Müller
2021-12-08Ci: Use a 2.10 cacheHannah von Reth
2021-12-08Ci: Update craft coreHannah von Reth
2021-12-06get proper errors from scenario outline tests (#9232)Swoichha Adhikari
2021-12-04[tx] updated client translations from transifex [skip ci]ownClouders
2021-12-03reduce time waiting for password box (#9254)Artur Neumann
2021-12-03Add log messageHannah von Reth
2021-12-01Use | with flags instead of +Hannah von Reth
2021-12-01Fix an isuse with the Windows path limitHannah von Reth
2021-12-01Stacktrace on crash (#9235)Talank
2021-12-01[tx] updated client translations from transifex [skip ci]ownClouders
2021-11-30[tx] updated client translations from transifex [skip ci]ownClouders
2021-11-29[tx] updated client translations from transifex [skip ci]ownClouders
2021-11-29Fix typoHannah von Reth
Fixes: #9183
2021-11-26Bugfix: Do not sync when unsyncedfolders file cannot be readErik Verbruggen
owncloudcmd now checks if the file specified by --unsyncedfolders exists and can be read, before starting the sync. If it does not exist, show an error message and quit immediately. https://github.com/owncloud/client/issues/9165
2021-11-26Ci: Update craft-blueprints-owncloudHannah von Reth
2021-11-26Add QDebug operator for std::chrono::durationHannah von Reth
2021-11-25Don't name the eventHannah von Reth
2021-11-25Ensure we prooperly close the log fileHannah von Reth
We relied on the stack to destroy our logger which can have unreliable results.
2021-11-24Release 2.9.2Hannah von Reth