Christian Kamm
1e78a14f1a
Ignore ui: Add the sync journal patterns #5844
...
The ignore patterns for the journal files are hardcoded. Add them to
the UI to make them discoverable.
2017-06-20 13:35:34 +02:00
Christian Kamm
4291ea47f7
Journal: Don't use a ._ path if it won't work #5633
...
When synchronizing a folder on a samba share, creating files that begin
with ._ is often forbidden. This prevented the client from creating
its ._sync_abcdef.db file.
Now, it'll check whether the preferred filename is creatable, and if
it isn't it'll use .sync_abcdef.db instead.
The disadvantage is that this alternative path won't be ignored by
older clients - that was the reason for the ._ prefix.
2017-06-20 13:35:34 +02:00
Jenkins for ownCloud
b50706a7aa
[tx-robot] updated from transifex
2017-06-20 02:22:12 +02:00
Jocelyn Turcotte
b20f87eef3
shell/Windows: Update binaries to build 45
2017-06-19 12:11:11 +02:00
Frederik Juul Christiani
bc2e1a53cb
shell_integration/windows: Create _newQueries as a non-signaled auto-reset event.
...
Since ResetEvent() is never called, the call to WaitForMultipleObjects()
can always return immediately once the event has been signaled.
2017-06-19 12:11:11 +02:00
Frederik Juul Christiani
e7d4d12e16
Initialize stop variable.
...
Avoid stopping the worker thread immediately if the stop variable happens to be true.
2017-06-19 12:11:11 +02:00
Jenkins for ownCloud
f348a7d4f4
[tx-robot] updated from transifex
2017-06-19 02:22:08 +02:00
Jenkins for ownCloud
9c82c36c71
[tx-robot] updated from transifex
2017-06-18 02:22:08 +02:00
Jenkins for ownCloud
480388133e
[tx-robot] updated from transifex
2017-06-17 02:22:17 +02:00
Jenkins for ownCloud
ff79cc9107
[tx-robot] updated from transifex
2017-06-14 02:22:19 +02:00
Jenkins for ownCloud
e86b6b2246
[tx-robot] updated from transifex
2017-06-09 02:22:10 +02:00
Olivier Goffart
18c39197e5
ownsql: fix build on jenkins
...
sqlite3_system_errno was only added in sqlite 3.12
(cherry picked from commit e2e56f45af
)
2017-06-08 12:53:45 +02:00
Christian Kamm
7eb8219419
Add extra logging for SQLITE_CANTOPEN errors #5633
...
(cherry picked from commit 05c1dcef9b
)
2017-06-08 12:52:58 +02:00
Jenkins for ownCloud
2f915af690
[tx-robot] updated from transifex
2017-06-08 02:22:10 +02:00
Jenkins for ownCloud
272898a792
[tx-robot] updated from transifex
2017-06-07 02:22:13 +02:00
Jenkins for ownCloud
68ee08440e
[tx-robot] updated from transifex
2017-06-05 02:22:03 +02:00
Jenkins for ownCloud
b02b99003a
[tx-robot] updated from transifex
2017-06-03 02:22:02 +02:00
Jenkins for ownCloud
e3306abbcb
[tx-robot] updated from transifex
2017-06-02 02:22:13 +02:00
Jenkins for ownCloud
61d05fa4d7
[tx-robot] updated from transifex
2017-05-31 02:22:17 +02:00
Dominik Schmidt
0fc3df45ce
Remove obsolete FindQtKeychain for Qt4
2017-05-29 21:44:25 +02:00
Dominik Schmidt
78dede2ac4
Fix build on Debian 7 (CMake pre 2.8.12)
2017-05-29 21:44:25 +02:00
Christian Kamm
577a2715bd
Download: Retrigger folder discovery on 404
...
See owncloud/enterprise#1966
If the server and the client's database go out of sync, there could be
persistent 404 errors. This change ensures that the problem corrects
itself eventually by triggering a remote discovery of the file's
parent folders.
It does not address the root cause that might have lead to the
divergence.
2017-05-29 21:41:10 +02:00
Jenkins for ownCloud
56de50de28
[tx-robot] updated from transifex
2017-05-25 02:22:08 +02:00
Jenkins for ownCloud
a48785ee5e
[tx-robot] updated from transifex
2017-05-24 02:22:16 +02:00
Jenkins for ownCloud
3be73ad1ca
[tx-robot] updated from transifex
2017-05-23 02:22:15 +02:00
Christian Kamm
c1d2a9ab92
Sharing: Show warning that link shares are public #5785 #5747
...
Backport of 3872e060ba33913e43714776a1afce787e772351
2017-05-22 10:28:16 +02:00
Christian Kamm
87a7642381
Settings: Ensure the 'about' label isn't cut off #5760
2017-05-22 10:11:09 +02:00
Christian Kamm
9b4e00c3fc
mirall.desktop.in: Remove superfluous lines #5767
2017-05-22 09:59:13 +02:00
Jenkins for ownCloud
97a4302b58
[tx-robot] updated from transifex
2017-05-22 02:22:15 +02:00
Jenkins for ownCloud
bac5121221
[tx-robot] updated from transifex
2017-05-21 02:22:14 +02:00
Jenkins for ownCloud
3462b1d1a3
[tx-robot] updated from transifex
2017-05-20 02:22:15 +02:00
Jenkins for ownCloud
54cc1cdcf7
[tx-robot] updated from transifex
2017-05-20 01:18:15 +02:00
Jenkins for ownCloud
0fd678e9a6
[tx-robot] updated from transifex
2017-05-19 02:22:22 +02:00
Jenkins for ownCloud
580762b4e6
[tx-robot] updated from transifex
2017-05-18 02:22:27 +02:00
Jenkins for ownCloud
c09a828f7b
[tx-robot] updated from transifex
2017-05-17 02:22:16 +02:00
Christian Kamm
c5a0ce5a43
Selective sync: Skip excluded folders when reading db
...
When a new folder becomes selective-sync excluded, we already mark it
and all its parent folders with _invalid_ etags to force rediscovery.
That's not enough however. Later calls to csync_statedb_get_below_path
could still pull data about the excluded files into the remote tree.
That lead to incorrect behavior, such as uploads happening for folders
that had been explicitly excluded from sync.
To fix the problem, statedb_get_below_path is adjusted to not read the
data about excluded folders from the database.
Currently we can't wipe this data from the database outright because we
need it to determine whether the files in the excluded folder can be
wiped away or not.
See owncloud/enterprise#1965
2017-05-16 13:58:45 +02:00
Jenkins for ownCloud
6d74601cf3
[tx-robot] updated from transifex
2017-05-16 02:22:31 +02:00
Jenkins for ownCloud
557931f207
[tx-robot] updated from transifex
2017-05-12 02:18:31 +02:00
Matthew Setter
84e9400742
Add explanation of how to replace local sync folder to FAQ
...
This fixes owncloud/documentation/issues/2923.
(cherry picked from commit 6580af65c1
)
2017-05-11 12:07:33 +02:00
Jenkins for ownCloud
45f831da4c
[tx-robot] updated from transifex
2017-05-11 02:18:31 +02:00
Jenkins for ownCloud
55dfbb9446
[tx-robot] updated from transifex
2017-05-10 02:18:36 +02:00
Markus Goetz
8e1422fb37
VERSION.cmake: This is 2.3.3 now
2017-05-09 12:23:52 +02:00
Jenkins for ownCloud
6a378a6362
[tx-robot] updated from transifex
2017-05-09 02:18:36 +02:00
Jocelyn Turcotte
879dadba78
Use QTemporaryDir in TestOwnSql
...
This will improve the cleanup and possibly help for #5366 .
2017-05-08 23:18:06 +02:00
Jocelyn Turcotte
5266720c62
Jenkinsfile: Also use 4 parallel jobs for linux builds
2017-05-08 23:18:06 +02:00
Jocelyn Turcotte
dca2b67338
Favor QtKeychain installed together with Qt
...
By default we will look in /usr/lib, which would prevent us from
using a different path for Qt as QtKeychain depends on Qt itself.
2017-05-08 23:18:06 +02:00
Markus Goetz
ea691aa2a0
ChangeLog: 2.3.2
2017-05-08 15:50:09 +02:00
Jenkins for ownCloud
9597c2b808
[tx-robot] updated from transifex
2017-05-08 02:18:29 +02:00
Jenkins for ownCloud
3817202b9c
[tx-robot] updated from transifex
2017-05-07 02:18:30 +02:00
Jenkins for ownCloud
ed960e5a71
[tx-robot] updated from transifex
2017-05-06 02:18:30 +02:00