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
2014-12-12Theme: split the about string apart to have small translation units.Klaas Freitag
2014-12-11FolderMan: Delete old journal file when adding folder. #2606Christian Kamm
2014-12-11Fix counting of affected files. #1132Christian Kamm
* Also ensure the maximum is always >= the current value. * Take care to handle the ULLONG_MAX value that's sometimes used as _completedFileCount.
2014-12-09SocketAPI: use the canonical pathOlivier Goffart
Issue #2591
2014-12-06Removed useless debug outputKlaas Freitag
2014-12-06Fix the number of displayed items in progress display for removes.Klaas Freitag
This fixes mirall#1132 A variable that counts the affected items of the propagator operation done on a item was added to SyncFileItem. Usually that is 1 because most operations affect only the item itself. But for removes, the number can be higher for directories (one remove removes a whole tree). Some rearrangements were needed.
2014-12-04DB: Delete corrupt database. #2547Christian Kamm
* Also use readonly DB access for SocketAPI.
2014-12-04Setup Wizard: remove all folder definition before starting a new syncOlivier Goffart
Issue #1989
2014-12-04FolderWizard: Clean up naming of 'add folder' button. #2371Christian Kamm
2014-12-04Fix compile. :/Christian Kamm
2014-12-04NetworkJobs: Set timeout to 5 minutes everywhere.Christian Kamm
2014-12-04Fix typo.Christian Kamm
2014-12-04Etag job scheduling: Silence warnings, make prettier.Christian Kamm
2014-12-03GUI: Check if there are sync folders configured and how proper msg.Klaas Freitag
This fixes #2264
2014-12-03FolderMan: only touch _currentSyncFolder when done #2407Christian Kamm
Also simplity terminateSyncProcess() to always terminate the *current* sync run. Only one can be running at a time anyway.
2014-12-03Folders: Move ETag check scheduling to FolderManMarkus Goetz
Only 1 check per time is able to run now. For #2553 Might improve #2479 #2485 #2534
2014-12-02Wizard: Fix escaping of error message.Olivier Goffart
An url can contains % signs, so if it does, the errors formating was wrong because of the use of QString::args Also, the error is in html format, and we need to let the message box know that, otherwise we will just see <br/>
2014-12-02Wizard: Attempts to really close the database when starting the backupOlivier Goffart
Still for issue #1989
2014-12-01Nautilus shell integration: Use fallback when XDG_RUNTIME_DIR is not definedOlivier Goffart
Same fallback as in Qt5 Task #2477
2014-11-27Propagator QNAM: Fix resumingOlivier Goffart
We forgot to account the fact that we could have been resuming when comparing the size of the Content-lenght to the size of the temporary file
2014-11-27Revert "Folder: Don't blindly trigger sync on first EtagJob result"Olivier Goffart
We need to do a sync even if the etag was empty because we do not know if this is because the etag really changed or because it was new. Also, some part of the code rely on this fact to schedule a sync. The fact that there is two sync with 30 sec at the beginning is not a big problem, because we also need to do the sync the put the directory etag in the db. This reverts commit 1c001ee13865ceb4598c989e5308d27aead74540.
2014-11-27Shibboleth: Fix our implemtnation of CookieJar::deleteCookieOlivier Goffart
It was deleting too many cookies. That function is virtual in Qt5 and is used when adding cookie. But some Shibboleth have several cookies with the same name, and we need to keep them. Our implementaiton was meant to delete all the shiboleth cookies when we want to log out
2014-11-25Propagator: Add the chunk size to PUT requests.Klaas Freitag
2014-11-21Folder: Don't blindly trigger sync on first EtagJob resultMarkus Goetz
For #2352
2014-11-21Propagator: only check the content-lenght if it is thereOlivier Goffart
If content-lenght is 0, don't chack it is the size we recieved. It can be zero when using HTTP chunk encoding. Also do not remove the temporary file so it can be re-used on the next sync and ask for a new sync immediatly to re-do the sync. Fixup the fix to task #2528
2014-11-20Propagator: Compare the actual file size with the request content lengthKlaas Freitag
The values must match. Otherwise the request did succeed, but the file was not downloaded completely. This fixes https://github.com/owncloud/mirall/issues/2528
2014-11-20Print ssl library version only on Qt >=5.0.0.Christian Kamm
2014-11-20Windows filewatcher: switch to ReadDirectoryChangesW.Christian Kamm
Based on danimo's #2454 fix for #2455 and related to #2297.
2014-11-20csync db files: Hide after some commit/transactions. #2461Christian Kamm
The shm and wal files are only created later.
2014-11-19Windows: Make unit tests compile.Christian Kamm
2014-11-17Revert "WiP: switch to ReadDirectoryChangesW"Olivier Goffart
2014-11-17Merge pull request #2454 from owncloud/fswatcher_readdirectorychanges_portOlivier Goffart
switch to ReadDirectoryChangesW
2014-11-14SyncEngine: Also output the neon versionMarkus Goetz
2014-11-12SyncEngine: Output versions usedMarkus Goetz
2014-11-07Handle invalid handle & fix an issue found during code reviewDaniel Molkentin
2014-11-06Never overwrite the mtime from the local file system in the db when updating ↵Olivier Goffart
the metadata Attempt to fix #2431
2014-11-06Folderwatcher_win: handle conversion errorDaniel Molkentin
2014-11-06Folder::wipe(): Remove partial downloads and -shm,-wal db files.Christian Kamm
2014-11-06Resync button: Remove partial downloads too. #2445Christian Kamm
2014-11-06Legacy propagator: Don't use mtime retrieved via _fstat64.Christian Kamm
May be the cause of #2431
2014-11-06WiP: switch to ReadDirectoryChangesWDaniel Molkentin
2014-11-06FolderWatcher: Check for hidden outside of loopKlaas Freitag
2014-11-05Logging: Report setModTime failures.Christian Kamm
Ths may be helpful for #2252 and maybe even #2431.
2014-11-05Logging: Print etags, not just result of comparison.Christian Kamm
2014-11-05Wizard: Fix local folder warning in advanced setup wizard. #2362Christian Kamm
The _oldLocalFolder should always be the previously configured folder, not the one that was most recently chosen on the wizard page.
2014-11-05Download: Fix data loss when rename fails. #2428Christian Kamm
2014-10-30NetworkJobs: Improve timeout handling and increase timeout by 5 secMarkus Goetz
2014-10-30Download: Avoid overwriting file with case conflict. #1914Christian Kamm
2014-10-29Add missing license headersOlivier Goffart
Part of #2068
2014-10-29Propagator: report error when deleting directoriesOlivier Goffart
Will help to understand why a directory cannot be removed Will help for #2348