|
|
|
2004-01-19 Karl Runge <runge@karlrunge.com>
|
|
|
|
* improvements to pointer event handling primarily during window
|
|
|
|
dragging. check_user_input() for non-threaded and pointer()
|
|
|
|
for threaded. Revert to old way via -old_pointer option.
|
|
|
|
* some memory I/O improvement by using copy_tiles() instead
|
|
|
|
of copy_tile(). New one does rows of tiles at same time.
|
|
|
|
Revert to old way via -old_copytile.
|
|
|
|
* handle case of more mouse buttons on client than on X server.
|
|
|
|
* added -buttonmap option for finer control over button differences.
|
|
|
|
|
|
|
|
2004-01-09 Karl Runge <runge@karlrunge.com>
|
|
|
|
* options -allow / -localhost for simple IP based access screening
|
|
|
|
* option -nodragging to skip all screen updates during mouse drags
|
|
|
|
(thanks to Michal Sabala)
|
|
|
|
* option -input_skip to allow users to tune watch_loop dropthru rate
|
|
|
|
* try to avoid wasting RAM for framebuffer under -nofb
|
|
|
|
* cleanup wrt bpp vs. depth
|
|
|
|
|
|
|
|
2003-12-08 Karl Runge <runge@karlrunge.com>
|
|
|
|
* add Xbell support using XKEYBOARD extension (disable: -nobell)
|
|
|
|
* add "-nofb" to disable framebuffer, i.e. mouse + keyboard only (!)
|
|
|
|
* add "-notruecolor" to force indexed 8bpp color (when 8bpp)
|
|
|
|
* make alias "-forever" for "-many"
|
|
|
|
|
|
|
|
From Karl (x11vnc's father) on Apr 2, 2003:
|
|
|
|
|
|
|
|
New option -nocursor to not display the vncviewer local cursor if user
|
|
|
|
does not want it (also caused some problems with older vncviewers)
|
|
|
|
|
|
|
|
New option -mouse to show the position of the X server mouse (i.e. lagged
|
|
|
|
from the user's vnc cursor position). Also: -mouseX will try to show
|
|
|
|
the a different cursor (X) when on the root background.
|
|
|
|
|
|
|
|
New option -many to wait for more connections rather than exiting when
|
|
|
|
the first client(s) disconnect.
|
|
|
|
|
|
|
|
New option -flashcmap to try to follow installed colormaps under 8bpp
|
|
|
|
indexed color as pointer is moved.
|
|
|
|
|
|
|
|
New option -nap to watch for low activity and throttle down the polling
|
|
|
|
rate. Useful on shared machines to keep the load down.
|
|
|
|
|
|
|
|
Experimental option -id <windowid> to show just that window and not
|
|
|
|
the whole display. Some remaining bugs and inconvenient behavior...
|
|
|
|
(e.g. new toplevels can be unseen)
|
|
|
|
|
|
|
|
Fixed bug on multi-headed machines where the screen number was being
|
|
|
|
ignored in a number of places.
|
|
|
|
|
|
|
|
Fixed bug wrt connect_once mode. Now just refuses new clients unless
|
|
|
|
shared rather than terminating all clients.
|
|
|
|
|
|
|
|
Try to follow changing default colormap under 8bpp indexed color
|
|
|
|
as color cells are added.
|
|
|
|
|
|
|
|
Needed to pick up HAVE_LIBPTHREAD from autoconf.
|
|
|
|
|
|
|
|
defined a select() macro for usleep() since usleep is not always thread
|
|
|
|
safe.
|
|
|
|
|
|
|
|
Catch and exit on errors in the shm setup work (XShmCreateImage, shmget,...)
|
|
|
|
and moved the creation and removal work to separate utility functions.
|
|
|
|
|
|
|
|
Added signal and X error handlers to try to clean out the shm objects
|
|
|
|
before exiting on interrupt, etc.
|
|
|
|
|
|
|
|
Improved performance a bit on the memcmp() in scan_display() by checking
|
|
|
|
the whole line first.
|
|
|
|
|
|
|
|
Added a workaround when threaded where libvncserver may disconnect too
|
|
|
|
early if it does not hear from a client (a small heartbeat is sent).
|
|
|
|
This may not be needed any longer.
|
|
|
|
|
|
|
|
If -desktop has not been prescribed, try to choose a title based on DISPLAY
|
|
|
|
and the hostname (and window name under -id).
|