Jakob Borg
05450ca034
readme: More build badges
2017-02-05 18:46:17 +01:00
Jakob Borg
c005e61151
snapcraft: s/snap/prime ( fixes #3955 )
2017-02-05 15:03:36 +01:00
Jakob Borg
63e0b53e8b
build: Set snap grade "stable" for release candidates
2017-02-05 14:42:29 +01:00
Jakob Borg
1f586c0fdd
gui, man: Update docs & translations
2017-02-05 13:54:49 +01:00
Jakob Borg
f1a073501f
lib/fs: A nil MtimeFS is valid ( fixes #3958 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3961
2017-02-05 12:54:08 +00:00
Jakob Borg
a72f5379fb
jenkins: Build natively on Solaris
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3957
2017-02-05 11:20:15 +00:00
Jakob Borg
8cccecceba
lib/events: Speed up event polling loop slightly (ref #3952 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3954
2017-02-04 15:53:39 +00:00
Jakob Borg
3eb7a9373a
gui, lib/config: Add notification about new release channels
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3945
2017-02-04 09:45:17 +00:00
Jakob Borg
20f8b4fd57
gui: Wording of auto upgrade selections
2017-01-30 23:14:45 +01:00
Jakob Borg
1c9361a818
cmd/syncthing: Implement "release candidate" logic
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3943
LGTM: AudriusButkevicius
2017-01-30 21:33:07 +00:00
Jakob Borg and Audrius Butkevicius
35e87e23fd
cmd/syncthing, gui, lib/config, lib/upgrade: Add option to upgrade to pre-releases
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3939
2017-01-27 12:17:06 +00:00
Jakob Borg
9833d13762
gui: Don't trim space on the password field ( fixes #3935 )
2017-01-26 08:13:41 +01:00
Jakob Borg
6ec7d711d8
authors: Add benshep
2017-01-25 19:20:52 +01:00
Jakob Borg
22a4d49ed0
cmd/syncthing: Handle -logfile again ( fixes #3931 )
...
The monitor process should not set STNORESTART as this indicates the
intention from the user. Setting STMONITORED is enough, as this tells
the next Syncthing instance that it is running under the monitor
process.
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3932
2017-01-25 07:33:35 +00:00
Jakob Borg and Audrius Butkevicius
ee36e2d46d
lib/weakhash: Limit number of hits for any given weakhash
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3925
2017-01-24 08:26:45 +00:00
Jakob Borg
de49ea594a
lib/upnp: Wrong order of internal/external port after OnlyPermanentLeasesSupported ( fixes #3924 )
2017-01-23 23:17:02 +01:00
Jakob Borg and Audrius Butkevicius
6d4fa27ea7
cmd/syncthing: Report real hashing performance, including weakhash
...
Instead of
[I6KAH] 19:05:56 INFO: Single thread hash performance is 359 MB/s using minio/sha256-simd (354 MB/s using crypto/sha256).
it now says
[I6KAH] 19:06:16 INFO: Single thread SHA256 performance is 359 MB/s using minio/sha256-simd (354 MB/s using crypto/sha256).
[I6KAH] 19:06:17 INFO: Actual hashing performance is 299.01 MB/s
which is more informative. This is also the number it reports in usage
reporting.
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3918
2017-01-23 21:56:43 +00:00
Jakob Borg
9587b89d9d
gui, man: Update docs & translations
2017-01-23 22:03:08 +01:00
Jakob Borg
79c7f7193b
lib/upnp: Remove unnecessary error allocation
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3923
2017-01-23 21:02:55 +00:00
Jakob Borg
bd55ec79d2
goals, readme: Add updated project goals
2017-01-19 18:12:40 +01:00
Jakob Borg
1313ba8c0a
gui, vendor: Update license, copyright for github.com/chmduquesne/rollinghash
2017-01-19 15:59:39 +01:00
Jakob Borg
842e873a94
cmd/syncthing: Fix -logfile/-no-restart test on non-Windows.
2017-01-18 18:59:48 +01:00
Jakob Borg
d4c4b1fb4c
vendor: Temporarily patch github.com/chmduquesne/rollinghash
...
To avoid allocations in the hasher. PR files, should be available for
update soon.
2017-01-18 18:45:29 +01:00
Jakob Borg
68f1c6ccab
lib/scanner: Avoid per iteration allocations in Blocks()
...
Resetting the io.LimitReader is better than creating a new one on every
iteration.
2017-01-18 18:43:00 +01:00
Jakob Borg
bd1c29ee32
lib/scanner, vendor: Fix previous commit
...
Can't do what I did, as the rolling function is not the same as the
non-rolling one. Instead this uses an improved version of the rolling
adler32 to accomplish the same thing. (PR filed on upstream, so should
be able to use that directly in the future.)
2017-01-18 11:57:01 +01:00
Jakob Borg
9b1c592fb7
lib/scanner: Speed up weak hash
...
The rolling version of adler32 is just a wrapper around the standard
hash/adler32 when used in a non-rolling fashion, but it's inefficient as
it allocates a new hash instance for every Write(). This uses the
default version instead in the block hasher, and adds a test to verify
the result is the same as they were before. It reduces allocations by
88% and increases speed about 5%.
benchmark old ns/op new ns/op delta
BenchmarkHashFile-8 64434698 61303647 -4.86%
benchmark old MB/s new MB/s speedup
BenchmarkHashFile-8 276.65 290.78 1.05x
benchmark old allocs new allocs delta
BenchmarkHashFile-8 1238 150 -87.88%
benchmark old bytes new bytes delta
BenchmarkHashFile-8 17877363 49292 -99.72%
2017-01-18 10:33:17 +01:00
Jakob Borg
f36f00e87b
gui: Update translation base (lang-en) ( fixes #3909 )
2017-01-17 15:58:35 +01:00
Jakob Borg
c20c17e3c6
gui, man: Update docs & translations
2017-01-10 08:41:14 +01:00
Jakob Borg
fe377a166a
authors: Update adelq
2017-01-07 17:56:46 +01:00
Jakob Borg
5770d80bf9
authors: Add adelq
2017-01-07 17:54:41 +01:00
Jakob Borg
7a16dbd31d
lib/scanner: Fix previous commit: don't stop scan completely
2017-01-05 15:05:49 +01:00
Jakob Borg and Audrius Butkevicius
926c88cfc4
lib/scanner: Never, ever descend into symlinks (ref #3857 )
...
On Windows we would descend into SYMLINKD type links when we scanned
them successfully, as we would return nil from the walk function and the
filepath.Walk iterator apparently thought it OK to descend into the
symlinked directory.
With this change we always return filepath.SkipDir no matter what.
Tested on Windows 10 as admin, does what it should.
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3875
2017-01-05 13:26:29 +00:00
Jakob Borg and Audrius Butkevicius
920274bce4
lib/db: Don't panic on unknown folder in ListFolders ( fixes #3584 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3869
2017-01-04 10:34:52 +00:00
Jakob Borg
2ebd6ad77f
lib/scanner: Don't stop byte counter ticks before scan is done
2017-01-03 15:03:32 +01:00
Jakob Borg
79f7f50c4d
authors: Add Kudalufi
2017-01-03 09:24:29 +01:00
Jakob Borg and Audrius Butkevicius
987718baf8
vendor: Update github.com/gogo/protobuf
...
Also tweaks the proto definitions:
- [packed=false] on the block_indexes field to retain compat with
v0.14.16 and earlier.
- Uses the vendored protobuf package in include paths.
And, "build.go setup" will install the vendored protoc-gen-gogofast.
This should ensure that a proto rebuild isn't so dependent on whatever
version of the compiler and package the developer has installed...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3864
2017-01-03 00:16:21 +00:00
Jakob Borg
4fb9c143ac
authors: Update ProactiveServices
2017-01-02 15:12:57 +01:00
Jakob Borg and Audrius Butkevicius
ec62888539
lib/connections: Allow on the fly changes to rate limits ( fixes #3846 )
...
Also replaces github.com/juju/ratelimit with golang.org/x/time/rate as
the latter supports changing the rate on the fly.
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3862
2017-01-02 11:29:20 +00:00
Jakob Borg
8c34a76f7a
man: refresh.sh requires bash
2017-01-01 20:45:52 +01:00
Jakob Borg
6809d38cde
lib/protocol: Revert protobuf encoder changes in v0.14.17 ( fixes #3855 )
...
The protobuf encoder now produces packed arrays for things like []int32,
which is actually correct according to the proto3 spec. However
Syncthing v0.14.16 and earlier doesn't support this. This reverts the
encoding change, but keeps the updated decoder so that we are both more
compatible with other proto3 implementations and can move to the updated
encoder in the future.
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3856
2017-01-01 17:19:00 +00:00
Jakob Borg
8e8b867fba
authors: Add mpx
2017-01-01 13:28:33 +01:00
Jakob Borg
0a118d2979
lib/config, lib/model: Temporarily disable bad tests (ref #3834 , #3843 )
2017-01-01 13:27:18 +01:00
Jakob Borg
eb14f85a57
vendor: Update github.com/syndtr/goleveldb
2016-12-28 12:19:14 +01:00
Jakob Borg
c69c3c7c36
lib/sha256: Smoke test the implementation on startup (hello OpenSUSE!)
2016-12-28 12:15:51 +01:00
Jakob Borg
54911d44c5
gui: s/foldersendonly.html/foldertypes.html
2016-12-27 11:29:12 +01:00
Jakob Borg
c765f7be8d
gui, man: Update docs and translations
2016-12-26 14:23:55 +01:00
Jakob Borg
44bdaf3ac2
cmd/syncthing: Add -reset-deltas option to reset delta index IDs
...
Also rename and clarify the description of -reset-database (formerly
-reset).
2016-12-26 13:49:51 +01:00
Jakob Borg
fc16e49cb0
Merge branch 'v0.14.16-hotfix'
...
* v0.14.16-hotfix:
gui, man: Update docs & translations
lib/model: Allow empty subdirs in scan request (fixes #3829 )
lib/model: Don't send symlinks to old devices that can't handle them (fixes #3802 )
lib/model: Accept scan requests of paths ending in slash (fixes #3804 )
gui: Avoid pause between event polls (ref #3527 )
2016-12-24 20:12:53 +01:00
Jakob Borg
f5a310ad64
Revert "lib/model: Handle filename conflicts on Windows."
...
This reverts commit 01e50eb3fa .
2016-12-23 11:10:58 +01:00
Jakob Borg
722b81c6f0
gui, man: Update docs & translations
2016-12-21 19:46:28 +01:00
Jakob Borg
f0efa2b974
lib/model: Allow empty subdirs in scan request ( fixes #3829 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3833
2016-12-21 19:45:38 +01:00
Jakob Borg and Jakob Borg
dd7bb6c4b8
lib/model: Fix tests, clean up pool usage in protocol
2016-12-21 14:53:45 +01:00
Jakob Borg and Jakob Borg
d41c131364
build: Enable gometalinter "gosimple" check, improve build.go
2016-12-21 14:53:45 +01:00
Jakob Borg and Jakob Borg
47f22ff3e5
build: Enable gometalinter "unconvert" check
2016-12-21 14:53:45 +01:00
Jakob Borg and Jakob Borg
744c2e82b5
build: Enable gometalinter "staticcheck" check
2016-12-21 14:53:45 +01:00
Jakob Borg and Jakob Borg
ead7281c20
build: Enable gometalinter "unused" check
2016-12-21 14:53:45 +01:00
Jakob Borg and Audrius Butkevicius
5c067661f4
lib/model: Consistently show folder description in startup messages
...
Since we anyway need the folderConfig for this I'm skipping the copying
of all it's attributes that rwfolder did and just keeping the original
around instead.
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3825
2016-12-21 11:23:20 +00:00
Jakob Borg and Audrius Butkevicius
226da976dc
lib/model: Allow empty subdirs in scan request ( fixes #3829 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3833
2016-12-21 10:33:07 +00:00
Jakob Borg
d7d5687faa
lib/protocol: Warnln should have been Warnf
2016-12-21 10:43:12 +01:00
Jakob Borg
21eb098dd2
vendor: Update github.com/minio/sha256-simd, CPU detection (Linux)
2016-12-20 09:20:28 +01:00
Jakob Borg
2f770f8bfb
lib/config, lib/protocol: Improve folder description with empty label
2016-12-19 10:12:06 +01:00
Jakob Borg
f09698d845
gui: Add missing strings to lang-en.json
2016-12-18 22:29:43 +01:00
Jakob Borg
3fbcb024a7
gui: Update link to send only documentation page
2016-12-18 22:29:43 +01:00
Jakob Borg and Audrius Butkevicius
b8c1c0e048
cmd/syncthing: Enable better crypto, print negotiated cipher suite
...
This adds support for AES_256_GCM_SHA384 (in there since Go 1.5, a bit
of a shame we missed it) and ChaCha20-Poly1305 (if built with Go 1.8;
ignored on older Gos).
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3822
2016-12-18 21:07:44 +00:00
Jakob Borg
2d47242d54
jenkins: Don't clean out when building with old Go (nukes coverage data)
2016-12-18 19:58:46 +01:00
Jakob Borg
66a7829eee
jenkins: Also try build with old Go version, if available
2016-12-18 19:25:27 +01:00
Jakob Borg and Audrius Butkevicius
9c67bd2550
lib/connections: Fix port fixup in Go 1.8 ( fixes #3817 )
...
The test for the error string is fragile, and the error string changed
in Go 1.8 so the relevant part is no longer a prefix. This covers it
with a test though, so it should be fine in the future as well.
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3818
2016-12-18 11:28:18 +00:00
Jakob Borg and Audrius Butkevicius
f67c5a2fd6
lib/model: Don't send symlinks to old devices that can't handle them ( fixes #3802 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3811
2016-12-17 19:48:33 +00:00
Jakob Borg
0437f6dd66
lib/model: Don't send symlinks to old devices that can't handle them ( fixes #3802 )
2016-12-17 12:39:22 +01:00
Jakob Borg
11b35d650d
lib/model: Accept scan requests of paths ending in slash ( fixes #3804 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3805
2016-12-17 12:39:22 +01:00
Jakob Borg
b279e261a1
gui: Avoid pause between event polls (ref #3527 )
...
We lose important events due to the frequency of ItemStarted /
ItemFinished events.
2016-12-17 12:39:22 +01:00
Jakob Borg
263402f80a
cmd/stcli: Add copyright headers to satisfy check
2016-12-17 12:28:59 +01:00
Jakob Borg
920a83ec7a
cmd/stcli: Fix metalint ineffasign complaint
2016-12-17 10:51:48 +01:00
Jakob Borg
3c2ac3522c
cmd/stcli: Update for new folder type
2016-12-17 01:44:18 +01:00
Jakob Borg
9fdaa637a8
vendor: Add github.com/AudriusButkevicius/cli
2016-12-17 01:33:17 +01:00
Jakob Borg
81a9d7f2b9
cmd/stcli: Make it build again
2016-12-17 01:33:17 +01:00
Jakob Borg
653be136ee
gui: Update lang-en.json
2016-12-17 00:59:25 +01:00
Jakob Borg
abb8a1914a
lib/model: Accept scan requests of paths ending in slash ( fixes #3804 )
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3805
2016-12-16 11:21:22 +00:00
Jakob Borg
163d335078
gui: Update lang-en.json
2016-12-16 09:42:13 +01:00
Jakob Borg
bb15776ae6
gui: Avoid pause between event polls (ref #3527 )
...
We lose important events due to the frequency of ItemStarted /
ItemFinished events.
2016-12-14 10:31:16 +01:00
Jakob Borg
dde9d4c9eb
lib/rc: Remove pause to aggregate events (ref #3527 )
2016-12-14 10:24:36 +01:00
Jakob Borg
1ef75be1c6
gui, man: Update docs & translations
2016-12-13 11:29:40 +01:00
Jakob Borg
3582783972
lib/model, lib/osutil: Verify target directory before pulling / requesting
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3798
2016-12-13 10:24:10 +00:00
Jakob Borg
5070d52f2f
lib/model: Add benchmark for model.Request()
2016-12-09 23:14:56 +01:00
Jakob Borg and Audrius Butkevicius
7b07ed6580
lib/model, lib/protocol, lib/scanner: Include symlink target in index, pull symlinks synchronously
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3792
2016-12-09 18:02:18 +00:00
Jakob Borg
a9b03de99a
gui, lib/db: Correct space accounting of symlinks, for "out of sync" status
2016-12-09 10:38:36 +01:00
Jakob Borg
a7f7058636
vendor: Update github.com/gobwas/glob (bugfix)
2016-12-07 09:25:58 +01:00
Jakob Borg
2fd1dca905
lib/connections: Fix odd logging, forgot to call function
2016-12-02 12:56:14 +01:00
Jakob Borg and Audrius Butkevicius
e3cf718998
lib/ignore: Add central check for internal files, used in scanning, pulling and requests
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3779
2016-12-01 14:00:11 +00:00
Jakob Borg
3266aae1c3
lib/protocol: Apply input filtering on file names
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3775
2016-12-01 12:35:32 +00:00
Jakob Borg
63194a37f6
lib/model: Double check results in filepath.Join where needed
...
Wherever we have untrusted relative paths, make sure they are not
escaping their folder root.
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3776
2016-12-01 12:35:11 +00:00
Jakob Borg
48a229a0cd
lib/model: Temp names from all platforms should be recognized as such
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3777
LGTM: AudriusButkevicius
2016-11-30 21:23:24 +00:00
Jakob Borg
e4db86836b
lib/model: Locking in the request test
2016-11-30 13:11:06 +01:00
Jakob Borg
913a85c571
lib/model: Add simple file syncing test
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3772
2016-11-30 09:32:28 +00:00
Jakob Borg
ed4f6fc4b3
lib/connections, lib/model: Connection service should expose a single interface
...
Makes testing easier, which we'll need
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3771
2016-11-30 07:54:20 +00:00
Jakob Borg
9da422f1c5
gui, man: Update docs & translations
2016-11-29 11:56:02 +01:00
Jakob Borg and Audrius Butkevicius
fc1430aa92
lib/fs: The interface and basicfs
...
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3748
2016-11-24 12:07:14 +00:00
Jakob Borg
3cde608eda
lib/db: Fix ineffassign lint issue
2016-11-24 12:08:44 +01:00
Jakob Borg
2898552f4b
build: Setup should insteall deadcode metalinter
2016-11-24 12:05:04 +01:00
Jakob Borg
911c148c71
build: Improve setup, add metalint ineffasign
2016-11-24 11:33:43 +01:00