Skip to content

Commit

Permalink
Bump SyncthingNative to v1.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Catfriend1 committed Oct 9, 2021
1 parent 9519174 commit ebaabb4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion SyncthingNative_update_and_build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ REM Script Consts.
SET CLEAN_BEFORE_BUILD=1
SET SKIP_CHECKOUT_SRC=0
SET USE_GO_DEV=0
SET DESIRED_SUBMODULE_VERSION=v1.18.2
SET DESIRED_SUBMODULE_VERSION=v1.18.3
SET GRADLEW_PARAMS=-q
REM
REM Runtime Variables.
Expand Down
7 changes: 3 additions & 4 deletions app/src/main/play/release-notes/en-GB/beta.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
* Syncthing v1.18.2
* Syncthing v1.18.3

Enhanced
--
- UI for untrusted devices, encrypted folder sharing (#725)
- Schedule a backup stop job when running on schedule (#837) @Helium314
-


Fixes
--
-
- Fix broadcast control via START/STOP commands (#850)


Others
Expand Down
4 changes: 2 additions & 2 deletions app/versions.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ext {
versionMajor = 1
versionMinor = 18
versionPatch = 2
versionWrapper = 1
versionPatch = 3
versionWrapper = 0
}
2 changes: 1 addition & 1 deletion syncthing/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
task buildNative(type: Exec) {
inputs.dir("$projectDir/src/")
outputs.dir("$projectDir/../app/src/main/jniLibs/")
executable = 'python3'
executable = 'python'
args = ['-u', './build-syncthing.py']
}

Expand Down
Submodule syncthing updated 68 files
+2 −2 .deepsource.toml
+2 −1 AUTHORS
+2 −2 README.md
+19 −2 build.go
+1 −1 cmd/stfindignored/main.go
+2 −2 cmd/syncthing/cli/utils.go
+9 −5 cmd/syncthing/main.go
+1 −1 cmd/syncthing/monitor.go
+26 −22 go.mod
+295 −248 go.sum
+1 −1 gui/black/assets/css/theme.css
+1 −1 gui/dark/assets/css/theme.css
+17 −17 gui/default/assets/lang/lang-bg.json
+3 −3 gui/default/assets/lang/lang-da.json
+1 −1 gui/default/assets/lang/lang-de.json
+20 −20 gui/default/assets/lang/lang-eu.json
+1 −1 gui/default/assets/lang/lang-fr.json
+5 −5 gui/default/assets/lang/lang-ja.json
+3 −3 gui/default/assets/lang/lang-zh-CN.json
+6 −6 gui/default/index.html
+1 −1 gui/default/syncthing/core/aboutModalView.html
+1 −0 gui/default/syncthing/core/syncthingController.js
+1 −1 gui/default/syncthing/folder/editFolderModalView.html
+2 −2 gui/default/syncthing/settings/settingsModalView.html
+8 −2 lib/api/api.go
+12 −0 lib/api/api_auth.go
+2 −2 lib/api/api_statics.go
+1 −1 lib/beacon/broadcast.go
+3 −3 lib/config/folderconfiguration.go
+1 −1 lib/config/observed.pb.go
+4 −9 lib/db/backend/backend.go
+13 −17 lib/db/lowlevel.go
+7 −11 lib/db/schemaupdater.go
+1 −1 lib/db/structs.pb.go
+24 −22 lib/db/transactions.go
+6 −7 lib/discover/local.go
+14 −17 lib/fs/tempname.go
+16 −5 lib/fs/tempname_test.go
+3 −3 lib/ignore/ignore.go
+1 −1 lib/model/folder_recvonly.go
+3 −3 lib/model/folder_sendrecv.go
+39 −4 lib/model/mocks/model.go
+12 −3 lib/model/model.go
+1 −1 lib/protocol/hello.go
+7 −4 lib/rand/random.go
+7 −0 lib/rand/random_test.go
+5 −7 lib/rand/securesource.go
+1 −5 lib/relay/protocol/packets.go
+1 −1 lib/syncthing/syncthing.go
+8 −6 lib/tlsutil/tlsutil.go
+11 −12 lib/tlsutil/tlsutil_test.go
+2 −2 lib/ur/failurereporting.go
+1 −1 man/stdiscosrv.1
+1 −1 man/strelaysrv.1
+1 −1 man/syncthing-bep.7
+1 −1 man/syncthing-config.5
+1 −1 man/syncthing-device-ids.7
+3 −1 man/syncthing-event-api.7
+1 −1 man/syncthing-faq.7
+1 −1 man/syncthing-globaldisco.7
+1 −1 man/syncthing-localdisco.7
+1 −1 man/syncthing-networking.7
+1 −1 man/syncthing-relay.7
+11 −5 man/syncthing-rest-api.7
+1 −1 man/syncthing-security.7
+6 −5 man/syncthing-stignore.5
+1 −1 man/syncthing-versioning.7
+1 −1 man/syncthing.1

0 comments on commit ebaabb4

Please sign in to comment.