From modemhero at users.sourceforge.net Mon Jul 3 12:03:26 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Mon, 03 Jul 2006 17:03:26 +0000 Subject: [netrek-cvs] client/netrekxp/src defaults.c, 1.28, 1.29 local.c, 1.46, 1.47 Message-ID: Update of /cvsroot/netrek/client/netrekxp/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18965/src Modified Files: defaults.c local.c Log Message: Added much needed comments to the confusing cloaking draw logic in local.c Fixed the phaser sound counter so that it is properly reset even when you are cloaked - other people's phaser sounds were not being played while you were cloaked, this bug has been around a long time and is in COW as well. Fixed reversed order of mainresizeable and maintitlebar functions in the defaults list. Switched around 2 macros in netrekrc to a more logical order. Updated todo list. Index: local.c =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/local.c,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- local.c 26 Jun 2006 01:21:01 -0000 1.46 +++ local.c 3 Jul 2006 17:03:24 -0000 1.47 @@ -801,6 +801,8 @@ } } + /* If cloaking cycle is complete, just draw the cloak icon, and skip over + the ship drawing code with the goto statement */ if (j->p_flags & PFCLOAK && (j->p_cloakphase == (CLOAK_PHASES - 1))) { if (myPlayer (j) @@ -820,6 +822,8 @@ goto shieldlabel; /* draw the shield even when * cloaked */ } + /* At this point, it's another player who is fully cloaked - skip + the rest of the draw function */ continue; } if (j->p_status == PALIVE) @@ -995,17 +999,20 @@ w); } + /* If the ship is not yet fully cloaked, draw the cloak icon on top + of the ship icon */ if (j->p_cloakphase > 0) { W_WriteBitmap (dx - (cloak_width / 2), dy - (cloak_height / 2), cloakicon, playerColor (j), w); if (!myPlayer (j) && !isObsLockPlayer(j)) - /* if my player, or observing that player, draw the shield */ + /* If not my player, or not observing that player, we exit the draw + function here */ continue; } - - shieldlabel: + /* This is the goto reentry point for the case when your ship is fully cloaked */ + shieldlabel: #ifdef BEEPLITE if ((useLite && emph_player_seq_n[j->p_no] > 0) @@ -1217,8 +1224,17 @@ } #endif - if (j->p_flags & PFCLOAK) /* when cloaked stop here */ + /* When cloaked, stop here. But need to reset the sound_phaser counter + to 0, otherwise other people's phaser sounds don't play while you are + cloaked. Not necessary to check against phaser PHFREE status.*/ + if (j->p_flags & PFCLOAK) + { +#ifdef SOUND + if (myPlayer(j) || isObsLockPlayer(j)) + sound_phaser = 0; +#endif continue; + } { int color = playerColor (j); Index: defaults.c =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/defaults.c,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- defaults.c 25 Jun 2006 08:19:40 -0000 1.28 +++ defaults.c 3 Jul 2006 17:03:24 -0000 1.29 @@ -211,15 +211,15 @@ NULL } }, - {"mainTitleBar", &mainTitleBar, RC_BOOL, + {"mainResizeable", &mainResizeable, RC_BOOL, { - "Start main window with title bar on (can be toggled by alt+enter)", + "Make main window resizeable", NULL } }, - {"mainResizeable", &mainResizeable, RC_BOOL, + {"mainTitleBar", &mainTitleBar, RC_BOOL, { - "Make main window resizeable", + "Start main window with title bar on (can be toggled by alt+enter)", NULL } }, From modemhero at users.sourceforge.net Mon Jul 3 12:03:26 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Mon, 03 Jul 2006 17:03:26 +0000 Subject: [netrek-cvs] client/netrekxp NetrekXP to do list.C,1.58,1.59 Message-ID: Update of /cvsroot/netrek/client/netrekxp In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18965 Modified Files: NetrekXP to do list.C Log Message: Added much needed comments to the confusing cloaking draw logic in local.c Fixed the phaser sound counter so that it is properly reset even when you are cloaked - other people's phaser sounds were not being played while you were cloaked, this bug has been around a long time and is in COW as well. Fixed reversed order of mainresizeable and maintitlebar functions in the defaults list. Switched around 2 macros in netrekrc to a more logical order. Updated todo list. Index: NetrekXP to do list.C =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/NetrekXP to do list.C,v retrieving revision 1.58 retrieving revision 1.59 diff -u -d -r1.58 -r1.59 --- NetrekXP to do list.C 23 Jun 2006 10:07:04 -0000 1.58 +++ NetrekXP to do list.C 3 Jul 2006 17:03:24 -0000 1.59 @@ -1,8 +1,7 @@ List for the netrekrc/installer: 1) there should be some sort of chance to give default resolution in GUI, which then maps windows accordingly. -2) Add chance for player to input their default login name - tired of seeing -new-be-nice!! +2) fix netrekrc append so that it doesn't keep adding new lines to the netrekrc Things not gonna happen, or server problems: 1) Player list messaging doesn't work if you can't see player (cloaked, too far @@ -21,7 +20,7 @@ 1) cloaking/shields at warp 0 doesn't update someone else's tactical on what you did if there is no movement anywhere on map, and observer sound also messes up 2) Observers don't get any geno message at all due to whydead not being sent as -a critical packet +a critical packet - fixed 3) The new smooth turning only working on self, not obs or others - short packets only send headings of 16 positions. 4) Others speed only sent to 16..messed up for obs locked onto puck in hockey, @@ -43,9 +42,9 @@ 2) Save options for observer/servernick/servertype need to be saved 3) A lot of annoying pop up windows (like macro window, default controls) should be closeable by shift right click. -4) Workable windows installer would be nice +4) Get source code for installer from Joe. 5) Get square planet bitmaps so I can turn them into mapped rotating globes. -6) ships at warp 0 near newplanets blink in and out of galactic - may be fixed +6) ships at warp 0 near newplanets blink in and out of galactic - not quite fixed 7) problem with message windows, text getting garbled near top, goes away with flushing with scroll button. Doesn't show up initially, but do something like use scroll button, alt-enter, change to review all..and it shows up. From modemhero at users.sourceforge.net Mon Jul 3 12:03:26 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Mon, 03 Jul 2006 17:03:26 +0000 Subject: [netrek-cvs] client/netrekxp/resources/docs changes.txt, 1.77, 1.78 netrekrc, 1.7, 1.8 Message-ID: Update of /cvsroot/netrek/client/netrekxp/resources/docs In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18965/resources/docs Modified Files: changes.txt netrekrc Log Message: Added much needed comments to the confusing cloaking draw logic in local.c Fixed the phaser sound counter so that it is properly reset even when you are cloaked - other people's phaser sounds were not being played while you were cloaked, this bug has been around a long time and is in COW as well. Fixed reversed order of mainresizeable and maintitlebar functions in the defaults list. Switched around 2 macros in netrekrc to a more logical order. Updated todo list. Index: netrekrc =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/netrekrc,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- netrekrc 25 Jun 2006 08:19:40 -0000 1.7 +++ netrekrc 3 Jul 2006 17:03:24 -0000 1.8 @@ -696,12 +696,6 @@ macro.0.A:% /_/ \__/\__//_/ /_/ \__/_/\_\ XP 2006, v1.1 macro.0.A:% Get it today at http://www.netrek.org -macro.).A: /* Get the latest version of Netrek XP 2006 today! */ -macro.).A: /* Current version is 1.1, released June 26, 2006 */ -macro.).A: /* Download it at http://www.netrek.org/files/NetrekXP_2006/ */ -macro.).A: /* or */ -macro.).A: /* http://www.playnetrek.org/ */ - macro.a.A:. o Just | Squeal boy... macro.a.A:. //\ %p: ABUSED! Plain | just like a macro.a.A:. o )/ Wrong (tm) | hog! @@ -866,6 +860,13 @@ macro.9.A:% .:>: .> >. :/*/:./.X__ | macro.9.A:% --------------------:--:--**#:-<<:^/^<**#**#**:._/--------/->--- +macro.).A: /* Get the latest version of Netrek XP 2006 today! */ +macro.).A: /* Current version is 1.1, released June 26, 2006 */ +macro.).A: /* Download it at http://www.netrek.org/files/NetrekXP_2006/ */ +macro.).A: /* or */ +macro.).A: /* http://www.playnetrek.org/ */ + + mac.e.T: Escorting %g (%d%%D %s%%S %f%%F) mac.V.A: %T%c PING stats: Average: %v ms, Stdv: %V ms, Loss: %y%% mac.x.T: (%T%c) My Fuel: %f%% Index: changes.txt =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/changes.txt,v retrieving revision 1.77 retrieving revision 1.78 diff -u -d -r1.77 -r1.78 --- changes.txt 26 Jun 2006 01:21:01 -0000 1.77 +++ changes.txt 3 Jul 2006 17:03:24 -0000 1.78 @@ -1,4 +1,5 @@ Netrek XP 2006, Version 1.1: (Released 26-Jun-2006) +- other people's phasers sounds were not being heard if you were cloaked, this has been fixed - added "puckCircle: on/(off)" to show the puck's max shot range as a circle around your ship, works on hockey servers only. - client can now tell if a ping-pong plasma is hostile to your ship (no longer assumes your own From modemhero at users.sourceforge.net Tue Jul 4 13:03:31 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Tue, 04 Jul 2006 18:03:31 +0000 Subject: [netrek-cvs] client/netrekxp NetrekXP to do list.C, 1.59, 1.60 clientr.suo, 1.36, 1.37 Message-ID: Update of /cvsroot/netrek/client/netrekxp In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24810 Modified Files: NetrekXP to do list.C clientr.suo Log Message: Bug fix for planet highlighting and unknown planets. Cleaned up comments in map() redraw planet routine, and reverted the draw stationary ship counter back to 10 - blinking ships is a feature not a bug. Index: NetrekXP to do list.C =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/NetrekXP to do list.C,v retrieving revision 1.59 retrieving revision 1.60 diff -u -d -r1.59 -r1.60 --- NetrekXP to do list.C 3 Jul 2006 17:03:24 -0000 1.59 +++ NetrekXP to do list.C 4 Jul 2006 18:03:28 -0000 1.60 @@ -44,7 +44,6 @@ closeable by shift right click. 4) Get source code for installer from Joe. 5) Get square planet bitmaps so I can turn them into mapped rotating globes. -6) ships at warp 0 near newplanets blink in and out of galactic - not quite fixed 7) problem with message windows, text getting garbled near top, goes away with flushing with scroll button. Doesn't show up initially, but do something like use scroll button, alt-enter, change to review all..and it shows up. Index: clientr.suo =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/clientr.suo,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 Binary files /tmp/cvs0A5GuZ and /tmp/cvsTVMgOt differ From modemhero at users.sourceforge.net Tue Jul 4 13:03:31 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Tue, 04 Jul 2006 18:03:31 +0000 Subject: [netrek-cvs] client/netrekxp/src map.c,1.20,1.21 Message-ID: Update of /cvsroot/netrek/client/netrekxp/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24810/src Modified Files: map.c Log Message: Bug fix for planet highlighting and unknown planets. Cleaned up comments in map() redraw planet routine, and reverted the draw stationary ship counter back to 10 - blinking ships is a feature not a bug. Index: map.c =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/map.c,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- map.c 12 Jun 2006 14:10:31 -0000 1.20 +++ map.c 4 Jul 2006 18:03:29 -0000 1.21 @@ -550,7 +550,7 @@ #ifdef BEEPLITE } #endif - if (planetHighlighting) /* Draw halo */ + if (planetHighlighting && (l->pl_info & me->p_team)) /* Draw halo */ W_WriteCircle(mapw, dx, dy, BMP_MPLANET_WIDTH / 2, l->pl_armies > 4 ? 1 : 0, planetColor(l)); @@ -786,14 +786,12 @@ } /* Erase the ships */ - for (i = 0, update = lastUpdate; i < MAXPLAYER; i++, update++) { if (redrawPlayer[i]) { /* Erase the player if redrawPlayer[i] is set - * or lastUpdate allows it. */ - + or lastUpdate allows it. */ if (mclearzone[2][i]) { /* XFIX */ @@ -803,25 +801,17 @@ checkRedraw (mclearzone[4][i], mclearzone[5][i]); mclearzone[2][i] = 0; } - - /* Reset the last redrawn counter */ - *update = 0; } - else if (*update == 1) + else if (*update == 10) { - /* - * Redraw stationary ships every update so that these - * ships are not hidden by planet updates. - */ - + /* Redraw stationary ships every update so that these + ships are not hidden by planet updates. */ redrawPlayer[i] = 1; } else - { ++(*update); - } } } From modemhero at users.sourceforge.net Sat Jul 8 23:26:13 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Sun, 09 Jul 2006 04:26:13 +0000 Subject: [netrek-cvs] client/netrekxp clientr.suo,1.37,1.38 Message-ID: Update of /cvsroot/netrek/client/netrekxp In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv7024 Modified Files: clientr.suo Log Message: Changing default macrokey back to X. Index: clientr.suo =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/clientr.suo,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 Binary files /tmp/cvswMzX8w and /tmp/cvsGMMUig differ From modemhero at users.sourceforge.net Sat Jul 8 23:26:13 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Sun, 09 Jul 2006 04:26:13 +0000 Subject: [netrek-cvs] client/netrekxp/resources/docs netrekrc,1.8,1.9 Message-ID: Update of /cvsroot/netrek/client/netrekxp/resources/docs In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv7024/resources/docs Modified Files: netrekrc Log Message: Changing default macrokey back to X. Index: netrekrc =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/netrekrc,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- netrekrc 3 Jul 2006 17:03:24 -0000 1.8 +++ netrekrc 9 Jul 2006 04:26:10 -0000 1.9 @@ -12,7 +12,7 @@ # Key to switch to macro mode # TAB, ESC could be used too -macroKey: m +macroKey: X # Show AGRI planet names in caps on map agriCAPS: on From modemhero at users.sourceforge.net Sun Jul 9 03:25:40 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Sun, 09 Jul 2006 08:25:40 +0000 Subject: [netrek-cvs] client/netrekxp/resources/docs changes.txt,1.78,1.79 Message-ID: Update of /cvsroot/netrek/client/netrekxp/resources/docs In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv7034/resources/docs Modified Files: changes.txt Log Message: Middle mouse button now closes help window (lots of complaints about not being able to close help window due to accidentally remapping the h key when trying to close the window). Index: changes.txt =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/changes.txt,v retrieving revision 1.78 retrieving revision 1.79 diff -u -d -r1.78 -r1.79 --- changes.txt 3 Jul 2006 17:03:24 -0000 1.78 +++ changes.txt 9 Jul 2006 08:25:38 -0000 1.79 @@ -1,4 +1,5 @@ Netrek XP 2006, Version 1.1: (Released 26-Jun-2006) +- middle mouse button now closes the help window - other people's phasers sounds were not being heard if you were cloaked, this has been fixed - added "puckCircle: on/(off)" to show the puck's max shot range as a circle around your ship, works on hockey servers only. From modemhero at users.sourceforge.net Sun Jul 9 03:25:40 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Sun, 09 Jul 2006 08:25:40 +0000 Subject: [netrek-cvs] client/netrekxp NetrekXP to do list.C, 1.60, 1.61 clientr.suo, 1.38, 1.39 Message-ID: Update of /cvsroot/netrek/client/netrekxp In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv7034 Modified Files: NetrekXP to do list.C clientr.suo Log Message: Middle mouse button now closes help window (lots of complaints about not being able to close help window due to accidentally remapping the h key when trying to close the window). Index: NetrekXP to do list.C =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/NetrekXP to do list.C,v retrieving revision 1.60 retrieving revision 1.61 diff -u -d -r1.60 -r1.61 --- NetrekXP to do list.C 4 Jul 2006 18:03:28 -0000 1.60 +++ NetrekXP to do list.C 9 Jul 2006 08:25:37 -0000 1.61 @@ -15,6 +15,8 @@ 6) admin commands aren't set to executable by default, and the system call doesn't seem to work (might be executing in wrong directory)? 7) twarping to base docked on base causes the twarp problem +8) Server sometimes not updating tract/press flags for observers, several instances +where a ship is seen to have pressors on constantly, even when they are off Things that go wrong when short packets are on: 1) cloaking/shields at warp 0 doesn't update someone else's tactical on what you did if Index: clientr.suo =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/clientr.suo,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 Binary files /tmp/cvsARJ9y5 and /tmp/cvsQoSnUc differ From modemhero at users.sourceforge.net Sun Jul 9 03:25:40 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Sun, 09 Jul 2006 08:25:40 +0000 Subject: [netrek-cvs] client/netrekxp/src helpwin.c, 1.4, 1.5 newwin.c, 1.41, 1.42 Message-ID: Update of /cvsroot/netrek/client/netrekxp/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv7034/src Modified Files: helpwin.c newwin.c Log Message: Middle mouse button now closes help window (lots of complaints about not being able to close help window due to accidentally remapping the h key when trying to close the window). Index: newwin.c =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/newwin.c,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- newwin.c 23 Jun 2006 08:50:14 -0000 1.41 +++ newwin.c 9 Jul 2006 08:25:38 -0000 1.42 @@ -848,7 +848,8 @@ else #endif W_SetWindowExposeHandler (helpWin, fillhelp); - W_SetWindowKeyDownHandler (helpWin, helpaction); + W_SetWindowKeyDownHandler (helpWin, helpaction); + W_SetWindowButtonHandler (helpWin, helpaction); #ifdef META metaWin = W_MakeMenu ("MetaServer List", 0, 0, 72, num_servers + 2, Index: helpwin.c =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/helpwin.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- helpwin.c 7 May 2006 16:59:27 -0000 1.4 +++ helpwin.c 9 Jul 2006 08:25:38 -0000 1.5 @@ -215,7 +215,7 @@ char helpmessage[MAXHELP]; - /* 4 column help window. THis may be changed depending on font size */ + /* 4 column help window. This may be changed depending on font size */ for (column = 0; column < 4; column++) { for (row = 1; row < HELPMESSAGES / 4 + 2; row++) @@ -249,6 +249,13 @@ int i, message_number = -1; int row, column = 0; + /* Close window? */ + if (data->key == W_MBUTTON) + { + W_UnmapWindow (helpWin); + return; + } + /* Let's find row and column from mouse coordinates */ row = (data->y - 4)/ W_Textheight; for (i = 0; i < 4; i++) From modemhero at users.sourceforge.net Tue Jul 11 00:06:27 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Tue, 11 Jul 2006 05:06:27 +0000 Subject: [netrek-cvs] client/netrekxp clientr.suo, 1.39, 1.40 compile.txt, 1.9, 1.10 Message-ID: Update of /cvsroot/netrek/client/netrekxp In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv3202 Modified Files: clientr.suo compile.txt Log Message: Updated compile instructions. Index: compile.txt =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/compile.txt,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- compile.txt 12 May 2006 01:54:18 -0000 1.9 +++ compile.txt 11 Jul 2006 05:06:24 -0000 1.10 @@ -1,4 +1,7 @@ -This source tree was tested with MS Visual C++ 6.0 and Borland C Builder 5.5 +This source tree was tested with Borland C Builder 5.5, and Microsoft Visual C++ 2005 +Express Edition. The client can also be compiled with MS Visual C++ 6.0, and the instructions +below explain how to do so. However, this compiler is no longer supported by the Netrek +XP 2006 author as it is not free software (everything else needed for compiling is free). I'd like however to discourage you from using Borland's compiler unless you know how to debug its binaries. The output is also slower even though speed optimizations @@ -27,6 +30,14 @@ Follow setup instructions from builder readme file to create proper configuration files. Otherwise the compiler and linker won't find the correct paths. +If you're building with Microsoft Visual Studio 2005 + +This is the preferred compiler. You will need the SDK from the web, as the software +doesn't come with the necessary files. Additionally, DirectX SDK is probably needed too, +for the SDL support. If you use the studio files that come with the source, +it should already have all the proper configuration set up, such as links to the +lib files and using the proper resource files. + Step 3: -------- Open command prompt in the source tree directory and run build.cmd @@ -36,18 +47,6 @@ If you were compiling with Visual C++ you will also have a InstCWD\tmp folder containing lots of objects. Just delete it. -Other Notes: ------------- -Additional instructions for compiling with Microsoft Visual C++ 2005 Express Edition, -aka Microsoft Visual Studio 2005 - -You will need the SDK from the web, as the software doesn't come with the necessary files. -Additionally, DirectX SDK is probably needed too, for the SDL support. -Compile the entire project in studio (which includes clientr, curslib, and winkey), -then run the build script from DOS prompt. I (Bill) have commented out the build lines -that used cscript to compile the source since that command doesn't work with Visual -Studio. - That's pretty much all. Stas Pirogov (keyos at keyos.org) Index: clientr.suo =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/clientr.suo,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 Binary files /tmp/cvsIpQO3l and /tmp/cvsJcdBpX differ From modemhero at users.sourceforge.net Tue Jul 11 00:06:27 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Tue, 11 Jul 2006 05:06:27 +0000 Subject: [netrek-cvs] client/netrekxp/src/cursors curslib.suo,1.1,1.2 Message-ID: Update of /cvsroot/netrek/client/netrekxp/src/cursors In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv3202/src/cursors Modified Files: curslib.suo Log Message: Updated compile instructions. Index: curslib.suo =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/cursors/curslib.suo,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsuDXhkr and /tmp/cvstH2vO2 differ