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
2019-03-28Fix broken image and admonition in the FAQ pageMatthew Setter
This relates to https://github.com/owncloud/docs/issues/618.
2019-03-28Fix issues in the architecture pageMatthew Setter
These issues were identified by @lazawan in https://github.com/owncloud/docs/issues/618.
2019-03-27Merge pull request #7115 from owncloud/remove-client-nav-docThomas Boerger
added removing the client
2019-03-27added removing the clientDmitry Mayorov
added a reference to the document describing removing the remnants of the windows client
2019-03-22Test: fix compilation with GCC 4.9Olivier Goffart
It does not appear to support variadic lambda
2019-03-22*.linux-repo.html needs adaption when copying...Jürgen Weigert
so many manual steps here ... .sigh.
2019-03-21VFS: Unbreak behavior for rename+hydrate #7001Christian Kamm
Users can rename a file *and* add/remove the vfs suffix at the same time leading to very complex sync actions. This patch doesn't add support for them, but adds tests and makes sure these cases do not cause unintened behavior. The rename will be propagated, but the users's hydrate/dehydrate request will be ignored.
2019-03-21Windows: Fix compile in shell_integration (3)Christian Kamm
2019-03-21Windows: Fix compile in shell_integration (2)Markus Goetz
2019-03-21Windows: Fix compile in shell_integrationMarkus Goetz
2019-03-20Docs: Remove doc-themes submoduleChristian Kamm
2019-03-20Docs: Move lonely image to new asset locationChristian Kamm
2019-03-20Docs: Remove leftover rst filesChristian Kamm
2019-03-20Async Poll: keep the size in the databaseOlivier Goffart
This was not required with 2.5 because a size of 0 was ignorted when comparing size by the csync updater, to be compatible with very old version of the database. But the we discovery will still think the file is changed if the database contains a size of 0
2019-03-20Upload: asynchronious operationsOlivier Goffart
Implements https://github.com/owncloud/core/pull/31851
2019-03-20Windows: Use better name for SocketAPI socket #6983Markus Goetz
2019-03-20Merge pull request #7097 from ↵Michael Stingl
owncloud/603-remove-merge-conflict-markers-in-troubleshooting-guide [#603] - Remove merge conflict markers in the troubleshooting appendix
2019-03-19Doc: Add faq entry for changing server url #6579Christian Kamm
2019-03-19Remove merge conflict markers in the troubleshooting appendixMatthew Setter
This fixes https://github.com/owncloud/docs/issues/603 and also cleans up the file so that it renders correctly.
2019-03-16macOS: Fix vfs suffix plugin paths #7090Markus Goetz
2019-03-14Linux: Add autostart delay to avoid tray issues #6518Christian Kamm
It seems that sometimes the tray implementation isn't ready on system startup. Retrying later seems to not help. Delaying the start of the client is the workaround that people have reported as effective.
2019-03-14SocketApi: Fix owncloud/enterprise#2938Markus Goetz
2019-03-14Add basic 2.6.0 changelogChristian Kamm
2019-03-14Merge remote-tracking branch 'origin/2.5'Christian Kamm
2019-03-14Client certs: Store pkcs12 in config, password in keychainChristian Kamm
It still reads and writes the old format too, but all newly stored client certs will be in the new form. For #6776 because Windows limits credential data to 512 bytes in older versions.
2019-03-14FolderWatcher linux: Make automatically recursive #7068Christian Kamm
Previously it depended on addFolder() / removeFolder() calls to adjust watchers when new folders were added or removed. There also needed to be complex move handling. Now, any folder creation/move-in notifications automatically trigger watcher additions and folder deletion/move-out triggers removal.
2019-03-14Add PLUGINDIR cmake setting and define #7027Christian Kamm
By default, plugins are only searched next to the binary or next to the other Qt plugins. This optional build variable allows another path to be configured. The idea is that on linux the oC packaging probably wants the binary in something like /opt/owncloud/bin and the plugins in /opt/owncloud/lib/plugins. Similarly, distribution packagers probably don't want the plugins next to the binary or next to the other Qt plugins. This flag allows them to configure another path that the executable will look in.
2019-03-13Update release_template.mdJürgen Weigert
reference to brand-items.php added for keep in sync warning.
2019-03-13Update release_template.mdJürgen Weigert
Qt-5.12.1 is more relevant than Qt-5.10.1 these days.
2019-03-11VERSION.cmake: This branch is 2.5.5 nowMarkus Goetz
2019-03-10ChangeLog: 2.5.4Markus Goetz
2019-03-08Tray: Try to establish tray after 10s if failed initially #6518Christian Kamm
When owncloud is started during desktop startup the tray may not yet be running when the client starts. This will make the client attempt to create a tray icon again after 10 seconds if there's no tray during initial startup.
2019-03-07FolderWatcher: Always notify about conflict files #7073Christian Kamm
This makes sure that the conflict list can be updated if a user resolves a conflict by deleting the local conflict file. Previously one had to wait for the next sync run.
2019-03-07FolderWatcher: Work around missing notifications on linux #7068Christian Kamm
There was a period of time between local discovery of a new folder and the folder receiving a filesystem watcher. Any changes to its contents during that time were missing, leading to misbehaviors.
2019-03-07Shares: "copy link" action can create shares with expiry #7061Christian Kamm
Previously it gave up if "expiry required" was enabled. Now it'll create a link share per day with the default expiry for these setups.
2019-03-07location for owncloud.cfg addedDmitry Mayorov
The location in windows FS was missing, so I added it.
2019-03-05Download: Remove useless code and add a testOlivier Goffart
From issue #7015, the code is wrong because the path is the file system path and not the path on the DB. But since this is a conflict, this means the reconcile will still want to download the file from the server next sync, so we need not to worry about this case
2019-03-05OwnSql: Distinguish no-data from error #6677Christian Kamm
This could fix a problem where the client incorrectly decides to delete local data. Previously any sqlite3_step() return value that wasn't SQLITE_ROW would be interpreted as "there's no more data here". Thus an sqlite error at a bad time could cause the remote discovery to fail to read an unchanged subtree from the database. These files would then be deleted locally. With this change sqlite errors from sqlite3_step are detected and logged. For the particular case of SyncJournalDb::getFilesBelowPath() the error will now be propagated and the sync run will fail instead of performing spurious deletes. Note that many other database functions still don't distinguish not-found from error cases. Most of them won't have as severe effects on affected sync runs though.
2019-03-04Merge remote-tracking branch 'origin/2.5'Christian Kamm
2019-03-04Update 2.5.4 changelogChristian Kamm
2019-03-04AccountManager: load the cookiesOlivier Goffart
For issue #7054
2019-03-02Windows: Forbid chars 0-31 in filenames #6987Christian Kamm
2019-02-28Release template: Remove part about win overlay dllsChristian Kamm
They are always rebuilt due to the switch to msvc.
2019-02-28Update 2.5.4 changelogChristian Kamm
2019-02-28Discovery win: Fix detection of case-only renamesChristian Kamm
Previously they were detected as DELETE+NEW because if "a" is renamed to "A" then QFile::exists("a") will still return true on Windows.
2019-02-28Selective sync: Don't collapse tree when entering mode #7055Christian Kamm
doExpand() is called when the selective sync editing mode is enabled in the folder settings view. Previously it'd set the expansion to be exactly the root items. Now, it just expands any root items that are currently collapsed, leaving all other item expansion unchanged.
2019-02-28Vfs: Fix folder dehydration requests on OSX #6977Christian Kamm
Since the rename is triggered by the client process the folder watcher didn't pick up on it on OSX. This does not need to be merged into master.
2019-02-28Disable HTTP2 by defaultChristian Kamm
Due to QTBUG-73947 and #7020. Use OWNCLOUD_HTTP2_ENABLED=1 to enable anyway.
2019-02-28Windows: Fix context menu handling only own verbs #7004Christian Kamm
Previously it'd handle all verbs as if they were our own.
2019-02-26Changelog for 2.5.4Christian Kamm