Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix(stdiscosrv): use fmt.Println for version output (fixes #10523)#10527

Merged
calmh merged 1 commit intosyncthing:mainfrom
maishivamhoo123:fix-stdiscosrv-version-output
Jan 24, 2026
Merged

fix(stdiscosrv): use fmt.Println for version output (fixes #10523)#10527
calmh merged 1 commit intosyncthing:mainfrom
maishivamhoo123:fix-stdiscosrv-version-output

Conversation

@maishivamhoo123
Copy link
Contributor

Purpose

This PR fixes #10523 by changing the --version output in stdiscosrv from using the logging framework to a standard fmt.Println. The previous use of the logging framework added timestamps and log levels (e.g., 2026-01-16 ... INF) to the version string, which made it difficult for scripts to parse the version number. Using fmt.Println ensures a clean output consistent with the relay server.

Testing

I have verified this change locally on Linux amd64:

  • Command: ./stdiscosrv --version
  • Previous Output: 2026-01-16 10:40:53 INF stdiscosrv unknown-dev ...
  • New Output: stdiscosrv unknown-dev "Hafnium Hornet" (go1.25.1 linux-amd64) ...

The code has also been verified with go fmt ./cmd/stdiscosrv/... and go vet ./cmd/stdiscosrv/....

Screenshots

image

@calmh calmh changed the title cmd/stdiscosrv: use fmt.Println for version output (fixes #10523) fix(stdiscosrv): use fmt.Println for version output (fixes #10523) Jan 16, 2026
@github-actions github-actions bot added the bug A problem with current functionality, as opposed to missing functionality (enhancement) label Jan 16, 2026
@calmh calmh enabled auto-merge (squash) January 16, 2026 10:06
@maishivamhoo123 maishivamhoo123 requested a review from calmh January 18, 2026 04:16
@calmh calmh disabled auto-merge January 24, 2026 11:06
@calmh calmh merged commit a5de148 into syncthing:main Jan 24, 2026
31 of 32 checks passed
Hancock33 added a commit to Hancock33/batocera.piboy that referenced this pull request Jan 25, 2026
--------------------------------------------------------------------------------------------------------
batocera-emulationstation.mk 4e09d39686c15f0787869b26c53281b3b2ea11ca # Version: Commits on Jan 24, 2026
--------------------------------------------------------------------------------------------------------
update po

Signed-off-by: Nicolas Adenis-Lamarre <[email protected]>,

------------------------------------------------------------------------------------------------
batocera-es-piboy.mk 4e09d39686c15f0787869b26c53281b3b2ea11ca # Version: Commits on Jan 24, 2026
------------------------------------------------------------------------------------------------
update po

Signed-off-by: Nicolas Adenis-Lamarre <[email protected]>,

-----------------------------------------------------------------------------------
eden.mk ddbb6f221924eefb57b8a9b0c346462da56c4527 # Version: Commits on Jan 24, 2026
-----------------------------------------------------------------------------------
[hle/ui] Add cmds and fix invalid handle return, remove Starter applet from UI (#3376)

---------------------------------------------------
pcsx2.mk v2.7.60 # Version: Commits on Jan 24, 2026
---------------------------------------------------
- [GS/HW: Clear downscale source on draw to avoid cross game corruption](PCSX2/pcsx2#13876)

------------------------------------------------------------------------------------
rpcs3.mk b41c2754ce0d49d92dfb7843180abb8682b4a599 # Version: Commits on Jan 14, 2026
------------------------------------------------------------------------------------
cellVdec: Remove resolved TODOs,

-----------------------------------------------------------------------------------
ymir.mk 0b22da51eb18047938fcfc0eaab142ca5584ee3f # Version: Commits on Jan 24, 2026
-----------------------------------------------------------------------------------
chore(settings): Fix typo in fullscreen vsync tooltip,

------------------------------------------------------------------------------------
box64.mk 0eb0f9decb0b7e560005b30c11e019f18805eec2 # Version: Commits on Jan 24, 2026
------------------------------------------------------------------------------------
[LA64_DYNAREC] Fixed AVX VPMASKMOVD/Q opcode (#3406),

---------------------------------------------------------------------------------------
etlegacy.mk 1254a1949fb3f67ab7996628ba43c8ba19400dd8 # Version: Commits on Jan 24, 2026
---------------------------------------------------------------------------------------
cgame: don't display incompatible editor tab for comp, refs #3270,

----------------------------------------------------------------------------------------
supertux2.mk 2369ed7ac46a271db42dc6fb1809787aa1948af8 # Version: Commits on Jan 24, 2026
----------------------------------------------------------------------------------------
Add option to allow ignoring the hardcoded player limit (#3564)

Since the player limit isn't based on a technical limitation, an option was added to authorize users to ignore the limit if they want to play with 5 or more players. The limit is retained by default, as some HUD elements overflow off the screen (currently, only the item pocket) when too many players are added.

Co-authored-by: Semphris <[email protected]>,

---------------------------------------------------------------------------------------------
theforceengine.mk aacc1f7522bf68886ca1743377d86fc16acf8d51 # Version: Commits on Jan 24, 2026
---------------------------------------------------------------------------------------------
Secret map colors (#562)

* Fix for remaster darkpilo.cfg which is not located in the game folder.

* Add for linux compatibility

* Update Linux pathing.

* fix for nix paths

* change the path path based on testing on proton.

* Map Enhancements

1. Show Secrets

2. Show Discovered Secrets

3. Disable showing objects

4. Show Unexplored Areas

---------

Co-authored-by: Karjala22 <[email protected]>,

------------------------------------------------------------------------------------------------
libretro-mame-src.mk c0c54576df507e52005977edc2bc40ced2429723 # Version: Commits on Jan 24, 2026
------------------------------------------------------------------------------------------------
Merge remote-tracking branch 'upstream/master',

------------------------------------------------------------
syncthing.mk v2.0.14-rc.1 # Version: Commits on Jan 24, 2026
------------------------------------------------------------
## Major changes in 2.0

- 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.

- 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.

- 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.

- 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.

- 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.

- A \default folder\ is no longer created on first startup.

- 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.

- 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:

  - dragonfly/amd64

  - solaris/amd64

  - linux/ppc64

  - netbsd/*

  - openbsd/386 and openbsd/arm

  - windows/arm

- 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.

This release is also available as:

* APT repository: https://apt.syncthing.net/

* Docker image: `docker.io/syncthing/syncthing:2.0.14-rc.1` or `ghcr.io/syncthing/syncthing:2.0.14-rc.1`

  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

## What's Changed

### Fixes

* fix(beacon): skip point-to-point interfaces on Android by @bt90 in syncthing/syncthing#10504

* fix(stdiscosrv): use fmt.Println for version output (fixes #10523) by @maishivamhoo123 in syncthing/syncthing#10527

### Other

* chore(api): remove charset declaration from JSON content-type (fixes #10500) by @prathik8794 in syncthing/syncthing#10508

* chore(sqlite): allow periodic database maintenance to be disabled by @pixelspark in syncthing/syncthing#10441

* chore(gui): include license files for fork-awesome assets by @gotmax23 in syncthing/syncthing#10539

* build: add build attestation step at release by @calmh in syncthing/syncthing#10540

## New Contributors

* @prathik8794 made their first contribution in syncthing/syncthing#10508

* @gotmax23 made their first contribution in syncthing/syncthing#10539

* @maishivamhoo123 made their first contribution in syncthing/syncthing#10527

**Full Changelog**: syncthing/syncthing@v2.0.13...v2.0.14-rc.1,

------------------------------------------------------------------------------------------
wf-recorder.mk 80fb62d43ed2078fa3306cc1dd569933d0c35b8c # Version: Commits on Jan 24, 2026
------------------------------------------------------------------------------------------
Actually use parsed audio options when opening audio codec (#337)

The options were parsed but not passed to ffmpeg.

Co-authored-by: Ondrej Jirman <[email protected]>,

-------------------------------------------------------
dxvk-nvapi.mk v0.9.1 # Version: Commits on Jan 24, 2026
-------------------------------------------------------
# Changelog

- Add DRS environment variables for overriding DLSS SR/RR scaling ratio, see [Passing driver settings](https://github.com/jp7677/dxvk-nvapi/wiki/Passing-driver-settings).

- Fake successes for Reflex API calls  when DXVK-NVAPI's Vulkan Reflex layer is not installed for DOOM: The Dark Ages to workaround a pink tint issue.

- Add several DRS function stubs to prevent Godot engine based titles from crashing at startup.

- Add a work around for The Last of Us Part 2 by letting several GPU queries return success, even when no real data is available. This allows this title to start when NVAPI is available.

- Fix a startup crash for Middle-earth: Shadow of Mordor by implementing `NvAPI_D3D1x_Present`.

- Report Reflex being unavailable for Stormgate to prevent a crash when opening the in-game map editor.

- Improve Vulkan layer logging.

- Internal improvements.

## Header updates

- Update NVAPI headers to R590.

- Update NVML headers to R590.

- Update Vulkan headers to 1.4.321.

- Update DirectX headers to 1.616.0.

- Update vkroots headers to g51c3213.,

----------------------------------------------------------------------------------------
retroarch.mk 7db66bb2010580141957f805b16ce29e59401c4a # Version: Commits on Jan 23, 2026
----------------------------------------------------------------------------------------
fix c89 build,

----------------------------------------------------------------------------------------
doomretro.mk af52dda2a896978cedaa3f33c1f88ecde672cc06 # Version: Commits on Jan 24, 2026
----------------------------------------------------------------------------------------
Minor tweaks,

--------------------------------------------------------------------------------------
vkquake.mk a1ddd253d9f283ec6dec2061ef723c723b567c8f # Version: Commits on Jan 24, 2026
--------------------------------------------------------------------------------------
Fix #861: Insufficient push constant range size after sky wind changes,

--------------------------------------------------------------------------------------
yquake2.mk 4e4af3ef8de59ebdedd4de905e16a17550d06845 # Version: Commits on Jan 24, 2026
--------------------------------------------------------------------------------------
models: update hlmdl support code,

---------------------------------------------------------------------------------------------------
libretro-dosbox-pure.mk 38c84798aac5239a06d75e85469225a2ad9c4707 # Version: Commits on Jan 24, 2026
---------------------------------------------------------------------------------------------------
Fix INT 21 FINDFIRST call used to match a FAT drive volume label which contains spaces (#709),

----------------------------------------------------------------------------------------------
libretro-holani.mk 19b974f77247a937369adf48280d2b34a5a66245 # Version: Commits on Jan 24, 2026
----------------------------------------------------------------------------------------------
version bump 0.9.9,

--------------------------------------------------------------------------------------------
slang-shaders.mk b47c23579e5c2677d90b68eb6d3d3a7cebbaec1b # Version: Commits on Jan 24, 2026
--------------------------------------------------------------------------------------------
Refactor Sony Megatron shaders to use shared include files (#840)

- Extract common shader code into reusable header files

- Move shader implementations to include/ directory (hdr_pass_v1/v2.h, sdr_pass_v1/v2.h, sony_megatron_v2.h)

- Add new configuration variants for v2 shaders

- Fix broken reference path in gba-gbi-hdr.slangp

- Reduce code duplication by ~2,400 lines

Co-authored-by: Claude Sonnet 4.5 <[email protected]>,

-------------------------------------------------------------------------------------
dhewm3.mk 81bfd0c9ead6a87eea72727c225d0a7b0087c6ee # Version: Commits on Jan 24, 2026
-------------------------------------------------------------------------------------
Revert \MD3: Reuse state of last frame if animation didn't change\

This reverts commit c43cd9e4a85e252bab30295ef5544c83c0d3e559.

but keeps the clamping of the frame numbers

caching doesn't work like this: The idRenderModelMD3 is shared between

multiple instances, so lastFrame, lastOldFrame and lastBackLerp would

have to be saved in staticModel/cachedModel or the renderEntity_s

otherwise animations don't work when there's more than one MD3 model of

a kind in the level.

refs #727 - still doesn't fix the animation speed issues mentioned

there, they are caused by \Recalculate gameLocal.msec each frame so

 60 frames add up to 1000ms\ (sys.waitFrame() in scripts waits for

gameLocal.msec but that's the length of the current frame, not the next,

so when sleeping for 17ms and the next frame is a 16ms frame one might

sleep for two frames instead of one),

--------------------------------------------------------------------------------------------
yquake2-zaero.mk b357489fc4542ff9d168bb29ae59a11d63c36b1f # Version: Commits on Jan 24, 2026
--------------------------------------------------------------------------------------------
Merge pull request #56 from BjossiAlfreds/parity

Porting some missing features/fixes to Zaero,
Hancock33 added a commit to Hancock33/batocera.piboy that referenced this pull request Feb 1, 2026
--------------------------------------------------------------------------------------------------------
batocera-emulationstation.mk 22db6a2925d92e1f334da75c2d9372af7c4047a5 # Version: Commits on Jan 26, 2026
--------------------------------------------------------------------------------------------------------
update po

Signed-off-by: Nicolas Adenis-Lamarre <[email protected]>,

------------------------------------------------------------------------------------------------
batocera-es-piboy.mk 22db6a2925d92e1f334da75c2d9372af7c4047a5 # Version: Commits on Jan 26, 2026
------------------------------------------------------------------------------------------------
update po

Signed-off-by: Nicolas Adenis-Lamarre <[email protected]>,

------------------------------------------------------------------------------------------
dolphin-emu.mk c4c2aa8afd6f7e9a254bc56c53132dd5eb2ccc12 # Version: Commits on Jan 26, 2026
------------------------------------------------------------------------------------------
Merge pull request #14253 from JosJuice/dsp-hle-memory

DSP: Remove HLEMemory functions,

------------------------------------------------------------------------------------------
duckstation.mk 5c0a227c1c088b2bb0e89ae7e44da6a38dc2f63a # Version: Commits on Jan 26, 2026
------------------------------------------------------------------------------------------
Qt: Ensure fields in MemoryViewWidget are initialized

Didn't hit this before but better safe than sorry.,

-----------------------------------------------------------------------------------
eden.mk 2f1f9be7a41ba742d31657a75c65f7efffbfce12 # Version: Commits on Jan 26, 2026
-----------------------------------------------------------------------------------
[common] remove assert extra newline (#3362)

-------------------------------------------------------------------------------------
hatari.mk b1ff429934161b5acdeb42b4365c742573846cfa # Version: Commits on Jan 25, 2026
-------------------------------------------------------------------------------------
GEMDOS HD: update documentation,

--------------------------------------------------------------------------------------
melonds.mk bc4726cca9db07baa227a0a02f6670a89ba61c8c # Version: Commits on Jan 26, 2026
--------------------------------------------------------------------------------------
start with SPU muted (POWCNT2=0)

fixes loud pops when booting firmware,

---------------------------------------------------
pcsx2.mk v2.7.65 # Version: Commits on Jan 26, 2026
---------------------------------------------------
- [GS/HW: Reduce barriers on triangle strips/fans.](PCSX2/pcsx2#13866)

,

-----------------------------------------------------------------------------------
play.mk 900e599dd26e4b292ff55738cc8881530eed46ce # Version: Commits on Jan 26, 2026
-----------------------------------------------------------------------------------
Merge pull request #1540 from jpd002/dependabot/github_actions/microsoft/setup-msbuild-2

Bump microsoft/setup-msbuild from 1.3 to 2,

-------------------------------------------------------------------------------------
ppsspp.mk 131c525b56ce6b35b1776449e6bda669b878f924 # Version: Commits on Jan 26, 2026
-------------------------------------------------------------------------------------
Merge pull request #21158 from hrydgard/android-pad-connect

Android and iOS pad connect/disconnect events,

------------------------------------------------------------------------------------
rpcs3.mk 818b11fd2fa2607334f781213e26da5fbb8506b5 # Version: Commits on Jan 26, 2026
------------------------------------------------------------------------------------
Revert adrenalin crash workaround,

-------------------------------------------------------------------------------------
snes9x.mk 830d8552551d7a71e9d084f727dc15cf15d9796c # Version: Commits on Jan 26, 2026
-------------------------------------------------------------------------------------
gtk: Allow netplay port number to use 16-bit range.,

--------------------------------------------------------------------------------------
tsugaru.mk c53e3499ee41a11720bf298a371973c6415ce5b8 # Version: Commits on Jan 25, 2026
--------------------------------------------------------------------------------------
Merge pull request #176 from bcc2528/master

Fix Japanese UI text.,

-------------------------------------------------
vice.mk r45962 # Version: Commits on Jan 26, 2026
-------------------------------------------------
null

-------------------------------------------------------------------------------------------
xenia-canary.mk 67d80958c9d1ff926b9098be7f830c1937921d9a # Version: Commits on Jan 25, 2026
-------------------------------------------------------------------------------------------
[XThread] Remove 10ms delay in thread start,

-------------------------------------------------------------------------------------------
xenia-native.mk 67d80958c9d1ff926b9098be7f830c1937921d9a # Version: Commits on Jan 25, 2026
-------------------------------------------------------------------------------------------
[XThread] Remove 10ms delay in thread start,

-----------------------------------------------------------------------------------
ymir.mk 673a1b8b9f55448f9d50eec60e2c79cf32e76c4a # Version: Commits on Jan 26, 2026
-----------------------------------------------------------------------------------
feat(utils): Use C++20 `<bit>` functions for powers of two,

-------------------------------------------------------------------------------------
ikemen.mk 48a070b69ed9c4b76094d23723119eb62700e1af # Version: Commits on Jan 26, 2026
-------------------------------------------------------------------------------------
style: fix code style issues with gofmt,

-------------------------------------------------------------------------------------------
moonlight-qt.mk 64fea80ac95f607f9c0c5d74dbb02d6b67133190 # Version: Commits on Jan 25, 2026
-------------------------------------------------------------------------------------------
Create the SystemProperties test window on the main thread,

---------------------------------------------------------------
ruffle.mk nightly-2026-01-26 # Version: Commits on Jan 26, 2026
---------------------------------------------------------------
## What's Changed

* chore: Update translations from Crowdin by @kjarosh in ruffle-rs/ruffle#22850

* core: Reimplement text wrapping for compatibility by @adrian17 in ruffle-rs/ruffle#22730

* tests: Rename sample_count to quality and set \high\ by default by @kjarosh in ruffle-rs/ruffle#22847

* chore: Update translations from Crowdin by @kjarosh in ruffle-rs/ruffle#22852

**Full Changelog**: ruffle-rs/ruffle@nightly-2026-01-25...nightly-2026-01-26,

---------------------------------------------------------------------------------------
thextech.mk fdd963a7d6b604869f4d9e58cac93d3d53d9b371 # Version: Commits on Jan 26, 2026
---------------------------------------------------------------------------------------
graphics.cpp: DrawFrozenNPC - ouch, use height, not width (#76),

------------------------------------------------------------------------------------
box64.mk 05b37ab897a7861807bf42353291432d8c880d3c # Version: Commits on Jan 26, 2026
------------------------------------------------------------------------------------
[INTERP] Added F2 0F B7 opcode (for #3353),

------------------------------------------------------------------------------------
cdogs.mk 4240f917953944abfd8dfcdb141e871e653b059e # Version: Commits on Jan 26, 2026
------------------------------------------------------------------------------------
Install NSIS (no longer provided by github windows 2025 runner) #894,

---------------------------------------------------------------------------------------
corsixth.mk 1a5f0d2f8d5fa3d3d512cd3d7de4c5503a368d4b # Version: Commits on Jan 26, 2026
---------------------------------------------------------------------------------------
Accessibility option to provide subtitles for the receptionist's announcements (#3179)

* Accessibility option to provide subtitles for the receptionist's announcements

* Accessibility option to provide subtitles for the receptionist's announcements

* Marking currently unused announcer subtitles

* Addressing failed Lua tests

* Addressing comments and refactoring

* Attempt to fix Lua tests

* Attempt to fix Lua tests

* Incrementing save file version

* Removing tab characters

* Incrementing save file version

* Addressing review comments

* Fixing indentation,

---------------------------------------------------------------------------------------
etlegacy.mk 4ac50925cd58060b4b186d3baa8a2ebef87b88b7 # Version: Commits on Jan 26, 2026
---------------------------------------------------------------------------------------
cgame: fix spawnpoint drawing pos on fallback path (#3273)

When trace fails to find a groundplane, offset the position to the player feet level instead of displaying at the spawnpoint origin.,

---------------------------------------------------------------------------------------------
theforceengine.mk daceeeb9b335b29b8f54d675522022fc684c7111 # Version: Commits on Jan 26, 2026
---------------------------------------------------------------------------------------------
macOS Support (#584)

* Updates to run on macOS (see description)

This is based on two things.

PR #473 from @apancik

luciusDXL/TheForceEngine#473

The comment from @gilmorem560 that updated AngelScript code resolves compilation issues on Apple Silicon

luciusDXL/TheForceEngine#90 (comment)

https://www.angelcode.com/angelscript/

The code changes are sort of like a manual rebase of #473 so perhaps a proper rebase of that and the manual grafting of AngelScript would be a better solution. In any event I want to give credit to the people who really did the work.

* Fixed building on macOS x86_64

clang doesn't like this one instruction on Intel so I commented it out

* Cjhanged program path logic on macOS

Necessary to get the engine to work in an App Bundle.,

-------------------------------------------------------------------------------------------------
shadps4-qtlauncher.mk f8ebecb33a773821e5bf9d3d3e273d2a7f8f4744 # Version: Commits on Jan 26, 2026
-------------------------------------------------------------------------------------------------
Reshow the play button after game close (#238)

* Add call to update UI after game close

* instead of regenerating the header entirely, just swap the play/pause buttons

* fix uninitialized var,,

------------------------------------------------------------
syncthing.mk v2.0.14-rc.2 # Version: Commits on Jan 26, 2026
------------------------------------------------------------
## Major changes in 2.0

- 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.

- 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.

- 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.

- 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.

- 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.

- A \default folder\ is no longer created on first startup.

- 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.

- 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:

  - dragonfly/amd64

  - solaris/amd64

  - linux/ppc64

  - netbsd/*

  - openbsd/386 and openbsd/arm

  - windows/arm

- 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.

This release is also available as:

* APT repository: https://apt.syncthing.net/

* Docker image: `docker.io/syncthing/syncthing:2.0.14-rc.2` or `ghcr.io/syncthing/syncthing:2.0.14-rc.2`

  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

## What's Changed

### Fixes

* fix(beacon): skip point-to-point interfaces on Android by @bt90 in syncthing/syncthing#10504

* fix(stdiscosrv): use fmt.Println for version output (fixes #10523) by @maishivamhoo123 in syncthing/syncthing#10527

* fix(stdiscosrv): log full device ID on startup by @maishivamhoo123 in syncthing/syncthing#10541

### Other

* chore(api): remove charset declaration from JSON content-type (fixes #10500) by @prathik8794 in syncthing/syncthing#10508

* chore(sqlite): allow periodic database maintenance to be disabled by @pixelspark in syncthing/syncthing#10441

* chore(gui): include license files for fork-awesome assets by @gotmax23 in syncthing/syncthing#10539

* build: add build attestation step at release by @calmh in syncthing/syncthing#10540

## New Contributors

* @prathik8794 made their first contribution in syncthing/syncthing#10508

* @gotmax23 made their first contribution in syncthing/syncthing#10539

* @maishivamhoo123 made their first contribution in syncthing/syncthing#10527

**Full Changelog**: syncthing/syncthing@v2.0.13...v2.0.14-rc.2,

-----------------------------------------------------------------------------------------
winetricks.mk 3483ce867ee10aa084843e97b8f31c9489d6e93d # Version: Commits on Jan 26, 2026
-----------------------------------------------------------------------------------------
Do not give a warning about unknown file arch (when -q is set) (#2457),

-----------------------------------------------------------------------------------
xone.mk 8e772cf696e6fd78ff6b9ca3eba9505391dc44d2 # Version: Commits on Jan 25, 2026
-----------------------------------------------------------------------------------
Another delay,

----------------------------------------------------------------------------------------
hid-tmff2.mk 66e522e26549afab26d032e900ae9f6576c83b9d # Version: Commits on Jan 26, 2026
----------------------------------------------------------------------------------------
Revert \use on_hid_hw_open instead of input_dev->open\

This reverts commit c26573d77369c042dc2b9a881a7f2ff88ddc0dd9.

+ `on_hid_hw_open` is apparently new enough that common distros don't

  have it yet, so let's wait a few years and try again. The old method

  works well enough and if not, just set `open_mode=0`.,

----------------------------------------------------------------------------------------
retroarch.mk 29821a802c4b65aa430fa305443e53c6f35c681f # Version: Commits on Jan 25, 2026
----------------------------------------------------------------------------------------
smb: change UWP build to use libsmb2 from griffin,

---------------------
glslang.mk  NULL-NULL
---------------------
No commit found for SHA: vulkan-tmp-1.4.338,

--------------------------------------
vulkan-utility-libraries.mk  NULL-NULL
--------------------------------------
No commit found for SHA: vulkan-tmp-1.4.338,

-------------------------------------
vulkan-validationlayers.mk  NULL-NULL
-------------------------------------
No commit found for SHA: vulkan-tmp-1.4.338,

----------------------------------------------------------------------------------------
doomretro.mk 14c6d7f7d9918b4aa969b6a7438c2d2bf592bb92 # Version: Commits on Jan 26, 2026
----------------------------------------------------------------------------------------
Minor refactoring to C_BuildObituaryString,

----------------------------------------------------------------------------------------
sonic2013.mk e1b4368eaae58141687b7c39031f2ac087eb85f8 # Version: Commits on Jan 25, 2026
----------------------------------------------------------------------------------------
Android: Add \game\ appCategory

Helps Android 14+ allocate more resources to the game.,

--------------------------------------------------------------------------------------
soniccd.mk 2f5fdb6ad601f99e6be411e235766e2425ca0613 # Version: Commits on Jan 25, 2026
--------------------------------------------------------------------------------------
Android: Add \game\ appCategory

Helps Android 14+ allocate more resources to the game.,

-----------------------------------------------------------------------------------------
sonicmania.mk ae485fb757e51e5869a29e9187faee97fc5b50ee # Version: Commits on Jan 26, 2026
-----------------------------------------------------------------------------------------
HCZ Spear: Fix invalid top size

super mario 64,

----------------------------------------------------------------------------------
trx.mk fbc8a951e1a4a3148b7a57938efecc6a6c350540 # Version: Commits on Jan 26, 2026
----------------------------------------------------------------------------------
cmd/kill: skip targeting dead enemies,

------------------------------------------------------------------------------------------
xash3d-fwgs.mk a26c56629e39b5e5adb729a13c45279ecf2d55da # Version: Commits on Jan 25, 2026
------------------------------------------------------------------------------------------
engine: client: deactivate menu when on escape if we are going back to game,

----------------------------------------------------------------------------------------------
libretro-p2000t.mk 4e8ac5f06ef092d2c39051ca4e0b52f70681376d # Version: Commits on Jan 26, 2026
----------------------------------------------------------------------------------------------
Merge pull request #167 from p2000t/branches/sd-cartridge-emu

added Slot2 SD card emulation support,

--------------------------------------------------------------------------------------------
libretro-pc98.mk 4d585bc2a7d44cd0fc6fb6604f7f5350aa776591 # Version: Commits on Jan 25, 2026
--------------------------------------------------------------------------------------------
Merge pull request #196 from daichungus/readme_patch

Updated cmake instructions in README,

---------------------------------------------------------------------------------------------
libretro-pd777.mk 6fe7aadb63042ecb06f7dffacfd5c208bd27e515 # Version: Commits on Jan 25, 2026
---------------------------------------------------------------------------------------------
Merge upstream,

----------------------------------------------------------------------------------------------
libretro-ppsspp.mk 131c525b56ce6b35b1776449e6bda669b878f924 # Version: Commits on Jan 26, 2026
----------------------------------------------------------------------------------------------
Merge pull request #21158 from hrydgard/android-pad-connect

Android and iOS pad connect/disconnect events,

---------------------------------------------------------------------------------------------
libretro-vba-m.mk d24e4bf7f55edd30a1867639df2cdab9f871329c # Version: Commits on Jan 26, 2026
---------------------------------------------------------------------------------------------
build: fix linkage for macOS vcpkg build

Adjust some link libraries in CMake for the macOS vcpkg build to not

link Homebrew libs.

Signed-off-by: Rafael Kitover <[email protected]>,

---------------------------------------------------------------------------------------
bloodmod.mk 757730e3b39d3d845dd0e398046db5523d609bb8 # Version: Commits on Jan 26, 2026
---------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

------------------------------------------------------------------------------------
cdoom.mk 270da42e013714aafb0cffbb10e6568a85c307a6 # Version: Commits on Jan 26, 2026
------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

-----------------------------------------------------------------------------------
d3le.mk 45c013c51e970cede5be052b4e9279c76744096b # Version: Commits on Jan 26, 2026
-----------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

----------------------------------------------------------------------------------------
dentonmod.mk 95e71bd01c5b0a4f39cd2ea7bf49ee1899647519 # Version: Commits on Jan 26, 2026
----------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

----------------------------------------------------------------------------------------
desolated.mk c5aa467045194fcd2a86f1f8aa3c8ca365cbf49a # Version: Commits on Jan 26, 2026
----------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

-------------------------------------------------------------------------------------
dhewm3.mk a7a9e2075ea60cf2b826909dce0d9ac0629706e6 # Version: Commits on Jan 26, 2026
-------------------------------------------------------------------------------------
Bump version to 1.5.5rc2

and add a note about the fix for incomplete cubemaps to the changelog.

not mentioning the other changes because they were mostly fixes for

things that I broke after 1.5.4,

-------------------------------------------------------------------------------------
eldoom.mk ff4d6d201b0443465ccbf097e240b47f43f24787 # Version: Commits on Jan 26, 2026
-------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

-----------------------------------------------------------------------------------
fitz.mk 06af5d131c12f244a54d9964818ad9799e8d6654 # Version: Commits on Jan 26, 2026
-----------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

------------------------------------------------------------------------------------
grimm.mk 6f6a78896270a8dcbeacf294a81234ab52bab9d9 # Version: Commits on Jan 26, 2026
------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

----------------------------------------------------------------------------------------
hardcorps.mk d8bfe6d8084175789fe8552d0426adaa96e9e06e # Version: Commits on Jan 26, 2026
----------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

----------------------------------------------------------------------------------------
perfected.mk 74624368cb2bec65bd14949dc1dcd521caa9e020 # Version: Commits on Jan 26, 2026
----------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

---------------------------------------------------------------------------------------
realgibs.mk ed06a7b12cf836a9c2f8abd746c26acb9eeb99f0 # Version: Commits on Jan 26, 2026
---------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

---------------------------------------------------------------------------------------
rivensin.mk 9cbfc2b03a4aca42f4e848f9e8b465b410c8984e # Version: Commits on Jan 26, 2026
---------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,

--------------------------------------------------------------------------------------
sikkmod.mk 6103ee0772f4216a14ea4946fd9eff7f3a6f4326 # Version: Commits on Jan 26, 2026
--------------------------------------------------------------------------------------
Introduce gameLocal.msecPrecise to d3xp/

basically the same as in the previous commit, but more complicated

due to d3xp's slowmo feature.

slowmoMsec was always a float, now its value is based on the precise

frametime (16.666ms, added USERCMD_MSEC_PRECISE for that) instead of

USERCMD_MSEC = 16,
Hancock33 added a commit to Hancock33/batocera.piboy that referenced this pull request Feb 8, 2026
--------------------------------------------------------------------------------------------------------
batocera-emulationstation.mk 899b8b66f1de2f2c5c794dcf9ca4bc4ad9084728 # Version: Commits on Feb 03, 2026
--------------------------------------------------------------------------------------------------------
update po

Signed-off-by: Nicolas Adenis-Lamarre <[email protected]>,

------------------------------------------------------------------------------------------------
batocera-es-piboy.mk 899b8b66f1de2f2c5c794dcf9ca4bc4ad9084728 # Version: Commits on Feb 03, 2026
------------------------------------------------------------------------------------------------
update po

Signed-off-by: Nicolas Adenis-Lamarre <[email protected]>,

------------------------------------------------------------------------------------------
dolphin-emu.mk 64d40316d03d231d3ab8a27c51702a0a3cb8ba9f # Version: Commits on Feb 04, 2026
------------------------------------------------------------------------------------------
Merge pull request #14318 from jordan-woyak/RunOnCPUThread-always-non-blocking

Core: Make RunOnCPUThread always non-blocking.,

-----------------------------------------------------------------------------------------------
dolphin-triforce.mk 859db7adc4135ce5491360755fb3e80231d7091d # Version: Commits on Feb 04, 2026
-----------------------------------------------------------------------------------------------
SI_DeviceAMBaseboard: Fix log issues related to GeneralDriverOutput,

------------------------------------------------------------------------------------------
duckstation.mk 8c669e38c8d43701174767104b11510e26b18c22 # Version: Commits on Feb 03, 2026
------------------------------------------------------------------------------------------
VideoThread: Simplify reconfiguration

- Removes cross-thread access of FSUI state.

- Fixes lockup when startup fails.,

-----------------------------------------------------------------------------------
eden.mk 48ba1f3f241123ca4950fed5965fe78bb804849c # Version: Commits on Feb 04, 2026
-----------------------------------------------------------------------------------
[vk, cmake] Bump minimum VulkanTools to 1.4.317 and add UnifiedImageLayouts (#3318)

-------------------------------------------------------------------------------------
hatari.mk 27807c7ff25df283e404a9e9b61c533f201121ad # Version: Commits on Feb 01, 2026
-------------------------------------------------------------------------------------
Docs: fix Neurobotix game name,

---------------------------------------------------
pcsx2.mk v2.7.93 # Version: Commits on Feb 04, 2026
---------------------------------------------------
- [Qt: Don't set a layout for the log window central widget twice](PCSX2/pcsx2#13953)

,

-----------------------------------------------------------------------------------
play.mk 63ea4d70a255d1c2ab19969538d83c433c6aa96a # Version: Commits on Feb 02, 2026
-----------------------------------------------------------------------------------
Fix crash when opening VFS manager on Linux.,

-------------------------------------------------------------------------------------
ppsspp.mk eb25a3d7e454cb514a68f2c0a714aed30cf48f4c # Version: Commits on Feb 04, 2026
-------------------------------------------------------------------------------------
Merge pull request #21198 from HR1025/bugfix/build

Fix build in windows with cmake,

------------------------------------------------------------------------------------
rpcs3.mk ebf9374ccdfe9bc1d8a9535d6b3c5335e03e9ac6 # Version: Commits on Feb 04, 2026
------------------------------------------------------------------------------------
Fixed typos in rpcs3/System.cpp

- changed string containing a typo buyes -> bytes

- capitalized ps2/ps3 to PS2/PS3,

-------------------------------------------------------------------------------------
snes9x.mk 02f642cdadfaa8f9fa7ec674382d6c70a8b534d6 # Version: Commits on Feb 04, 2026
-------------------------------------------------------------------------------------
Merge pull request #1022 from itsoli/fix-hat-switch-d-pad

Fix button state for HAT switch D-Pad,

-------------------------------------------------
vice.mk r45965 # Version: Commits on Feb 04, 2026
-------------------------------------------------
null

-------------------------------------------------------------------------------------
vita3k.mk 1167cb63ac6df13f1952a31b3adf816aceaa04d3 # Version: Commits on Jan 26, 2026
-------------------------------------------------------------------------------------
vita3k: add some SDL_Error log,

-----------------------------------------------------------------------------------
ymir.mk 003a76c8e64cd542ce9912c068d010e406dfcfb3 # Version: Commits on Feb 04, 2026
-----------------------------------------------------------------------------------
chore(settings): Move Settings and MIDI to services,

-------------------------------------------------------------------------------------
ikemen.mk a9f366de2dd3f06ac235461c5a0f012d9e2584be # Version: Commits on Feb 03, 2026
-------------------------------------------------------------------------------------
Merge pull request #3241 from potsmugen/push4

fix: missing TTF lines,

-----------------------------------------------------------------------------------------
lightspark.mk 9b729eb7a3e41571fbba6f2b44aa859e0f6536cb # Version: Commits on Feb 04, 2026
-----------------------------------------------------------------------------------------
[Class_base] ensure namespace kind is included in key for borrowedSlot

fixes #1185,

---------------------------------------------------------------
ruffle.mk nightly-2026-02-04 # Version: Commits on Feb 04, 2026
---------------------------------------------------------------
## What's Changed

* chore: Remove outdated comment by @SuchAFuriousDeath in ruffle-rs/ruffle#22910

* build(deps): bump the cargo-minor group with 3 updates by @dependabot[bot] in ruffle-rs/ruffle#22927

* build(deps-dev): bump the npm-minor group in /web with 15 updates by @dependabot[bot] in ruffle-rs/ruffle#22926

* avm2: Implement Dxns and DxnsLate opcodes by @SuchAFuriousDeath in ruffle-rs/ruffle#22761

* avm2: Fix StaticText.text output by @kjarosh in ruffle-rs/ruffle#22923

**Full Changelog**: ruffle-rs/ruffle@nightly-2026-02-03...nightly-2026-02-04,

---------------------------------------------------------------------------------------
thextech.mk 93ad4a52d60b1150205804205e437f58d190c822 # Version: Commits on Feb 04, 2026
---------------------------------------------------------------------------------------
effect.cpp: NewEffect - unify default effect creation code

This saves 3.5kb and 200 lines of code,

---------------------------------------------------------------------------------------------
deskpipro-case.mk de8d5ee595324eb33c3016675d3ec901a41726c1 # Version: Commits on Feb 04, 2026
---------------------------------------------------------------------------------------------
Merge pull request #210 from DeskPi-Team/yoyojacky-patch-2

Update uninstall-ubuntu-mate.sh,

-----------------------------------------------------
libfyaml.mk v0.9.4 # Version: Commits on Feb 03, 2026
-----------------------------------------------------
Release v0.9.4

Signed-off-by: Pantelis Antoniou <[email protected]>,

-------------------------------------------------------------------------------------------
sdl12-compat.mk e677f477c862a066da7490097ce86dddadd086e3 # Version: Commits on Feb 04, 2026
-------------------------------------------------------------------------------------------
Updated to version 1.2.75 for development,

-----------------------------------------------------------------------------------------
sdl3_mixer.mk 9ea9abee0057406ec87e67f2dc7f5136b31091c4 # Version: Commits on Feb 04, 2026
-----------------------------------------------------------------------------------------
update vendored flac, ogg and vorbis to avoid cmake deprecation warnings,

------------------------------------------------------------------------------------
box64.mk 9d9b20c672c5df06d9c3ac5dd58ade387b234cc6 # Version: Commits on Feb 04, 2026
------------------------------------------------------------------------------------
[DYNAREC] Fix build,

---------------------------------------------------------------------------------------
corsixth.mk 56c8d1b1158ef7506ce65808a3732377e8d1ba7c # Version: Commits on Feb 03, 2026
---------------------------------------------------------------------------------------
Merge pull request #3215 from lewri/close_options_daughter_windows

Close daughter UIOptions Windows when clicking outside boundary,

--------------------------------------------------------------------------------------
eduke32.mk ba6b7bb1d50d7db820ec03d9bbd66404fab5c543 # Version: Commits on Feb 03, 2026
--------------------------------------------------------------------------------------
Engine: Avoid crash when given an OOB voxel ID

---------------------------------------------------------------------------------------
etlegacy.mk ff67c60275f400a7a2befa0742ac3345efa40ebc # Version: Commits on Feb 04, 2026
---------------------------------------------------------------------------------------
Merge branch 'master' of https://github.com/etlegacy/etlegacy,

--------------------------------------------------------------------------------------
stalker.mk 0baad7094b28fc2dc498e5831a401931385922c2 # Version: Commits on Feb 03, 2026
--------------------------------------------------------------------------------------
build(deps): bump Externals/imgui from `be2cfc2` to `913a3c6` (#2042)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>,

----------------------------------------------------------------------------------------
supertux2.mk bbb47a08a2241058e43ffc6d176ef1c295b1fb30 # Version: Commits on Feb 04, 2026
----------------------------------------------------------------------------------------
player: does not want buttjump when stoned on slope

Buttjumping on a slope will cause Tux to remain in the buttjump state when he is stoned.

Signed-off-by: Swagtoy <[email protected]>,

---------------------------------------------------------------------------------------------------------
batocera-onscreen-keyboard.mk 9fb1964f5daf617feb26eaa4f8b96e402777d3be # Version: Commits on Jan 22, 2026
---------------------------------------------------------------------------------------------------------
version bump,

-------------------------------------------------------
syncthing.mk v2.0.14 # Version: Commits on Feb 03, 2026
-------------------------------------------------------
## Major changes in 2.0

- 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.

- 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.

- 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.

- 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.

- 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.

- A \default folder\ is no longer created on first startup.

- 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.

- 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:

  - dragonfly/amd64

  - solaris/amd64

  - linux/ppc64

  - netbsd/*

  - openbsd/386 and openbsd/arm

  - windows/arm

- 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.

This release is also available as:

* APT repository: https://apt.syncthing.net/

* Docker image: `docker.io/syncthing/syncthing:2.0.14` or `ghcr.io/syncthing/syncthing:2.0.14`

  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

## What's Changed

### Fixes

* fix(beacon): skip point-to-point interfaces on Android by @bt90 in syncthing/syncthing#10504

* fix(stdiscosrv): use fmt.Println for version output (fixes #10523) by @maishivamhoo123 in syncthing/syncthing#10527

* fix(stdiscosrv): log full device ID on startup by @maishivamhoo123 in syncthing/syncthing#10541

### Other

* chore(api): remove charset declaration from JSON content-type (fixes #10500) by @prathik8794 in syncthing/syncthing#10508

* chore(sqlite): allow periodic database maintenance to be disabled by @pixelspark in syncthing/syncthing#10441

* chore(gui): include license files for fork-awesome assets by @gotmax23 in syncthing/syncthing#10539

* build: add build attestation step at release by @calmh in syncthing/syncthing#10540

## New Contributors

* @prathik8794 made their first contribution in syncthing/syncthing#10508

* @gotmax23 made their first contribution in syncthing/syncthing#10539

* @maishivamhoo123 made their first contribution in syncthing/syncthing#10527

**Full Changelog**: syncthing/syncthing@v2.0.13...v2.0.14,

----------------------------------------------------------------------------------------
retroarch.mk c9a06dcac1c8c440c7068f56abba119cda782b8e # Version: Commits on Feb 04, 2026
----------------------------------------------------------------------------------------
Config reset icon corrections,

----------------------------------------------------------
bgfx.mk v1.136.9135-511 # Version: Commits on Feb 03, 2026
----------------------------------------------------------
build(deps): bump the submodules group with 2 updates (#11)

* build(deps): bump the submodules group with 2 updates

Bumps the submodules group with 2 updates: [bgfx](https://github.com/bkaradzic/bgfx) and [bx](https://github.com/bkaradzic/bx).,

-------------------------------------------------------------------------------------
libvni.mk 6055ec2b1de7f795d4f540c97b4181909ee1b225 # Version: Commits on Feb 03, 2026
-------------------------------------------------------------------------------------
misc: add support for ci builds and linux install for include/lib (#1)

* build: add support for lib and include install on linux

* ci: add support for building in github actions,

--------------------------------------------------------------------------------------------
vpinball-next.mk bb815858da96cbe780f516f41a258b5daf90b386 # Version: Commits on Feb 03, 2026
--------------------------------------------------------------------------------------------
Move Win32 UI code apart from IHaveDragPoints,

----------------------------------------------------------------------------------------
doomretro.mk 9691acbc6447469a04a32a4dfc9ac7ad68ffb34c # Version: Commits on Feb 04, 2026
----------------------------------------------------------------------------------------
Update workflow,

--------------------------------------------------------------------------------------
vkquake.mk ce9e13c36c11c8b6685d52f05a7ec82e9b11c353 # Version: Commits on Feb 04, 2026
--------------------------------------------------------------------------------------
Fix #867: COM_FindFile only output warnings with developer > 1, use COM_FileExists in Mod_LoadModel, cleaner.,

--------------------------------------------------------------------------------------
yquake2.mk fcce5c9ad45e7e38c28f43f5bc8c2f7929deb1a9 # Version: Commits on Feb 03, 2026
--------------------------------------------------------------------------------------
workflows: disable coverity,

----------------------------------------------------------------------------------
trx.mk dc69405b9f948b0cb2a380256f3819a51b588331 # Version: Commits on Feb 04, 2026
----------------------------------------------------------------------------------
lara/skin: fix combat face reset on outfit swap

This resolves Lara losing her combat face if she remains locked on

a dead enemy and not shooting, and the outfit is then swapped.,

------------------------------------------------------------------------------------------
xash3d-fwgs.mk 732bc50a3ae3a038bc534ce66d7a2e3b392b71ab # Version: Commits on Feb 03, 2026
------------------------------------------------------------------------------------------
filesystem: set custom_loader flag even if loading DLLs from archives is unsupported

After all, it's an engine job to figure out whether it wants to load this binary or not.,

--------------------------------------------------------------------------------------------------
libretro-clownmdemu.mk 9fb922e1b6f5ade0fc17a8296c496db0d8d6f1bd # Version: Commits on Feb 04, 2026
--------------------------------------------------------------------------------------------------
Bump version to v1.6.4.,

---------------------------------------------------------------------------------------------------
libretro-dosbox-pure.mk 6fe60a669e8781d738150ad2353b87c1e1de7dd4 # Version: Commits on Feb 04, 2026
---------------------------------------------------------------------------------------------------
Show very long file names left aligned so they don't get cut off from both sides with the default center alignment drawing,

---------------------------------------------------------------------------------------------
libretro-fbneo.mk 62c1870411a54330ef525bd772c8f547553c6b9b # Version: Commits on Feb 03, 2026
---------------------------------------------------------------------------------------------
(libretro) update files,

--------------------------------------------------------------------------------------------------
libretro-gearcoleco.mk 78ed44df5068700618868e0031ccc1f735b3963a # Version: Commits on Feb 03, 2026
--------------------------------------------------------------------------------------------------
Update readme,

-------------------------------------------------------------------------------------------------
libretro-geargrafx.mk 58cdd0ef5d58b4c8f1ac1ee743d82133d0a1e2c0 # Version: Commits on Feb 03, 2026
-------------------------------------------------------------------------------------------------
Update readme,

--------------------------------------------------------------------------------------------------
libretro-gearsystem.mk d0e99020578c86d5bad8ec5fcc4b5945b3ec47a8 # Version: Commits on Feb 03, 2026
--------------------------------------------------------------------------------------------------
Update readme,

----------------------------------------------------------------------------------------------
libretro-ppsspp.mk eb25a3d7e454cb514a68f2c0a714aed30cf48f4c # Version: Commits on Feb 04, 2026
----------------------------------------------------------------------------------------------
Merge pull request #21198 from HR1025/bugfix/build

Fix build in windows with cmake,

---------------------------------------------------------------------------------------------
libretro-wasm4.mk ae6628ccdf3a91c3f5d875a87c419143d79b8533 # Version: Commits on Feb 03, 2026
---------------------------------------------------------------------------------------------
feat: support multiple authors for cart manuals

Closes #820 - Support multiple authors for carts on the website.

Changes:

- Update cart frontmatter format to: author: Name <contact>

- Contact can be GitHub username, email, or URL

- Multiple authors separated by commas

- Remove separate 'github' field from frontmatter

- Update PlayCart.js to display multiple author avatars

- Update PlayButton.js to show comma-separated author names

- Update Internet Archive upload script for multiple creators

- Convert all 139 existing cart markdown files to new format

- Update documentation with new author format examples

New author format examples:

  author: Alice <alice>                    # GitHub username

  author: Alice <[email protected]>        # Email

  author: Alice <https://alice.dev>        # URL

  author: Alice <alice>, Bob <bob>         # Multiple authors,

----------------------------------------------------------
retrocrisis.mk 20260203 # Version: Commits on Feb 03, 2026
----------------------------------------------------------
SHOWCASE:

- https://youtu.be/OFeIFR1e7d8

___

NOTES:

- Added \2600\

___

INSTALLATION GUIDES:

- [Windows](https://youtu.be/G42g23ONYsI)

- [iOS](https://youtu.be/2L3fgoabkq0)

- [Linux](https://youtu.be/R12PqZ8LSIY)

- [Steam Deck - Discover Store version](https://youtu.be/Bbr0a6b1qHI)

- [Steam Deck - Steam Store version](https://youtu.be/xKyZ6F7r-54)

___

*Please delete old packs before installing this pack,

--------------------------------------------------------------------------------------------
slang-shaders.mk 367f5a5022593e60335b69e841b146cb3d16f818 # Version: Commits on Feb 04, 2026
--------------------------------------------------------------------------------------------
Changing AR strengths for Arcade & Sharpsmooth shaders (#848)

* Update crt-CreativeForce-Arcade.slangp

Changed AR strength to 0.33

* Update crt-CreativeForce-SharpSmooth.slangp

* Update lanczos16-AR.slang,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug A problem with current functionality, as opposed to missing functionality (enhancement)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

stdiscosrv-2.0.13-arm --version Issue

2 participants