Skip to content

Commit 25525f0

Browse files
authored
Modify: Syncthing.Syncthing version 2.0.3 (microsoft#289319)
1 parent 48bc535 commit 25525f0

4 files changed

Lines changed: 26 additions & 46 deletions

File tree

manifests/s/Syncthing/Syncthing/2.0.3/Syncthing.Syncthing.installer.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Created with komac v2.12.1
1+
# Created using wingetcreate 1.10.3.0
22
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json
33

44
PackageIdentifier: Syncthing.Syncthing
@@ -14,17 +14,20 @@ ReleaseDate: 2025-08-22
1414
Installers:
1515
- Architecture: x86
1616
NestedInstallerFiles:
17-
- RelativeFilePath: syncthing-windows-386-v2.0.3/syncthing.exe
17+
- RelativeFilePath: syncthing-windows-386-v2.0.3\syncthing.exe
18+
PortableCommandAlias: syncthing
1819
InstallerUrl: https://github.com/syncthing/syncthing/releases/download/v2.0.3/syncthing-windows-386-v2.0.3.zip
1920
InstallerSha256: 2D4A8E9691B6D3546B49C151A0723D2012B6E1B9E54E124D95B6FE0A577FFBB3
2021
- Architecture: x64
2122
NestedInstallerFiles:
22-
- RelativeFilePath: syncthing-windows-amd64-v2.0.3/syncthing.exe
23+
- RelativeFilePath: syncthing-windows-amd64-v2.0.3\syncthing.exe
24+
PortableCommandAlias: syncthing
2325
InstallerUrl: https://github.com/syncthing/syncthing/releases/download/v2.0.3/syncthing-windows-amd64-v2.0.3.zip
2426
InstallerSha256: 53166F4F1BD1AC4C956F866F063F156D334940604DE8FE254F9105ED595792D1
2527
- Architecture: arm64
2628
NestedInstallerFiles:
27-
- RelativeFilePath: syncthing-windows-arm64-v2.0.3/syncthing.exe
29+
- RelativeFilePath: syncthing-windows-arm64-v2.0.3\syncthing.exe
30+
PortableCommandAlias: syncthing
2831
InstallerUrl: https://github.com/syncthing/syncthing/releases/download/v2.0.3/syncthing-windows-arm64-v2.0.3.zip
2932
InstallerSha256: 14BE9306D4ADEC027457E7F3BA68DA6B13B218F351CC3CFE8B8D9F8511B13825
3033
ManifestType: installer

manifests/s/Syncthing/Syncthing/2.0.3/Syncthing.Syncthing.locale.en-US.yaml

Lines changed: 15 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Created with komac v2.12.1
1+
# Created using wingetcreate 1.10.3.0
22
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json
33

44
PackageIdentifier: Syncthing.Syncthing
@@ -12,7 +12,7 @@ Author: The Syncthing Foundation
1212
PackageName: Syncthing
1313
PackageUrl: https://github.com/syncthing/syncthing
1414
License: MPL-2.0
15-
LicenseUrl: https://github.com/syncthing/syncthing/blob/HEAD/LICENSE
15+
LicenseUrl: https://github.com/syncthing/syncthing/blob/v2.0.3/LICENSE
1616
Copyright: Copyright © 2014-2025 the Syncthing Authors.
1717
ShortDescription: Open Source Continuous File Synchronization
1818
Description: |-
@@ -37,51 +37,26 @@ Tags:
3737
- synchronization
3838
ReleaseNotes: |-
3939
Major changes in 2.0
40-
- Database backend switched from LevelDB to SQLite. There is a migration on
41-
first launch which can be lengthy for larger setups. The new database is
42-
easier to understand and maintain and, hopefully, less buggy.
43-
- The logging format has changed to use structured log entries (a message
44-
plus several key-value pairs). Additionally, we can now control the log
45-
level per package, and a new log level WARNING has been inserted between
46-
INFO and ERROR (which was previously known as WARNING...). The INFO level
47-
has become more verbose, indicating the sync actions taken by Syncthing. A
48-
new command line flag --log-level sets the default log level for all
49-
packages, and the STTRACE environment variable and GUI has been updated
50-
to set log levels per package. The --verbose and --logflags command
51-
line options have been removed and will be ignored if given.
52-
- Deleted items are no longer kept forever in the database, instead they are
53-
forgotten after fifteen months. If your use case require deletes to take
54-
effect after more than a fifteen month delay, set the
55-
--db-delete-retention-interval command line option or corresponding
56-
environment variable to zero, or a longer time interval of your choosing.
57-
- Modernised command line options parsing. Old single-dash long options are
58-
no longer supported, e.g. -home must be given as --home. Some options
59-
have been renamed, others have become subcommands. All serve options are
60-
now also accepted as environment variables. See syncthing --help and
61-
syncthing serve --help for details.
62-
- Rolling hash detection of shifted data is no longer supported as this
63-
effectively never helped. Instead, scanning and syncing is faster and more
64-
efficient without it.
40+
- Database backend switched from LevelDB to SQLite. There is a migration on first launch which can be lengthy for larger setups. The new database is easier to understand and maintain and, hopefully, less buggy.
41+
- The logging format has changed to use structured log entries (a message plus several key-value pairs). Additionally, we can now control the log level per package, and a new log level WARNING has been inserted between INFO and ERROR (which was previously known as WARNING...). The INFO level has become more verbose, indicating the sync actions taken by Syncthing. A new command line flag `--log-level` sets the default log level for all packages, and the `STTRACE` environment variable and GUI has been updated to set log levels per package. The `--verbose` and `--logflags` command line options have been removed and will be ignored if given.
42+
- Deleted items are no longer kept forever in the database, instead they are forgotten after fifteen months. If your use case require deletes to take effect after more than a fifteen month delay, set the `--db-delete-retention-interval` command line option or corresponding environment variable to zero, or a longer time interval of your choosing.
43+
- Modernised command line options parsing. Old single-dash long options are no longer supported, e.g. `-home` must be given as `--home`. Some options have been renamed, others have become subcommands. All serve options are now also accepted as environment variables. See `syncthing --help` and `syncthing serve --help` for details.
44+
- Rolling hash detection of shifted data is no longer supported as this effectively never helped. Instead, scanning and syncing is faster and more efficient without it.
6545
- A "default folder" is no longer created on first startup.
66-
- Multiple connections are now used by default between v2 devices. The new
67-
default value is to use three connections: one for index metadata and two
68-
for data exchange.
69-
- The following platforms unfortunately no longer get prebuilt binaries for
70-
download at syncthing.net and on GitHub, due to complexities related to
71-
cross compilation with SQLite:
46+
- Multiple connections are now used by default between v2 devices. The new default value is to use three connections: one for index metadata and two for data exchange.
47+
- The following platforms unfortunately no longer get prebuilt binaries for download at syncthing.net and on GitHub, due to complexities related to cross compilation with SQLite:
7248
- dragonfly/amd64
7349
- illumos/amd64 and solaris/amd64
7450
- linux/ppc64
7551
- netbsd/*
7652
- openbsd/386 and openbsd/arm
7753
- windows/arm
78-
- The handling of conflict resolution involving deleted files has changed. A
79-
delete can now be the winning outcome of conflict resolution, resulting in
80-
the deleted file being moved to a conflict copy.
54+
- The handling of conflict resolution involving deleted files has changed. A delete can now be the winning outcome of conflict resolution, resulting in the deleted file being moved to a conflict copy.
55+
8156
This release is also available as:
8257
- APT repository: https://apt.syncthing.net/
83-
- Docker image: docker.io/syncthing/syncthing:2.0.3 or ghcr.io/syncthing/syncthing:2.0.3
84-
({docker,ghcr}.io/syncthing/syncthing:2 to follow just the major version)
58+
- Docker image: `docker.io/syncthing/syncthing:2.0.3` or `ghcr.io/syncthing/syncthing:2.0.3` (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)
59+
8560
What's Changed
8661
Fixes
8762
- fix(cmd): restore --version flag for compatibility by @acolomb in #10269
@@ -91,7 +66,8 @@ ReleaseNotes: |-
9166
Other
9267
- chore(slog): re-enable LOGGER_DISCARD (fixes #10262) by @rasa in #10267
9368
- build: downgrade gopsutil (fixes #10276) by @calmh in #10277
94-
Full Changelog: v2.0.2...v2.0.3
69+
70+
Full Changelog: https://github.com/syncthing/syncthing/compare/v2.0.2...v2.0.3
9571
ReleaseNotesUrl: https://github.com/syncthing/syncthing/releases/tag/v2.0.3
9672
Documentations:
9773
- DocumentLabel: Documentation

manifests/s/Syncthing/Syncthing/2.0.3/Syncthing.Syncthing.locale.pt-BR.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Created with komac v2.12.1
1+
# Created using wingetcreate 1.10.3.0
22
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json
33

44
PackageIdentifier: Syncthing.Syncthing
@@ -12,7 +12,7 @@ Author: The Syncthing Foundation
1212
PackageName: Syncthing
1313
PackageUrl: https://github.com/syncthing/syncthing
1414
License: MPL-2.0
15-
LicenseUrl: https://github.com/syncthing/syncthing/blob/v2.0.2/LICENSE
15+
LicenseUrl: https://github.com/syncthing/syncthing/blob/v2.0.3/LICENSE
1616
Copyright: Copyright © 2014-2025 the Syncthing Authors.
1717
ShortDescription: Sincronização contínua de arquivos de código aberto
1818
Description: |-
@@ -37,6 +37,7 @@ Tags:
3737
- sincronização
3838
- sincronização-de-arquivos
3939
- synchronization
40+
ReleaseNotesUrl: https://github.com/syncthing/syncthing/releases/tag/v2.0.3
4041
Documentations:
4142
- DocumentLabel: Documentação
4243
DocumentUrl: https://docs.syncthing.net/

manifests/s/Syncthing/Syncthing/2.0.3/Syncthing.Syncthing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Created with komac v2.12.1
1+
# Created using wingetcreate 1.10.3.0
22
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json
33

44
PackageIdentifier: Syncthing.Syncthing

0 commit comments

Comments
 (0)