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
2013-11-28Destinguish between rename and move in wording.v1.5.0-beta1Klaas Freitag
2013-11-28Do not write the directory etag in the database in case of soft errorOlivier Goffart
Else we won't retry next time as we think nothing has changed.
2013-11-28Stop iterating files when aborting.Olivier Goffart
2013-11-28no need to set twice the error stringOlivier Goffart
done() is already taking care of that
2013-11-28Use the activity icon in settings dialog.Klaas Freitag
2013-11-28Change tab name in settingsdialog to Activity rather than Status.Klaas Freitag
2013-11-27Fix progress bar in new propagator.Klaas Freitag
2013-11-27Report connection errors explicitly on explicit sign in attemptsDaniel Molkentin
Implicit connection attempts fail silently. This is roughly what users expect from e.g. mail clients. Fixes #1205.
2013-11-27ConnectionValidator: Account::setState no longer takes a boolDaniel Molkentin
This makes the client come up with the correct state when the initial connect fails.
2013-11-27Account: Swap connected and disconnected stateDaniel Molkentin
Also, avoid full integer enumeration
2013-11-26Put detailed sync status widget into ButtonGroup for common style.Klaas Freitag
2013-11-26Removed not longer needed Info button.Klaas Freitag
The detailed sync status is now in the same dialog in another tab.
2013-11-26Simplify progress and error signals again.Klaas Freitag
Now handle everything through the progress signal and let the errors be progressed in the done slot. Remove unused code, fix sorting of the list, more efficiency. This fixes #916
2013-11-26Comment some unused code.Klaas Freitag
2013-11-26Add a couple of missing progress signals.Klaas Freitag
2013-11-26Do not blacklist Softerrors.Klaas Freitag
2013-11-26Display a proper error message for missing sync directory on server.Klaas Freitag
this fixes bug mirall#1149
2013-11-26Fix Remove -gzip from etagOlivier Goffart
Remove it from both "foo"-gzip and "foo-gzip" See issue #1195
2013-11-26Remove spammy "sync starting" notification on every program start.pascalBokBok
2013-11-26Toggle Settings window when clicking on the iconDaniel Molkentin
This restores the old behavior for every DE but OS X and Ubuntu Unity (which respond to all clicks by opening the menu). Discussed in #896
2013-11-26Folder wizard: sanitize error detectionDaniel Molkentin
* Wrap text properly * Format multiple warnings as bullet points * Use 'Folder' instead of 'Directory' everywhere * Fix false positives when checking if one directory contains another * Fix logic errors in target folder warning detection Fixes #1201
2013-11-26Account Settings: Fix labelDaniel Molkentin
2013-11-26Wizard: Do not start from scratch if the initial folder is non-defaultDaniel Molkentin
Before, the folder was initialized to "ownCloud" in any case, which lead the wizard to conclude it had to sync everything anew, because the location moved -- even if the folder location was manually corrected. Fixes parts of #1172
2013-11-25Propagator: Open download file as UnbufferedMarkus Goetz
2013-11-25Propagator: Check write errors when downloadingMarkus Goetz
2013-11-25Separate the case of file changing durng upload in the chunk or non chunk case.Olivier Goffart
If the file is changed between chunk, it is easy and we can just retry as the file has not been changed on the server. But if the file is changed after it has been updated on the server, we must still update the database with the etag. (and possibly delete the partial file) Relates to issue #1002
2013-11-25Propagator: Check E-Tag when resumingMarkus Goetz
Should fix #756
2013-11-25Account Settings: Set initial button state correctlyDaniel Molkentin
Fixes #1185
2013-11-25Even if problems occured show the Ok-Icon in the setup dialog.Klaas Freitag
Fixes bug #942.
2013-11-25Add one case of missing -gzip removalOlivier Goffart
2013-11-25Account Settings: fix connect errorDaniel Molkentin
Fixes #1198
2013-11-25Propagator: Don't ignore error if no HTTP error codeMarkus Goetz
2013-11-25Remove -gzip from EtagOlivier Goffart
Fix #1195
2013-11-25Show proper error message and icon according to error class.Klaas Freitag
2013-11-25Add new progressProblem signal and slots.Klaas Freitag
Now the sync problems are handled differently than the sync progress to ease error message handling and stuff.
2013-11-25Register meta type for SyncProblemKlaas Freitag
2013-11-25Add new Error Types to progress: Soft, Normal, Fatal.Klaas Freitag
2013-11-25Wizard: let us handle/ignore credential failuresDaniel Molkentin
2013-11-25Cleanup: "Use QMutexLocker"Daniel Molkentin
2013-11-25Distiguish "Signed out" from "Disconnected"Daniel Molkentin
2013-11-25Introduce online/offline state, accessible via GUIDaniel Molkentin
2013-11-25Fix initial state of quota info class.Daniel Molkentin
2013-11-25Prefix tooltips with app nameDaniel Molkentin
2013-11-25Query credentials when needed. Put the account offline if user aborts.Daniel Molkentin
This is only implemented for HTTP auth. Shibboleth still does its own thing.
2013-11-25Disable quota polling when default account does not exist or is offlineDaniel Molkentin
2013-11-25Fix mutex usage in the journalOlivier Goffart
All public function must lock the mutex. And therefore none of the journal function may call public function because the mutex is already locked. So have a public commit that lock the mutex, and a private commitInternal that assume the mutex is locked
2013-11-25Fix some SQL error and warningOlivier Goffart
Such as: Error opening the db: "Driver not loaded Driver not loaded" or QSqlDatabasePrivate::removeDatabase: connection '...' is still in use, all queries will cease to wor We need to clear the QSqlDatabase _db handle before calling removeDatabase. And we also need to give a different name to different folder database, just to be sure
2013-11-25Handle SoftError and show blacklisted files.Klaas Freitag
2013-11-25Do not display error messages if user aborts the sync run.Klaas Freitag
2013-11-25Do not show an error message if user aborted. Also CSYNC_STATUS fixes.Klaas Freitag