Skip to content

Releases: symless/synergy-core

1.14.6.12-snapshot

15 Dec 16:23
dcd18ee
Compare
Choose a tag to compare
1.14.6.12-snapshot Pre-release
Pre-release
Upgrade the default hashing algorithm (#7241)

* Upgrade the default hashing algorithm

Upgrade the default hashing algorithm for message digests from md5 to sha256.

* Update changelog

1.14.6.11-snapshot

13 Dec 15:58
b743e66
Compare
Choose a tag to compare
1.14.6.11-snapshot Pre-release
Pre-release
Add manifest for synergy-core to fix problem with dpi on windows (#7240)

1.14.6.10-snapshot

08 Dec 09:17
ab8a7b5
Compare
Choose a tag to compare
1.14.6.10-snapshot Pre-release
Pre-release
add missing <cstdint> includes for SIZE_MAX (#7237)

Without the change the build on upcoming `gcc-13` ails as:

    src/lib/base/Log.cpp: In member function 'void Log::print(const char*, int, const char*, ...)':
    src/lib/base/Log.cpp:128:23:
      error: 'SIZE_MAX' was not declared in this scope
      128 |     if ((strnlen(fmt, SIZE_MAX) > 2) && (fmt[0] == '%' && fmt[1] == 'z')) {
          |                       ^~~~~~~~
    src/lib/base/Log.cpp:30:1:
      note: 'SIZE_MAX' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'?
       29 | #include <ctime>
      +++ |+#include <cstdint>
       30 |

gcc-13 cleaned it's header dependencies and that exposes these failures.

1.14.6.9-snapshot

29 Nov 19:01
aff2b71
Compare
Choose a tag to compare
1.14.6.9-snapshot Pre-release
Pre-release
Single app for server and client (#7239)

* Remove unused files

* Add synergy-core

* Update ChangeLog

* Fix compilation

* Fix code smell

* Add ability to run synergy-core using synergyd for windows

1.14.6.8-snapshot

15 Oct 10:03
9cedc57
Compare
Choose a tag to compare
1.14.6.8-snapshot Pre-release
Pre-release
Create stale-issues.yml

1.14.6.7-snapshot

12 Oct 16:32
88fdd26
Compare
Choose a tag to compare
1.14.6.7-snapshot Pre-release
Pre-release
Use default value for InitiateConnectionFromServer option during swit…

…ching between scopes (#7232)

1.14.6.6-snapshot

11 Oct 14:53
b2b887c
Compare
Choose a tag to compare
1.14.6.6-snapshot Pre-release
Pre-release
Fix crash due to out-of-order frees. (#7208)

* Fix crash due to out-of-order frees.

Don't free the kdbDescr until we've freed the names it contains. This
fixes a SIGBUS crash on FreeBSD (and maybe other platforms too?) when
pressing special keys (e.g., the Windows key) on a client.

* Update ChangeLog

Co-authored-by: Serhii Hadzhilov <[email protected]>

1.14.6.5-snapshot

07 Oct 11:16
7d4a368
Compare
Choose a tag to compare
1.14.6.5-snapshot Pre-release
Pre-release
Fix issue with reconnection when server initiate TLS connection.  (#7…

…230)

* Restart socket when unknown client connection fails

* Send connected event from client side

Co-authored-by: Serhii Hadzhilov <[email protected]>

1.14.6.4-snapshot

04 Oct 10:28
876a110
Compare
Choose a tag to compare
1.14.6.4-snapshot Pre-release
Pre-release
Update visibility for mode checkbox during settings loading. (#7228)

1.14.6.3-snapshot

03 Oct 14:09
0f3e128
Compare
Choose a tag to compare
1.14.6.3-snapshot Pre-release
Pre-release
Add ability to reconnect from server side (#7226)

* Add ability to reconnect from server side

* Fix code smell

Co-authored-by: Serhii Hadzhilov <[email protected]>