This repository has been archived by the owner. It is now read-only.
Permalink
...
Comparing changes
Open a pull request
11
contributors
This comparison is big! We’re only showing the most recent
250
commits
Unified
Split
Showing
703 changed files
with
5,498 additions
and 6,341 deletions.
View
30
.github/ISSUE_TEMPLATE.md
| @@ -0,0 +1,30 @@ | ||
| +### Operating Systems ### | ||
| + | ||
| +Server: microOS Tiara | ||
| +Client: Applesoft Windy OS 10 | ||
| + | ||
| +**READ ME, DELETE ME**: On Windows, hold the Windows key and press 'r', type 'winver' and hit return to get your OS version. On Mac, hit the Apple menu (top left of the screen) and check 'About this Mac'. Linux users... you know what you're using ;) | ||
| + | ||
| +### Synergy Version ### | ||
| + | ||
| +1.8.π | ||
| + | ||
| +**READ ME, DELETE ME**: Go to the 'Help' (on Windows) or 'Synergy' (on macOS) menu and then 'About Synergy' to check your version. Verify that you are using the same version across all of your machines, and that your issue still occurs with the latest release available at https://symless.com/account/login | ||
| + | ||
| +### Steps to reproduce bug ### | ||
| + | ||
| +**READ ME, DELETE ME**: Try to be succinct. If your bug is intermittent, try and describe what you're doing when it happens most. | ||
| + | ||
| +1. Click things. | ||
| +2. Type things. | ||
| +3. Bug occurs. | ||
| +4. ... | ||
| +5. Profit? | ||
| + | ||
| +### Other info ### | ||
| + | ||
| +* When did the problem start to occur? When I... | ||
| +* Is there a way to work around it? No/Yes, you can... | ||
| +* Does this bug prevent you from using Synergy entirely? Yes/No | ||
| + | ||
| +Put anything else you can think of here. |
View
3
.gitignore
| @@ -1,7 +1,10 @@ | ||
| config.h | ||
| +.DS_Store | ||
| *.pyc | ||
| +*.o | ||
| *~ | ||
| \.*.swp | ||
| +*build-gui-Desktop_Qt* | ||
| /bin | ||
| /lib | ||
| /build | ||
View
11
CMakeLists.txt
| @@ -1,5 +1,5 @@ | ||
| # synergy -- mouse and keyboard sharing utility | ||
| -# Copyright (C) 2012 Synergy Si Ltd. | ||
| +# Copyright (C) 2012-2016 Symless Ltd. | ||
| # Copyright (C) 2009 Nick Bolton | ||
| # | ||
| # This package is free software; you can redistribute it and/or | ||
| @@ -17,8 +17,8 @@ | ||
| # Version number for Synergy | ||
| set(VERSION_MAJOR 1) | ||
| set(VERSION_MINOR 8) | ||
| -set(VERSION_REV 1) | ||
| -set(VERSION_STAGE beta) | ||
| +set(VERSION_REV 6) | ||
| +set(VERSION_STAGE rc2) | ||
| set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REV}") | ||
| cmake_minimum_required(VERSION 2.6) | ||
| @@ -205,7 +205,10 @@ if (UNIX) | ||
| set(CMAKE_INCLUDE_PATH "${CMAKE_INCLUDE_PATH}:/usr/local/include") | ||
| set(XKBlib "X11/Xlib.h;X11/XKBlib.h") | ||
| - check_symbol_exists("XRRNotifyEvent" "${XKBlib};X11/extensions/Xrandr.h" HAVE_X11_EXTENSIONS_XRANDR_H) | ||
| + set(CMAKE_EXTRA_INCLUDE_FILES "${XKBlib};X11/extensions/Xrandr.h") | ||
| + check_type_size("XRRNotifyEvent" X11_EXTENSIONS_XRANDR_H) | ||
| + set(HAVE_X11_EXTENSIONS_XRANDR_H "${X11_EXTENSIONS_XRANDR_H}") | ||
| + set(CMAKE_EXTRA_INCLUDE_FILES) | ||
| check_include_files("${XKBlib};X11/extensions/dpms.h" HAVE_X11_EXTENSIONS_DPMS_H) | ||
| check_include_files("X11/extensions/Xinerama.h" HAVE_X11_EXTENSIONS_XINERAMA_H) | ||
View
2
COMPILE
| @@ -1 +1 @@ | ||
| -Compiling: http://synergy-project.org/wiki/Compiling | ||
| +Compiling: https://github.com/symless/synergy/wiki/Compiling |
View
51
ChangeLog
| @@ -1,3 +1,54 @@ | ||
| +v1.8.5-stable | ||
| +============= | ||
| +Bug #5680 - Server crashes when disconnecting SSL clients | ||
| +Bug #5626 - Build fails using Xcode 8 and macOS SDK 10.12 | ||
| +Feature #5657 - Trial version support | ||
| +Feature #5707 - User upgrade statistics | ||
| + | ||
| +v1.8.4-stable | ||
| +============= | ||
| +Bug #5183 - Slowly moving the cursor has no effect on high DPI clients | ||
| +Bug #4041 - UHD/4K DPI scaling broken on Windows servers | ||
| +Bug #4420 - When XRandR adds a screen, it is inaccessible | ||
| +Bug #5603 - Activation notification depends on existence of /etc/os-release | ||
| +Bug #5624 - Update notification sometimes requests a downgrade | ||
| +Bug #5329 - Current date is shown for build date in the about dialog | ||
| +Enhancement #5617 - Remove redundant plugin infrastructure | ||
| +Enhancement #5627 - Move SSL certificate generation to main window | ||
| +Enhancement #5628 - Move SSL implementation into core binary | ||
| +Enhancement #5629 - Move activation from wizard into new dialog window | ||
| + | ||
| +v1.8.3-stable | ||
| +============= | ||
| +Bug #2765 - A letter appears on macOS clients when the spacebar is pressed | ||
| +Bug #3241 - Windows UAC disconnects clients when elevated | ||
| +Bug #4740 - Linux client crashes with "Assertion '!m_open' failed" | ||
| +Bug #4879 - Memory leak caused by IpcReader | ||
| +Bug #5373 - Tab behaves like shift tab on client | ||
| +Bug #5502 - Copy and paste from server to client doesn't work | ||
| +Enhancement #123 - Option to disable clipboard sharing | ||
| +Enhancement #3305 - Media key support on macOS | ||
| +Enhancement #4323 - Make automatic elevation on Windows optional | ||
| + | ||
| +v1.8.2-stable | ||
| +============= | ||
| +Bug #3044 - Unable to drag-select in MS Office | ||
| +Bug #4768 - Copy paste causes 'server is dead' error on switching | ||
| +Bug #4792 - Server logging crashes when switching with clipboard data | ||
| +Bug #2975 - Middle click does not close Chrome tab on Mac client | ||
| +Bug #5087 - Linux client fails to start due to invalid cursor size | ||
| +Bug #5471 - Serial key textbox on activation screen overflows on Mac | ||
| +Bug #4836 - Stop button resets to Start when settings dialog canceled | ||
| +Enhancement #5277 - Auto restart service when synwinhk.dll fails on Windows | ||
| +Enhancement #4913 - Future-proof GUI login by using newer auth URL | ||
| +Enhancement #4922 - Add --enable-crypto argument to help text | ||
| +Enhancement #5299 - High resolution App icon on Mac | ||
| +Enhancement #4894 - Improve grammar in connection notification dialog | ||
| + | ||
| +v1.8.1-stable | ||
| +============= | ||
| +Bug #5461 - GUI crash during activation on Mac | ||
| + | ||
| v1.8.0-beta | ||
| ============= | ||
| Enhancement #4696 - Include 'ns' plugin in installers (instead of wizard download) | ||
View
4
INSTALL
| @@ -1,2 +1,2 @@ | ||
| -Help: http://synergy-project.org/help/ | ||
| -Wiki: http://synergy-project.org/wiki/ | ||
| +Help: http://symless.com/help/ | ||
| +Wiki: https://github.com/symless/synergy/wiki/ |
View
5
LICENSE
| @@ -1,8 +1,11 @@ | ||
| synergy -- mouse and keyboard sharing utility | ||
| -Copyright (C) 2012-2014 Synergy Si Ltd. | ||
| +Copyright (C) 2012-2016 Symless Ltd. | ||
| Copyright (C) 2008-2014 Nick Bolton | ||
| Copyright (C) 2002-2014 Chris Schoeneman | ||
| +This program is released under the GPL with the additional exemption | ||
| +that compiling, linking, and/or using OpenSSL is allowed. | ||
| + | ||
| GNU GENERAL PUBLIC LICENSE | ||
| Version 2, June 1991 | ||
View
2
README
| @@ -11,6 +11,6 @@ Just use "hm conf" and "hm build" to compile (./hm.sh on | ||
| Linux and Mac). | ||
| For detailed compile instructions: | ||
| -http://synergy-project.org/wiki/Compiling | ||
| +https://github.com/symless/synergy/wiki/Compiling | ||
| Happy hacking! | ||
View
2
doc/MacReadme.txt
| @@ -15,4 +15,4 @@ Once the binaries have been copied to /usr/bin, you should follow the configurat | ||
| http://synergy2.sourceforge.net/configuration.html | ||
| If you have any problems, see the [[Support]] page: | ||
| - http://synergy-project.org/help/ | ||
| + http://symless.com/help/ | ||
View
2
doc/org.synergy-foss.org.synergyc.plist
| @@ -5,7 +5,7 @@ | ||
| <!-- Mac OSX only: Copy this plist file into [~]/Library/LaunchAgents to start synergy client automatically. Make sure you change the IP below. --> | ||
| <dict> | ||
| <key>Label</key> | ||
| - <string>org.synergy-project.org.synergyc.plist</string> | ||
| + <string>org.symless.com.synergyc.plist</string> | ||
| <key>OnDemand</key> | ||
| <false/> | ||
| <key>ProgramArguments</key> | ||
View
2
doc/org.synergy-foss.org.synergys.plist
| @@ -5,7 +5,7 @@ | ||
| <!-- Mac OSX only: Copy this plist file into [~]/Library/LaunchAgents to start synergy server automatically. Make sure you change configuration file below --> | ||
| <dict> | ||
| <key>Label</key> | ||
| - <string>org.synergy-project.org.synergys.plist</string> | ||
| + <string>org.symless.com.synergys.plist</string> | ||
| <key>OnDemand</key> | ||
| <false/> | ||
| <key>ProgramArguments</key> | ||
View
2
ext/toolchain/__init__.py
| @@ -1,5 +1,5 @@ | ||
| # synergy -- mouse and keyboard sharing utility | ||
| -# Copyright (C) 2012 Synergy Si Ltd. | ||
| +# Copyright (C) 2012-2016 Symless Ltd. | ||
| # Copyright (C) 2009 Nick Bolton | ||
| # | ||
| # This package is free software; you can redistribute it and/or | ||
Oops, something went wrong.