summaryrefslogtreecommitdiffstats
path: root/x11vnc
Commit message (Collapse)AuthorAgeFilesLines
* fix deadlock from rfbReleaseExtensionIterator(), fix no libz/libjpeg ↵runge2005-11-253-8/+97
| | | | builds, disable tightvnc-filetransfer if no libpthread, add --without-pthread option, rm // comments, set NAME_MAX if not defined, x11vnc: throttle load if fb update requests not taking place.
* configure.ac: test ... == ... not allowed on all unix.runge2005-10-231-1/+1
|
* x11vnc: -filexfer, -slow_fb, -blackout noptr,...runge2005-10-236-952/+1480
|
* DEFINES -> AM_CFLAGSdscho2005-10-061-1/+1
|
* x11vnc: more gui fixes, gui requests via client_sock, PASSWD_REQUIRED build ↵runge2005-07-186-1068/+1858
| | | | opt.
* x11vnc: setup for new release 0.7.3 while I remember how..runge2005-07-134-729/+704
|
* x11vnc: tweaks for release, fix queue buildup under -viewonly.runge2005-07-136-1050/+1569
|
* x11vnc: more improvements to gui, scary nopassword warning msg.runge2005-07-116-1339/+2836
|
* x11vnc: -grab_buster for XGrabServer deadlock; fix scrolls and copyrect for ↵runge2005-07-096-57/+678
| | | | -clip and -id
* x11vnc: -gui tray now embeds in systray; more improvements to gui.runge2005-07-076-812/+3574
|
* x11vnc: -gui tray mode, httpd.c: check httpListenSock >= 0.runge2005-07-026-173/+1719
|
* x11vnc: track keycode state for heuristics, -sloppy_keys, -wmdt, add ↵runge2005-06-276-735/+1053
| | | | -nodbg as option
* x11vnc: long info and tips when XOpenDisplay fails, reinstate "bad desktop" ↵runge2005-06-214-20/+118
| | | | for wireframe
* configure.ac: HP-UX and OSF1 no -R, x11vnc: second round of beta-testing fixes.runge2005-06-184-733/+871
|
* main.c: XReadScreen check, fix 64bit use of cursors, x11vnc: first round of ↵runge2005-06-146-1245/+2068
| | | | beta-testing fixes, RFE's.
* main.c: no sraRgnSubstract for copyRect, scrolls for x11vnc -scale; add ↵runge2005-06-046-149/+435
| | | | -fixscreen
* main.c: fix copyRect for non-cursor-shape-aware clients.runge2005-05-314-444/+522
|
* x11vnc: scrolling: grabserver, autorepeat throttling, mouse wheel, fix onetilerunge2005-05-256-233/+978
|
* x11vnc: more scrolling, -scr_term, -wait_ui, -nowait_bogrunge2005-05-186-226/+1045
|
* more files to ignoredscho2005-05-141-0/+3
|
* x11vnc: more improvements to -scrollcopyrect and -xkb modes.runge2005-05-146-1765/+5323
|
* socketInitDone -> socketStatedscho2005-05-071-1/+1
|
* x11vnc: -scrollcopyrect/RECORD, etc. configure.ac: customizations for ↵runge2005-05-036-885/+3685
| | | | x11vnc pkg
* x11vnc: -wireframe, -wirecopyrect, -privremote, -safer, -nocmd, -unsafe, ↵runge2005-04-197-1095/+3108
| | | | -noviewonly
* x11vnc: add rawfb setup example misc/ranfb.plrunge2005-04-123-2/+159
|
* x11vnc: fix some -rawfb bugs, add setup:cmdrunge2005-04-117-573/+932
|
* x11vnc: -rawfb, -pipeinput, -xtrap, -flag, ...runge2005-04-1017-288/+2855
|
* x11vnc: use DEC-XTRAP on legacy X11R5, -shiftcmap, -httprunge2005-04-046-234/+526
|
* x11vnc: fix event leaks, build-time customizations, -nolookuprunge2005-03-296-1000/+1553
|
* x11vnc: scale cursors, speed up some scaling, alt arrows, -norepeat Nrunge2005-03-206-1145/+1959
|
* x11vnc: X DAMAGE support, -clip WxH+X+Y, identd.runge2005-03-126-718/+1697
|
* add '-listen ipaddr' optionrunge2005-03-056-642/+949
|
* x11vnc: final changes for 0.7.1 release.runge2005-02-234-986/+1267
|
* x11vnc: -nap is now the default, version str 0.7.1.runge2005-02-226-216/+269
|
* x11vnc: -users lurk=, -solid for cde, -gui ez,.. beginner mode.runge2005-02-146-672/+1823
|
* x11vnc -input to fine tune allow user input. per-client settings -Rrunge2005-02-116-176/+1239
|
* x11vnc -users, fix -solid on gnome/kde, configure.ac pwd.h wait.h and utmpx.hrunge2005-02-096-158/+959
|
* x11vnc -solid color, -opts; tightvnc unix viewer alpha patchrunge2005-02-056-405/+1007
|
* whoops, test version of x11vnc.c leaked out...runge2005-01-241-1889/+0
|
* sync with new cursor mechanism, -timeout, -noalphablend, try :0 if no other ↵runge2005-01-246-303/+2419
| | | | info
* pointerClient was still static.dscho2005-01-181-20/+15
| | | | | | | | | | | | | | | | | | | | | | do not make requestedRegion empty without reason. the cursor handling for clients which don't handle CursorShape updates was completely broken. It originally was very complicated for performance reasons, however, in most cases it made performance even worse, because at idle times there was way too much checking going on, and furthermore, sometimes unnecessary updates were inevitable. The code now is much more elegant: the ClientRec structure knows exactly where it last painted the cursor, and the ScreenInfo structure knows where the cursor shall be. As a consequence there is no more rfbDrawCursor()/rfbUndrawCursor(), no more dontSendFramebufferUpdate, and no more isCursorDrawn. It is now possible to have clients which understand CursorShape updates and clients which don't at the same time. rfbSetCursor no longer has the option freeOld; this is obsolete, as the cursor structure knows what to free and what not.
* add cursor alphablending to rfb.h cursor.c, x11vnc -alphablend -snapfb etc..runge2005-01-166-1654/+2988
|
* x11vnc: improve XFIXES cursor transparency, more remote-control cmds.runge2004-12-276-606/+1586
|
* x11vnc: need tkx11vnc and tkx11vnc.h in x11vnc packagerunge2004-12-233-11/+13
|
* x11vnc: need tkx11vnc and tkx11vnc.h in x11vnc packagerunge2004-12-231-2/+2
|
* x11vnc: need tkx11vnc and tkx11vnc.h in x11vnc packagerunge2004-12-231-1/+1
|
* x11vnc: minor tweaks for x11vnc 0.7 file releaserunge2004-12-236-48/+358
|
* x11vnc: minor tweaks for 0.7 file releaserunge2004-12-205-13/+74
|
* x11vnc: synchronous mode for -remote, string cleanuprunge2004-12-206-619/+1298
|
* x11vnc: XFIXES cursorshape, XRANDR resize, remote control, guirunge2004-12-176-1678/+11934
|