You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(8) |
Sep
(10) |
Oct
(28) |
Nov
(6) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(1) |
Feb
(3) |
Mar
|
Apr
(2) |
May
(14) |
Jun
(8) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Brian P. <br...@us...> - 2007-05-01 23:34:58
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/doc/ Changes by: br...@sc....(none) 07/05/01 16:34:59 Log message: added note about DMX keyboard corruption problem and what to look for Modified files: vncproxy/doc/: setup.html Revision Changes Path 1.7 +7 -0 vncproxy/doc/setup.html |
From: Brian P. <br...@us...> - 2007-04-21 21:14:08
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/doc/ Changes by: br...@sc....(none) 07/04/21 14:14:09 Log message: more info about -H option Modified files: vncproxy/doc/: proxy.html Revision Changes Path 1.7 +6 -0 vncproxy/doc/proxy.html |
From: Brian P. <br...@us...> - 2007-04-21 21:11:39
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 07/04/21 14:11:36 Log message: The -h option for specifying a server hostname/password was broken. Modified files: vncproxy/src/: main.c host_connect.c host_connect.h Revision Changes Path 1.19 +3 -3 vncproxy/src/main.c 1.20 +41 -16 vncproxy/src/host_connect.c 1.2 +2 -1 vncproxy/src/host_connect.h |
From: Brian P. <br...@us...> - 2007-02-28 22:53:57
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 07/02/28 14:53:59 Log message: Fix a bug in which the VNC viewer would sometimes fail to fully update the window when getting a long-ish series of X Expose events. Basically, replace the client's update_rect box with a region. Accumulate request rects in the region, then empty the region in send_update(). Modified files: vncproxy/src/: client_io.c client_io.h Revision Changes Path 1.17 +18 -8 vncproxy/src/client_io.c 1.5 +2 -2 vncproxy/src/client_io.h |
From: Brian P. <br...@us...> - 2007-02-27 19:05:51
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/config/ Changes by: br...@sc....(none) 07/02/27 11:05:42 Log message: Update config script now that VNC SPU is derived from Passthrough SPU. Modified files: vncproxy/config/: crrs.conf Revision Changes Path 1.6 +29 -22 vncproxy/config/crrs.conf |
From: Brian P. <br...@us...> - 2007-02-01 23:29:04
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 07/02/01 15:29:04 Log message: In aio_process_output(), clear the socket's FD if there was nothing to send. Before, we could get into a situation where an FD would get "stuck on" despite nothing to send on the FD. Seemed to occur in conjuction with broken-pipe conditions. Modified files: vncproxy/src/: async_io.c Revision Changes Path 1.6 +10 -2 vncproxy/src/async_io.c |
From: Brian P. <br...@us...> - 2007-01-20 14:34:37
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 07/01/20 06:34:38 Log message: bump best jpegQuality from 80 to 95 (Wes Bethel) Modified files: vncproxy/src/: encode_tight.c Revision Changes Path 1.7 +2 -2 vncproxy/src/encode_tight.c |
From: Brian P. <br...@us...> - 2006-12-22 16:13:28
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/22 08:13:28 Log message: Allocate jpeg buffer large enough to compress any size rect. Controlled with LARGE_JPEG_BUFFERS constant. Modified files: vncproxy/src/: encode_tight.c Revision Changes Path 1.6 +37 -4 vncproxy/src/encode_tight.c |
From: Brian P. <br...@us...> - 2006-12-22 15:02:35
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/22 07:02:34 Log message: cache_send() now returns number of pixels sent. Use this value in send_update() to properly report compression ratio when using RFB caching. Modified files: vncproxy/src/: client_io.c cache.c Revision Changes Path 1.16 +2 -2 vncproxy/src/client_io.c 1.5 +4 -2 vncproxy/src/cache.c |
From: Brian P. <br...@us...> - 2006-12-21 23:57:47
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/config/ Changes by: br...@sc....(none) 06/12/21 15:57:47 Log message: look for VNC_FORCE_JPEG to set the 'force_tight_jpeg' VNC SPU option Modified files: vncproxy/config/: crrs.conf Revision Changes Path 1.5 +1 -0 vncproxy/config/crrs.conf |
From: Brian P. <br...@us...> - 2006-12-21 23:39:03
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/21 15:39:03 Log message: Added -Q option for setting jpeg quality level when using tight encoder. Default is -1 (don't request jpeg encoding). Modified files: vncproxy/src/: main.c options.c options.h Revision Changes Path 1.18 +17 -4 vncproxy/src/main.c 1.3 +1 -0 vncproxy/src/options.c 1.4 +1 -0 vncproxy/src/options.h |
From: Brian P. <br...@us...> - 2006-12-21 23:33:07
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/21 15:33:04 Log message: support for decoding of jpeg-compressed data Modified files: vncproxy/src/: decode_tight.c Revision Changes Path 1.2 +206 -7 vncproxy/src/decode_tight.c |
From: Brian P. <br...@us...> - 2006-12-21 23:32:11
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/21 15:32:12 Log message: send jpeg quality encoding request to servers Modified files: vncproxy/src/: host_connect.c Revision Changes Path 1.19 +11 -1 vncproxy/src/host_connect.c |
From: Brian P. <br...@us...> - 2006-12-21 23:30:56
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/21 15:30:57 Log message: updated dependencies Modified files: vncproxy/src/: Makefile Revision Changes Path 1.4 +20 -14 vncproxy/src/Makefile |
From: Brian P. <br...@us...> - 2006-12-21 23:29:33
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/21 15:29:33 Log message: When forced jpeg tight encoding is enabled (-D) option, bypass the code that looks for solid regions, etc. Just call the jpeg encoder for the whole rectangle. Modified files: vncproxy/src/: encode_tight.c Revision Changes Path 1.5 +15 -3 vncproxy/src/encode_tight.c |
From: Brian P. <br...@us...> - 2006-12-21 21:29:18
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/21 13:29:19 Log message: print a distinct warning if tight encoding is requested but we have to fall back to raw because LastRect is not supported Modified files: vncproxy/src/: client_io.c Revision Changes Path 1.15 +2 -1 vncproxy/src/client_io.c |
From: Brian P. <br...@us...> - 2006-12-18 22:49:16
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/18 14:49:16 Log message: added -D to help/usage info Modified files: vncproxy/src/: main.c Revision Changes Path 1.17 +3 -2 vncproxy/src/main.c |
From: Brian P. <br...@us...> - 2006-12-18 22:48:18
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/18 14:48:17 Log message: Added -D option to force the tight encoder to always use JPEG encoding for all pixel blocks. Modified files: vncproxy/src/: options.h main.c encode_tight.c Revision Changes Path 1.3 +1 -0 vncproxy/src/options.h 1.16 +11 -2 vncproxy/src/main.c 1.4 +9 -3 vncproxy/src/encode_tight.c |
From: Brian P. <br...@us...> - 2006-12-18 22:22:40
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/18 14:22:39 Log message: In send_update() compute the image compression ratio, assuming 3 bytes per pixel is nominal. Run with -d 4 to see the info. Modified files: vncproxy/src/: client_io.c async_io.c async_io.h Revision Changes Path 1.14 +17 -3 vncproxy/src/client_io.c 1.5 +5 -1 vncproxy/src/async_io.c 1.2 +2 -1 vncproxy/src/async_io.h |
From: Brian P. <br...@us...> - 2006-12-18 21:06:58
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/18 13:06:55 Log message: comment about jpeg quality Modified files: vncproxy/src/: host_connect.c Revision Changes Path 1.18 +4 -1 vncproxy/src/host_connect.c |
From: Brian P. <br...@us...> - 2006-12-18 21:05:59
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/18 13:05:58 Log message: log tight compress/quality levels Modified files: vncproxy/src/: client_io.c Revision Changes Path 1.13 +4 -3 vncproxy/src/client_io.c |
From: Brian P. <br...@us...> - 2006-12-16 17:16:08
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/16 09:16:06 Log message: fix breakage introduce by prev check-in when no hostinfo file si specified Modified files: vncproxy/src/: host_connect.c Revision Changes Path 1.17 +9 -4 vncproxy/src/host_connect.c |
From: Brian P. <br...@us...> - 2006-12-16 17:15:34
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/16 09:15:34 Log message: fix dumb bug when setting opt.host Modified files: vncproxy/src/: main.c Revision Changes Path 1.15 +2 -2 vncproxy/src/main.c |
From: Brian P. <br...@us...> - 2006-12-12 15:48:28
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/doc/ Changes by: br...@sc....(none) 06/12/12 07:48:27 Log message: document -p and -H options Modified files: vncproxy/doc/: proxy.html Revision Changes Path 1.6 +18 -0 vncproxy/doc/proxy.html |
From: Brian P. <br...@us...> - 2006-12-12 15:47:48
|
CVSROOT: /cvsroot/vncproxy Module name: vncproxy Repository: vncproxy/src/ Changes by: br...@sc....(none) 06/12/12 07:47:48 Log message: update connect_to_display() for non-X/DMX hosts Modified files: vncproxy/src/: host_connect.c Revision Changes Path 1.16 +92 -92 vncproxy/src/host_connect.c |