Commit Graph

  • 3be014f8f5 Clipboard improvements. Still not working right. Nedit doesn't work at all but at least now there's a timeout to prevent synergy from hanging waiting on a reply. crs 2002-04-28 00:46:15 +0000
  • d1ca5295d1 Added more debug levels and moved some annoying debug messages to those levels. Default log level is now DEBUG for debug builds and INFO for release builds. crs 2002-04-27 18:49:03 +0000
  • 9ac0473d5a checkpoint. changed CProtocolUtil::readf() to store 1 and 2 byte integers into pointers to 1 and 2 byte integers. was always assuming pointers to 4 byte integers. crs 2002-04-27 18:06:40 +0000
  • f9170eb139 Added support for multiple clipboards. This is mainly to support both PRIMARY and CLIPBOARD selections on X windows. crs 2002-04-27 14:19:53 +0000
  • 428166fe85 set TARGETS macro to BIN and LIB targets. crs 2002-04-27 14:19:19 +0000
  • 80cdde6a3d updated crs 2002-04-26 20:15:59 +0000
  • 79b4d333fa Fixed caps-lock and num-lock behavior. It seems to work okay now but did notice one problem: when powerbook is primary and num-lock is on the keypad works fine until shift is pressed (and released); after that the keypad only works while the shift key is down. crs 2002-04-26 20:14:46 +0000
  • 242109d430 Added hack to handle "half-duplex" caps-lock key on powerbook. That key only reports press when pressed and released when caps-lock is activated and only reports release when pressed and released when caps-lock is deactivated. I don't know of a way to detect this behavior so it may have to be configured by the user. The code assumes normal behavior; will have to add code to set the flag (perhaps from a user configuration). crs 2002-04-26 20:12:55 +0000
  • 419eadfaf9 changed processing of key events in X. secondary screen now activates/deactivates modifiers as necessary to get a keycode interpreted as the expected keysym. still some work and testing to do on this. crs 2002-04-26 17:38:01 +0000
  • b01fc4bd35 Added notes on keyboard handling. crs 2002-04-25 10:44:01 +0000
  • 7d9fa41514 added handling for DestroyNotify of clipboard requestors. crs 2002-04-25 10:43:53 +0000
  • f63d0e4ada checkpoint. improvements to clipboard transfer on X windows. not detecting a change to clipboard when synergy window isn't the owner (since there's no event for this; we'll have to check when we leave the screen i guess). large transfers don't seem to work. crs 2001-11-26 22:36:51 +0000
  • 9d83cfdbe2 checkpoint. testing clipboard transfer on X windows. crs 2001-11-26 22:09:53 +0000
  • ff9c3ba7af checkpoint. implementing clipboard owner in x windows. crs 2001-11-25 22:20:41 +0000
  • c19022e965 fixed function signature. crs 2001-11-25 18:44:13 +0000
  • f395bc6e12 executables are now built into a common area on unix (and they already were on win32). crs 2001-11-25 18:42:13 +0000
  • f15c9df85b added platform independent clipboard transfer stuff clipboard owner support (MS windows done, X windows partial) added key transfer on ms windows mutex fixes in CClient (had race conditions) faster debug output in ms windows changed temporary screen name to "secondary" network fixes on ms windows (poll returned wrong result) fixed transparent cursor on ms windows crs 2001-11-25 18:32:41 +0000
  • 3f6146b15f checkpoint. merging win32 code. server on X is currently broken and client probably is. crs 2001-11-19 00:33:36 +0000
  • 51505783aa moved client and server files into their own respective directories. crs 2001-11-18 23:14:28 +0000
  • 6a223b7da5 added preliminary support for getting the X selection. crs 2001-11-13 23:34:12 +0000
  • 303734a438 fixed clamping when mapping to a different screen when beyond bottom or right of source screen. crs 2001-11-11 21:27:36 +0000
  • cf4e1fd9ca factored common X windows screen stuff into a common base class. crs 2001-11-11 21:15:30 +0000
  • 05928f28f8 updated notes. crs 2001-11-10 22:28:37 +0000
  • 836d9d2d33 added main app directory to build. crs 2001-11-10 22:28:30 +0000
  • ef3149cead removed unnecessary global scoping operators. crs 2001-10-25 22:17:17 +0000
  • dbdf20e804 changed hider window to move underneath mouse when leaving the screen. this makes it so if the mouse is moved locally, it'll reappear where it was last seen. crs 2001-10-25 22:09:27 +0000
  • c5df2edd14 changed some method names and removed warpCursor() from secondary screen interface. crs 2001-10-25 21:40:29 +0000
  • 5b1826a638 now handling disconnect of secondary screen that has the cursor by jumping back to the primary screen (without trying to notify the now disconnected secondary screen). also fixed blown assert in mapPosition(). crs 2001-10-24 23:29:29 +0000
  • 066910fab8 made calls to X thread safe. crs 2001-10-24 22:33:24 +0000
  • fdb888102b more notes. crs 2001-10-23 22:45:59 +0000
  • 20c7aca1db added cursor hiding. crs 2001-10-23 22:41:46 +0000
  • c9f0b694de can now filter logging by level. crs 2001-10-23 21:23:29 +0000
  • b7533aea2a fixed blown assert trying to find neighbor when there was none. crs 2001-10-23 21:13:08 +0000
  • cfdf6bd73a fixed handling of stream ownership. crs 2001-10-21 00:21:21 +0000
  • 8d1cf844c7 fixed bugs in handling streams. crs 2001-10-21 00:21:02 +0000
  • 3cfbc0f68c threading fixes. had sigmask set in wrong place. was setting m_exit flag potentially after the object had been destroyed. most importantly, RTTI must be enabled on PPC to avoid SIGILL. crs 2001-10-20 20:43:31 +0000
  • 9435639545 some debugging code. crs 2001-10-14 19:16:54 +0000
  • b3291bc2b5 fixed timeout bug in CThreadRep::wait() (negative timeout wouldn't wait forever). also fixed early return from sleep due to signal. now forcing client to initialize CThread to ensure global mutex gets initialized before threads are used. crs 2001-10-14 18:29:43 +0000
  • 6aba3a6f57 removed exception specifications. thread exceptions weren't being listed and they'd have to be added to every one. just doesn't seem worth the trouble. crs 2001-10-14 16:58:01 +0000
  • c6ed114410 stupid bug fixes. writef() used the wrong variable as the number of bytes to write. readf() forgot to prepare the va_list. crs 2001-10-14 14:56:06 +0000
  • 22b99b6ca4 forgot to add the logger files. crs 2001-10-14 14:38:45 +0000
  • 1ed2b43e13 added logging facility and added a bunch of log messages. crs 2001-10-14 14:37:41 +0000
  • 23f948d55a checkpoint. first cut of client and server apps. not tested yet but they compile and *should* work as is. crs 2001-10-08 19:24:46 +0000
  • 23f1b1aba1 updated old files to new implementation crs 2001-10-06 14:18:01 +0000
  • ff81f708e2 Started over. crs 2001-10-06 14:13:28 +0000
  • 27ead1f713 flipped order of buttons to match default X setup. crs 2001-05-14 21:14:49 +0000
  • 8beea84a8d added other mouse and key event handling to CXScreen. key repeat isn't implemented and modifier masks are ignored. modifier masks are new; they indicate the modifier key (shift, ctrl, etc) state at the time of the key event. crs 2001-05-14 21:14:25 +0000
  • fe79ac593c more fixes to reduce latency. nagle agorithm doesn't seem to stay off on a socket on linux because a connection clearly doesn't send data as often as possible. will have to implement a UDP socket to reduce overhead and avoid these delays. wanted to do that anyway. crs 2001-05-13 12:43:16 +0000
  • d0594ea9f3 fixes to avoid update delays. crs 2001-05-13 12:21:11 +0000
  • 2155c00c44 fixed bug in read() that miscalculated the message length. crs 2001-05-13 12:07:32 +0000
  • 900b075e3a initial revision of synergy. currently semi-supports X windows on unix, but client screens don't simulate events other than mouse move. also not supporting clipboard at all yet and the main app is just a temporary framework to test with. must clean up protocol and communication. crs 2001-05-13 11:40:29 +0000