Jakob Borg
e99be02055
lib/model: Don't panic if block size in index is larger than protocol block size
...
This doesn't happen today, but it might in the future if the block size
were increased or made variable and we were talking to a client from the
future.
2018-02-24 07:34:23 -05:00
Matic Potočnik
1901a5a9f4
all: Fix typos ( #4772 )
...
Skip-check: authors
2018-02-24 08:51:29 +01:00
Jakob Borg
a27032f09e
cmd/strelaysrv: Don't patch the default HTTP client ( fixes #4745 )
2018-02-21 09:56:04 -05:00
Jakob Borg
5e041dca9f
cmd/strelaypoolsrv: Return better error codes and messages ( #4770 )
...
The current 500 "test failed" looks and sounds like a problem in the
relay pool server, while it actually indicates a problem on the
announcing side. Instead use 400 "connection test failed" to indicate
that the request was bad and what was the test.
2018-02-21 12:53:49 +01:00
Jakob Borg
c9ec6159e8
lib/fs, vendor: s/zillode/Zillode/
2018-02-21 08:27:33 +01:00
Jakob Borg
5b17aae1b2
cmd/syncthing: Fix help text for STRECHECKDBEVERY ( fixes #4764 )
2018-02-21 08:26:57 +01:00
Jakob Borg
5931231a32
gui, man: Update docs & translations
2018-02-21 07:45:16 +01:00
Simon Frei
6802505dda
lib/fs: Fix MkdirAll failure due to \\?\ ( fixes #4762 ) ( #4763 )
2018-02-16 15:19:20 +01:00
Jakob Borg
7a92f6c6b1
lib/db: Don't panic on negative counts ( #4761 )
...
* lib/db: Don't panic on negative counts (fixes #4659 )
So, negative counts should never happen and hence the original idea to
panic. However, this sucks as the panic will happen in a folder runner,
be automatically swallowed by suture, and the runner gets restarted but
now we are in a bad state. (Related: #4758 )
At the time of writing the global list is somewhat in flux (we've
changed how ignored files are handled, invalid bits, etc.) and I think
that can cause unusual conditions here. Hence just fixing up the numbers
instead until the next full recount.
2018-02-14 11:25:34 +01:00
Simon Frei
68c1b2dd47
all: Revert simultaneously walk fs and db on scan ( fixes #4756 ) ( #4757 )
...
This reverts commit 6d3f9d5154
.
2018-02-14 08:59:46 +01:00
Jakob Borg
b57c9b6af5
gui, man: Update docs & translations
2018-02-14 07:45:17 +01:00
Jakob Borg
c120c3a403
lib/scanner: Error handling in walk function ( fixes #4753 ) ( #4754 )
2018-02-13 10:02:07 +00:00
Jakob Borg
2bbd2d6ed1
Merge branch 'release'
...
* release:
lib/osutil: Fix priority lowering on Windows
lib/osutil: Don't attempt to reduce our niceness level (fixes #4681 )
lib/osutil: Check PGID before trying to set it (fixes #4679 )
2018-02-12 15:27:27 +01:00
Simon Frei
4955297bf6
lib/protocol: Invalid files should always lose ( #4747 )
2018-02-10 19:40:57 +01:00
Simon Frei
6d3f9d5154
all: Simultaneously walk fs and db on scan ( fixes #2571 , fixes #4573 ) ( #4584 )
...
When scanner.Walk detects a change, it now returns the new file info as well as the old file info. It also finds deleted and ignored files while scanning.
Also directory deletions are now always committed to db after their children to prevent temporary failure on remote due to non-empty directory.
2018-02-10 16:56:53 +01:00
Jakob Borg
b97d5bcca8
Remove KCP ( fixes #4737 ) ( #4741 )
2018-02-09 11:40:57 +01:00
Alexandre Viau
97068c10f3
vendor: Add missing vendor licenses
2018-02-08 16:52:15 +00:00
Jakob Borg
8cdab7231a
meta: Fix authors check
2018-02-07 17:32:26 +01:00
Kropekk
bc7639b0ff
lib/versioner: Fix external versioner command specification on Windows ( fixes #4560 )
2018-02-07 14:12:27 +00:00
Simon Frei
3f4f6d5787
gui: Handle paused folders and fix translation strings for fs watcher (ref #4713 ) ( #4740 )
2018-02-07 13:46:27 +01:00
Jakob Borg
c17547159e
gui, man: Update docs & translations
2018-02-07 07:45:17 +01:00
Simon Frei
8a3e584c19
lib/fs: Introduce walkfs debug facility ( #4712 )
2018-02-05 11:07:56 +01:00
Jakob Borg
043b04d8a6
github: I want to review changes to the AUTHORS file and top level READMEs
...
Also move the issue template stuff for less clutter
2018-02-04 22:54:38 +01:00
Simon Frei
f87f13081b
all: Display fs watcher status and retry starting it (ref #4552 ) ( #4713 )
2018-02-04 22:46:24 +01:00
Jakob Borg
649d4cf7b0
dockerfile: Add Dockerfile ( #4733 )
...
This adds a multi stage build Dockerfile. The end state is equivalent to
the current syncthing/docker repository (which will be retired).
2018-02-04 22:43:14 +01:00
Simon Frei
c7cf361a96
vendor: Update github.com/zillode/notify ( #4734 )
2018-02-04 22:37:32 +01:00
Jakob Borg
98f2875b22
lib/fs: Further unflake watch tests ( #4735 )
2018-02-04 22:25:59 +01:00
Jakob Borg
2fdf9bc55d
test: Mend the transfer benchmark
2018-02-03 10:29:05 +01:00
Jakob Borg
c0ab669142
gui, man: Update docs & translations
2018-01-31 07:45:16 +01:00
Simon Frei
14a5561e43
lib/db: Fix benchmarks
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4708
2018-01-28 11:26:01 +00:00
Jakob Borg
0fe3ae7c22
lib/fs: Unflake watch tests ( fixes #4687 )
...
This removes a number of timing related things, leaving just the total
test timeout now bumped to one minute. Normally we get the filesystem
events within a second or so, so this doesn't affect the test time in
the successfull case. If we don't actually get the events we expect
within a minute I think we are legitimately in "failed" territory.
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4715
LGTM: imsodin, AudriusButkevicius
2018-01-28 10:44:43 +00:00
Jakob Borg
5d0eb80204
lib/protocol: Disable broken KCP benchmark
2018-01-28 10:41:03 +01:00
Jakob Borg
441230ff77
cmd/stdiscosrc: Handle address family indicator on other schemes than tcp
2018-01-28 10:24:48 +01:00
Simon Frei
a0514bb1a7
gui: Add missing translation string to log viewer
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4714
2018-01-28 08:40:06 +00:00
Simon Frei
80079e8322
lib/fs: Use correct facility name
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4710
2018-01-27 12:52:48 +00:00
Simon Frei
ae760798e1
gui: Display rescan button when out of sync and remove deprecated folder state
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4704
2018-01-27 09:10:11 +00:00
Simon Frei
364f61bda6
lib/db: Update global counts on invalidation ( fixes #4701 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4702
2018-01-27 09:09:13 +00:00
Jakob Borg
050f9f8091
all: Mac OS X is now called macOS
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4694
LGTM: imsodin
2018-01-27 09:07:19 +00:00
Jakob Borg
e0931e201e
lib/config: Reject empty folder IDs
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4698
LGTM: imsodin
2018-01-27 09:06:37 +00:00
Jakob Borg
20e05cdcd0
authors: Update PrototypeNM1
2018-01-25 20:42:06 +01:00
Jakob Borg
4afe0f407a
lib/config: Verify that we reject invalid device IDs when deserializing JSON
2018-01-24 09:25:41 +01:00
Jakob Borg
232c1172e5
gui, man: Update docs & translations
2018-01-24 07:45:16 +01:00
Nicholas Rishel
a505231774
lib/scanner: Support walking a symlink root (ref #4353 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4666
LGTM: AudriusButkevicius, imsodin
2018-01-24 00:05:47 +00:00
Simon Frei
885e3f19bd
lib/ignores: Update lines even if patterns didn't change ( fixes #4689 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4690
2018-01-20 07:52:57 +00:00
Simon Frei
93b5180e62
lib/model: Refactor Index/IndexUpdate
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4688
LGTM: calmh, AudriusButkevicius
2018-01-19 14:33:16 +00:00
Audrius Butkevicius
27d5b17096
lib/osutil: Fix priority lowering on Windows
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4686
2018-01-19 07:21:05 +01:00
Jakob Borg
c2119c9e62
lib/osutil: Don't attempt to reduce our niceness level ( fixes #4681 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4682
2018-01-19 07:20:58 +01:00
Jakob Borg
91210cbb49
lib/osutil: Check PGID before trying to set it ( fixes #4679 )
...
Fixes "permission denied" return when are already process group /
session leader.
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4678
2018-01-19 07:20:47 +01:00
Audrius Butkevicius
8e9c9b9553
lib/osutil: Fix priority lowering on Windows
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4686
2018-01-18 17:03:24 +00:00
Simon Frei
fae2ca8458
lib/db: Do not modify underlying array of argument
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4685
2018-01-18 12:40:43 +00:00