Skip to content

Commit

Permalink
Update libsyncthing to v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Martchus committed Oct 1, 2019
1 parent d31c1b7 commit d50e78b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libsyncthing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set(META_PROJECT_TYPE library)
set(META_APP_NAME "Syncthing library")
set(META_APP_DESCRIPTION "Syncthing itself, built as a shared or static library")
set(META_PROJECT_VARNAME_UPPER LIB_SYNCTHING)
set(META_SYNCTHING_VERSION "v1.2.2")
set(META_SYNCTHING_VERSION "v1.3.0")

# add project files
set(HEADER_FILES interface.h)
Expand Down
2 changes: 1 addition & 1 deletion libsyncthing/go/src/github.com/syncthing/syncthing
Submodule syncthing updated 86 files
+3 −2 Dockerfile
+26 −1 README-Docker.md
+5 −0 README.md
+36 −20 build.go
+9 −3 c-bindings/c_bindings.go
+2 −1 cmd/stcli/main.go
+166 −120 cmd/stdiscosrv/database.pb.go
+2 −1 cmd/stfinddevice/main.go
+2 −1 cmd/strelaysrv/main.go
+57 −0 cmd/stupgrades/main.go
+20 −16 cmd/syncthing/main.go
+2 −1 cmd/syncthing/monitor.go
+28 −7 cmd/ursrv/main.go
+25 −20 go.mod
+80 −47 go.sum
+23 −9 gui/default/syncthing/core/syncthingController.js
+7 −4 lib/api/api.go
+5 −5 lib/api/api_auth.go
+6 −0 lib/api/api_auth_test.go
+95 −68 lib/api/api_csrf.go
+76 −15 lib/api/api_test.go
+90 −0 lib/beacon/beacon.go
+21 −104 lib/beacon/broadcast.go
+19 −99 lib/beacon/multicast.go
+1 −1 lib/config/commit_test.go
+32 −23 lib/config/config_test.go
+1 −0 lib/config/optionsconfiguration.go
+47 −0 lib/config/tuning.go
+26 −0 lib/config/tuning_test.go
+11 −9 lib/config/wrapper.go
+2 −1 lib/connections/lan_test.go
+82 −30 lib/connections/limiter.go
+163 −3 lib/connections/limiter_test.go
+14 −20 lib/connections/quic_dial.go
+17 −38 lib/connections/quic_listen.go
+5 −3 lib/connections/service.go
+95 −13 lib/db/lowlevel.go
+1 −1 lib/db/set_test.go
+363 −284 lib/db/structs.pb.go
+5 −3 lib/discover/global.go
+6 −5 lib/discover/global_test.go
+21 −19 lib/discover/local.go
+87 −74 lib/discover/local.pb.go
+3 −2 lib/discover/local_test.go
+2 −2 lib/events/debug.go
+95 −54 lib/events/events.go
+14 −14 lib/events/events_test.go
+12 −1 lib/ignore/ignore.go
+19 −0 lib/ignore/ignore_test.go
+40 −28 lib/model/folder.go
+3 −2 lib/model/folder_recvonly.go
+1 −0 lib/model/folder_recvonly_test.go
+3 −2 lib/model/folder_sendonly.go
+26 −28 lib/model/folder_sendrecv.go
+39 −55 lib/model/folder_sendrecv_test.go
+7 −5 lib/model/folder_summary.go
+5 −3 lib/model/folderstate.go
+23 −17 lib/model/model.go
+6 −6 lib/model/model_test.go
+4 −2 lib/model/progressemitter.go
+13 −5 lib/model/progressemitter_test.go
+6 −6 lib/model/requests_test.go
+42 −33 lib/model/sharedpullerstate.go
+6 −1 lib/model/testutils_test.go
+997 −719 lib/protocol/bep.pb.go
+92 −63 lib/protocol/deviceid_test.pb.go
+9 −3 lib/rc/rc.go
+3 −1 lib/scanner/walk.go
+45 −45 lib/scanner/walk_test.go
+4 −4 lib/syncthing/auditservice.go
+14 −7 lib/syncthing/auditservice_test.go
+22 −20 lib/syncthing/syncthing.go
+3 −2 lib/syncthing/syncthing_test.go
+9 −8 lib/syncthing/utils.go
+4 −4 lib/syncthing/verboseservice.go
+4 −0 lib/upgrade/upgrade_common.go
+9 −2 lib/ur/usage_report.go
+5 −5 lib/watchaggregator/aggregator.go
+16 −8 lib/watchaggregator/aggregator_test.go
+4 −3 test/filetype_test.go
+10 −4 test/h1/config.xml
+12 −5 test/h2/config.xml
+10 −4 test/h3/config.xml
+3 −2 test/override_test.go
+11 −0 test/reset_test.go
+4 −3 test/symlink_test.go

0 comments on commit d50e78b

Please sign in to comment.