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
path: root/src
AgeCommit message (Collapse)Author
2013-09-23Do complete sync if network was disconnected.Klaas Freitag
This fixes owncloud/mirall#1007
2013-09-23Be more careful with items in model when deleting rows.Klaas Freitag
2013-09-23Removed left over stuff from refactoring.Klaas Freitag
2013-09-23Fix syncEnable in folder and folderman.Klaas Freitag
2013-09-21Theming build fix: Icons need shortnameDaniel Molkentin
2013-09-20More fixes related to object destruction on exitDaniel Molkentin
- _logBrowser is not delete on close, call deleteLater - move writing geometry out of dtor. - _folderWizard was unused, remove it and all related noops Hopefully solves #945
2013-09-20Settings: calculate sidebar width dynamicallyDaniel Molkentin
Fixes #1020
2013-09-19Pop up config wizard if no server url is configured.Daniel Molkentin
Fixes #1018.
2013-09-19Fix focus issue during setup wizardDaniel Molkentin
2013-09-19Start only one wizard, delete it when doneDaniel Molkentin
2013-09-18_tray is a QPointer, not a QScopedPointerDaniel Molkentin
2013-09-18Try to be more graceful during shutdownDaniel Molkentin
- Do not delete _tray, use deleteLater() via QScropedPointer - force closing any dialoges that might want to write their geometry in aboutToQuit(), before the actual destruction of the sync thread, etc starts. This tries to fix #945
2013-09-18Make "Sync started" message optionalDaniel Molkentin
Fixes #934
2013-09-18Ui::SslErrorDialog belongs within the Mirall namespaceDaniel Molkentin
2013-09-16Add copyright header to syncfileitem.hDaniel Molkentin
Fixes #993
2013-09-16Fix parameter orderDaniel Molkentin
2013-09-16Folder Wizard: Fix various issuesDaniel Molkentin
- Use data role for pathes - call root dir "ownCloud" - don't connect() multiple times - ensure chars like # or ? in path are interpreted as part of the url path segment Should fix #992
2013-09-13moving back to 1024 as divider for kB, MB, GB & TBThomas Müller
2013-09-11Setting thread priority is only possible after calling start()Daniel Molkentin
2013-09-11Do not en- or disable the watcher in setSyncEnabled.Klaas Freitag
The watcher is handled through the start and stop sync hooks in the folder class. Even if the the folder is disabled and the watcher fires, the folder does not schedule because it checks first if the folder is enabled.
2013-09-11Enable and disable syncing also in the folder objects.Klaas Freitag
2013-09-11Handle startup network errors correctly.Klaas Freitag
2013-09-11Minor code cleanups-Klaas Freitag
2013-09-11Folder Wizard: More sanity checksDaniel Molkentin
Check if a server folder or its parent is already part of a sync and refuse to create a sync in this case. Avoids "recursive syncing" Fixes #962
2013-09-11Send basic auth in utf8.Daniel Molkentin
Implies circumventing QAuthenticator and handling authentication manually again. Fixes #941
2013-09-10Wait up to 30 secs before complaining about missing systrayDaniel Molkentin
Conflicts: src/mirall/utility.cpp Fixes #949
2013-09-05Use List to handle errors and display multiline.Klaas Freitag
2013-09-05Fix locating translations on linuxDaniel Molkentin
2013-09-03Hide quota and display explanation if no quota info is available.Klaas Freitag
2013-09-03Added logging to quota info result slot.Klaas Freitag
2013-09-03Consistent look for top-labelsDaniel Molkentin
2013-09-02Remove dots from the end of error messages.Klaas Freitag
2013-09-02Show the reason why a file was ignored.Klaas Freitag
2013-08-31Fix display of "Monochrome icon" settingDaniel Molkentin
The logic was inverse, and there was a typo in the string. Oh my...
2013-08-29Use the same convention as on the server to format stringsOlivier Goffart
* use power of 10 SI units * use "B" instead of "bytes" * use at least 2 significant digit, but no more than one digit after the period
2013-08-28Fix crash in case of errorOlivier Goffart
the QObject::parent() is 0
2013-08-28Startup: Unity has no proper Systray implementationv1.4.0-rc1Daniel Molkentin
...so it can't respond to isSysTrayAvailable()
2013-08-27Reconfigure the proxy when neededOlivier Goffart
2013-08-26Properly install iconsDaniel Molkentin
2013-08-26install correct fileDaniel Molkentin
2013-08-26Fix casing in settings dialogDaniel Molkentin
2013-08-26More clear error messagesDaniel Molkentin
2013-08-26desktop file == executableDaniel Molkentin
2013-08-26Do not sort the entries in the syc protocol dialog alphabeticallyOlivier Goffart
The entries should be sorted chronogically. But now the QTreeWidget can only sort them alphabetically by the time, which is not what we want. Disalbe the sorting, and always insert the elements in the reverse order. Fix #890
2013-08-26Only show help if a URL is providedDaniel Molkentin
2013-08-23Fix saving the geometry of the log browserOlivier Goffart
2013-08-23Make remember the size of the settings dialogOlivier Goffart
Before, we saved the geometry in the closeEvent which is only called if the user press the [x] in the title bar. But it is not called when the user accept the dialog (by pressing the close button or the enter key) So save the geometry in the destructor of the dialog instead. One also must call delete from the Application destructor because it was leaking
2013-08-23Better default size for the setting dialogOlivier Goffart
2013-08-23Theme: Add documentation after recent changesDaniel Molkentin
2013-08-23More adjustments around the application nameDaniel Molkentin
- libname is now derived from binary name (which is lowercase) - remove superflouos reimplementation of appName() in owncloud theme - APPLICATION_SHORTNAME is now optional (and if not set, equals APPLICATION_NAME