From modemhero at users.sourceforge.net Mon Aug 7 03:04:08 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Mon, 07 Aug 2006 08:04:08 +0000 Subject: [netrek-cvs] client/netrekxp/src mswindow.c,1.37,1.38 Message-ID: Update of /cvsroot/netrek/client/netrekxp/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17824/src Modified Files: mswindow.c Log Message: Upped max scroll buffer size. Updated todo list. Index: mswindow.c =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/mswindow.c,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- mswindow.c 23 Jun 2006 08:50:14 -0000 1.37 +++ mswindow.c 7 Aug 2006 08:04:05 -0000 1.38 @@ -92,7 +92,7 @@ #ifdef DEBUG #define MAX_SCROLLWINDOW_LINES 300 #else -#define MAX_SCROLLWINDOW_LINES 100 +#define MAX_SCROLLWINDOW_LINES 300 /* Was 100, but that's too small! - BB 7/2006*/ #endif //The max # lines a scrollwindow will have From modemhero at users.sourceforge.net Mon Aug 7 03:04:07 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Mon, 07 Aug 2006 08:04:07 +0000 Subject: [netrek-cvs] client/netrekxp/resources/docs changes.txt,1.79,1.80 Message-ID: Update of /cvsroot/netrek/client/netrekxp/resources/docs In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17824/resources/docs Modified Files: changes.txt Log Message: Upped max scroll buffer size. Updated todo list. Index: changes.txt =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/changes.txt,v retrieving revision 1.79 retrieving revision 1.80 diff -u -d -r1.79 -r1.80 --- changes.txt 9 Jul 2006 08:25:38 -0000 1.79 +++ changes.txt 7 Aug 2006 08:04:05 -0000 1.80 @@ -1,3 +1,6 @@ +Netrek XP 2006, Version 1.2: +- upped max number of lines in the message window scrollback buffer from 100 to 300 + 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 From modemhero at users.sourceforge.net Mon Aug 7 03:04:07 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Mon, 07 Aug 2006 08:04:07 +0000 Subject: [netrek-cvs] client/netrekxp NetrekXP to do list.C, 1.61, 1.62 clientr.suo, 1.40, 1.41 Message-ID: Update of /cvsroot/netrek/client/netrekxp In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17824 Modified Files: NetrekXP to do list.C clientr.suo Log Message: Upped max scroll buffer size. Updated todo list. Index: NetrekXP to do list.C =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/NetrekXP to do list.C,v retrieving revision 1.61 retrieving revision 1.62 diff -u -d -r1.61 -r1.62 --- NetrekXP to do list.C 9 Jul 2006 08:25:37 -0000 1.61 +++ NetrekXP to do list.C 7 Aug 2006 08:04:05 -0000 1.62 @@ -54,6 +54,8 @@ down there at bottom of screen. Apprently the native windows function doesn't properly scroll text that is outside the viewable window. 8) Have client utilize new server torp vector code +9) planet owner on galactic overlaps with new fuel can graphic +10) update dashboard on receiving a ship cap packet Stas's list: - color coded playerlist. Index: clientr.suo =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/clientr.suo,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 Binary files /tmp/cvsaUR33Q and /tmp/cvscRALXb differ From modemhero at users.sourceforge.net Thu Aug 10 05:00:54 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Thu, 10 Aug 2006 10:00:54 +0000 Subject: [netrek-cvs] client/netrekxp/src defaults.c, 1.29, 1.30 input.c, 1.13, 1.14 Message-ID: Update of /cvsroot/netrek/client/netrekxp/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25264/src Modified Files: defaults.c input.c Log Message: Added in support for multiline macros using the NEWMACRO system with the recipient being a conditional variable, i.e. %p, %z, etc. Prior to this change, only single line macros could be sent using a conditional variable for the recipient. Changes were made as follows: struct.h: New variable (int multi) in struct macro_list. defaults.c: Initialize multi to 0, set to 1 in the case of multiline macros that are sent by mouse targetting. input.c: Check for value of multi in the case of mouse targetted macros. If multi is 1, continue reading in the rest of the macro. If not, break out of loop per usual. Index: input.c =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/input.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- input.c 28 May 2006 23:05:12 -0000 1.13 +++ input.c 10 Aug 2006 10:00:52 -0000 1.14 @@ -2041,7 +2041,13 @@ if (!pmacro (c, who, data)) W_Beep (); - +#ifdef MULTILINE_MACROS + if (macro[c].multi == 1) + { + found = 1; + break; /* Loop again */ + } +#endif return; break; } Index: defaults.c =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/defaults.c,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- defaults.c 3 Jul 2006 17:03:24 -0000 1.29 +++ defaults.c 10 Aug 2006 10:00:52 -0000 1.30 @@ -947,6 +947,7 @@ else { macro[macrocnt].key = c; + macro[macrocnt].multi = 0; if (str[0] == '.') { @@ -1000,9 +1001,19 @@ #ifdef MULTILINE_MACROS if (keysused[macro[macrocnt].key]) { - macro[keysused[macro[macrocnt].key] - 1].type = - NEWMULTIM; - macro[macrocnt].type = NEWMULTIM; + /* Don't switch mouse targeted multiline macros to type + multiline, just flag them as being multiline */ + if (macro[macrocnt].type == NEWMMOUSE) + { + macro[keysused[macro[macrocnt].key] - 1].multi = 1; + macro[macrocnt].multi = 1; + } + else + { + macro[keysused[macro[macrocnt].key] - 1].type = + NEWMULTIM; + macro[macrocnt].type = NEWMULTIM; + } } else { From modemhero at users.sourceforge.net Thu Aug 10 05:00:54 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Thu, 10 Aug 2006 10:00:54 +0000 Subject: [netrek-cvs] client/netrekxp/include struct.h,1.10,1.11 Message-ID: Update of /cvsroot/netrek/client/netrekxp/include In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25264/include Modified Files: struct.h Log Message: Added in support for multiline macros using the NEWMACRO system with the recipient being a conditional variable, i.e. %p, %z, etc. Prior to this change, only single line macros could be sent using a conditional variable for the recipient. Changes were made as follows: struct.h: New variable (int multi) in struct macro_list. defaults.c: Initialize multi to 0, set to 1 in the case of multiline macros that are sent by mouse targetting. input.c: Check for value of multi in the case of mouse targetted macros. If multi is 1, continue reading in the rest of the macro. If not, break out of loop per usual. Index: struct.h =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/include/struct.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- struct.h 28 May 2006 23:05:11 -0000 1.10 +++ struct.h 10 Aug 2006 10:00:52 -0000 1.11 @@ -532,6 +532,7 @@ struct macro_list { int type; + int multi; unsigned char key; char who; char *string; From modemhero at users.sourceforge.net Thu Aug 10 05:00:54 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Thu, 10 Aug 2006 10:00:54 +0000 Subject: [netrek-cvs] client/netrekxp clientr.suo,1.41,1.42 Message-ID: Update of /cvsroot/netrek/client/netrekxp In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25264 Modified Files: clientr.suo Log Message: Added in support for multiline macros using the NEWMACRO system with the recipient being a conditional variable, i.e. %p, %z, etc. Prior to this change, only single line macros could be sent using a conditional variable for the recipient. Changes were made as follows: struct.h: New variable (int multi) in struct macro_list. defaults.c: Initialize multi to 0, set to 1 in the case of multiline macros that are sent by mouse targetting. input.c: Check for value of multi in the case of mouse targetted macros. If multi is 1, continue reading in the rest of the macro. If not, break out of loop per usual. Index: clientr.suo =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/clientr.suo,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 Binary files /tmp/cvsvf2Pq0 and /tmp/cvsGf6W1F differ From modemhero at users.sourceforge.net Thu Aug 10 05:00:54 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Thu, 10 Aug 2006 10:00:54 +0000 Subject: [netrek-cvs] client/netrekxp/resources/docs changes.txt,1.80,1.81 Message-ID: Update of /cvsroot/netrek/client/netrekxp/resources/docs In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25264/resources/docs Modified Files: changes.txt Log Message: Added in support for multiline macros using the NEWMACRO system with the recipient being a conditional variable, i.e. %p, %z, etc. Prior to this change, only single line macros could be sent using a conditional variable for the recipient. Changes were made as follows: struct.h: New variable (int multi) in struct macro_list. defaults.c: Initialize multi to 0, set to 1 in the case of multiline macros that are sent by mouse targetting. input.c: Check for value of multi in the case of mouse targetted macros. If multi is 1, continue reading in the rest of the macro. If not, break out of loop per usual. Index: changes.txt =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/changes.txt,v retrieving revision 1.80 retrieving revision 1.81 diff -u -d -r1.80 -r1.81 --- changes.txt 7 Aug 2006 08:04:05 -0000 1.80 +++ changes.txt 10 Aug 2006 10:00:52 -0000 1.81 @@ -1,4 +1,5 @@ Netrek XP 2006, Version 1.2: +- added support for multiline macros sent using NEWMACRO variables (%p, %z, etc) - upped max number of lines in the message window scrollback buffer from 100 to 300 Netrek XP 2006, Version 1.1: (Released 26-Jun-2006) From modemhero at users.sourceforge.net Thu Aug 10 05:59:17 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Thu, 10 Aug 2006 10:59:17 +0000 Subject: [netrek-cvs] client/netrekxp/resources/docs changes.txt,1.81,1.82 Message-ID: Update of /cvsroot/netrek/client/netrekxp/resources/docs In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18982/resources/docs Modified Files: changes.txt Log Message: main.c: Added new startup option, -L, to log to an automatically generated logfile that is datestamped. Index: changes.txt =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/changes.txt,v retrieving revision 1.81 retrieving revision 1.82 diff -u -d -r1.81 -r1.82 --- changes.txt 10 Aug 2006 10:00:52 -0000 1.81 +++ changes.txt 10 Aug 2006 10:59:15 -0000 1.82 @@ -1,4 +1,6 @@ Netrek XP 2006, Version 1.2: +- added -L option for logging to an automatically generated logfile that is datestamped + (i.e. 20061002.log will be the log file generated on October 2, 2006). - added support for multiline macros sent using NEWMACRO variables (%p, %z, etc) - upped max number of lines in the message window scrollback buffer from 100 to 300 From modemhero at users.sourceforge.net Thu Aug 10 05:59:17 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Thu, 10 Aug 2006 10:59:17 +0000 Subject: [netrek-cvs] client/netrekxp/src main.c,1.9,1.10 Message-ID: Update of /cvsroot/netrek/client/netrekxp/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18982/src Modified Files: main.c Log Message: main.c: Added new startup option, -L, to log to an automatically generated logfile that is datestamped. Index: main.c =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/main.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- main.c 19 Jun 2006 04:46:03 -0000 1.9 +++ main.c 10 Aug 2006 10:59:15 -0000 1.10 @@ -46,6 +46,7 @@ LineToConsole (" [-f filename] record game into 'filename'\n"); #endif LineToConsole (" [-l filename] record messages into 'filename'\n"); + LineToConsole (" [-L] record messages into autogenerated log file with filename YYYYMMDD.log\n"); LineToConsole (" [-A] character password\n"); LineToConsole (" [-C] character name\n"); @@ -89,6 +90,8 @@ int hideConsole = 1; char *name, *ptr; int i; + time_t tm; + char s[20]; #ifdef GATEWAY int hset = 0; @@ -184,6 +187,12 @@ usage++; break; + case 'L': /* log to autogenerated file */ + tm = time(NULL); + strftime(s, 20, "%Y%m%d.log", localtime(&tm)); + logFileName = s; + break; + case 'p': /* port to connect to */ if (i < argc && argv[i + 1]) { From modemhero at users.sourceforge.net Tue Aug 15 02:18:33 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Tue, 15 Aug 2006 07:18:33 +0000 Subject: [netrek-cvs] client/netrekxp/src distress.c,1.4,1.5 Message-ID: Update of /cvsroot/netrek/client/netrekxp/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv20924/src Modified Files: distress.c Log Message: distress.c (makedistress): Fixes longstanding bug going back to 1993 where client will crash when macros with a line length >= 80 are sent. NetrekXP to do list: updated with another feature request Index: distress.c =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/distress.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- distress.c 26 May 2006 05:58:08 -0000 1.4 +++ distress.c 15 Aug 2006 07:18:31 -0000 1.5 @@ -935,7 +935,9 @@ buf3[index3] = '\0'; cry[0] = '\0'; - strncat (cry, buf3, MSG_LEN); +// strncat (cry, buf3, MSG_LEN); + /* Need room for automatic NULL termination */ + strncat (cry, buf3, MSG_LEN - 1); return (index3); } From modemhero at users.sourceforge.net Tue Aug 15 02:18:32 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Tue, 15 Aug 2006 07:18:32 +0000 Subject: [netrek-cvs] client/netrekxp NetrekXP to do list.C, 1.62, 1.63 clientr.suo, 1.42, 1.43 Message-ID: Update of /cvsroot/netrek/client/netrekxp In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv20924 Modified Files: NetrekXP to do list.C clientr.suo Log Message: distress.c (makedistress): Fixes longstanding bug going back to 1993 where client will crash when macros with a line length >= 80 are sent. NetrekXP to do list: updated with another feature request Index: NetrekXP to do list.C =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/NetrekXP to do list.C,v retrieving revision 1.62 retrieving revision 1.63 diff -u -d -r1.62 -r1.63 --- NetrekXP to do list.C 7 Aug 2006 08:04:05 -0000 1.62 +++ NetrekXP to do list.C 15 Aug 2006 07:18:30 -0000 1.63 @@ -56,6 +56,7 @@ 8) Have client utilize new server torp vector code 9) planet owner on galactic overlaps with new fuel can graphic 10) update dashboard on receiving a ship cap packet +11) Fade out ship explosion sound on quit Stas's list: - color coded playerlist. Index: clientr.suo =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/clientr.suo,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 Binary files /tmp/cvsmN5NXu and /tmp/cvsKdj8bI differ From modemhero at users.sourceforge.net Tue Aug 15 02:18:33 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Tue, 15 Aug 2006 07:18:33 +0000 Subject: [netrek-cvs] client/netrekxp/resources/docs changes.txt,1.82,1.83 Message-ID: Update of /cvsroot/netrek/client/netrekxp/resources/docs In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv20924/resources/docs Modified Files: changes.txt Log Message: distress.c (makedistress): Fixes longstanding bug going back to 1993 where client will crash when macros with a line length >= 80 are sent. NetrekXP to do list: updated with another feature request Index: changes.txt =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/changes.txt,v retrieving revision 1.82 retrieving revision 1.83 diff -u -d -r1.82 -r1.83 --- changes.txt 10 Aug 2006 10:59:15 -0000 1.82 +++ changes.txt 15 Aug 2006 07:18:30 -0000 1.83 @@ -1,4 +1,5 @@ Netrek XP 2006, Version 1.2: +- fixed longstanding crash bug with macros with more than 80 characters in a line - added -L option for logging to an automatically generated logfile that is datestamped (i.e. 20061002.log will be the log file generated on October 2, 2006). - added support for multiline macros sent using NEWMACRO variables (%p, %z, etc) From quozl at users.sourceforge.net Tue Aug 15 17:37:11 2006 From: quozl at users.sourceforge.net (James Cameron) Date: Tue, 15 Aug 2006 22:37:11 +0000 Subject: [netrek-cvs] client/cow distress.c,1.1.1.1,1.2 Message-ID: Update of /cvsroot/netrek/client/cow In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv14071 Modified Files: distress.c Log Message: follow bill Index: distress.c =================================================================== RCS file: /cvsroot/netrek/client/cow/distress.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- distress.c 1 Nov 1998 17:24:09 -0000 1.1.1.1 +++ distress.c 15 Aug 2006 22:37:09 -0000 1.2 @@ -1,6 +1,9 @@ /* distress.c * * $Log$ + * Revision 1.2 2006/08/15 22:37:09 quozl + * follow bill + * * Revision 1.1.1.1 1998/11/01 17:24:09 siegl * COW 3.0 initial revision * */ @@ -587,7 +590,7 @@ buf3[index3] = '\0'; cry[0] = '\0'; - strncat(cry, buf3, MSG_LEN); + strncat(cry, buf3, MSG_LEN - 1); return (index3); } From modemhero at users.sourceforge.net Tue Aug 22 07:12:57 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Tue, 22 Aug 2006 12:12:57 +0000 Subject: [netrek-cvs] metaserver rsa_keys,1.1,1.2 Message-ID: Update of /cvsroot/netrek/metaserver In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv14095 Modified Files: rsa_keys Log Message: (rsa_keys): Addition of Netrek XP 2006 key Index: rsa_keys =================================================================== RCS file: /cvsroot/netrek/metaserver/rsa_keys,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- rsa_keys 14 Feb 2006 06:43:11 -0000 1.1 +++ rsa_keys 22 Aug 2006 12:12:55 -0000 1.2 @@ -1194,6 +1194,12 @@ :gk=b160145c4205bba8815db0a908fcac9b99a0303ee44c204469374109e09bb782:\ :pk=8b0f3d3f1b1b8528d86545d3be9d8900f2e3130cb52248df9a5ec63ff9a15e11: # +NetrekXP-2006-RSA-Key-Win32:ct=NetrekXP 2006:cr=williamb at its.caltech.edu:\ + :cd=May 2006:ar=Win32:cl=inl,standard2:\ + :cm=NetrekXP 2006 for Windows 9x/NT/2000/XP:\ + :gk=2f31c6a223b64464d57781d36e2cc4c1102b093915ac2429653d3ba264f2639c:\ + :pk=d3c838d81f8969e6e6e3363af317636ed72f17ec5d69e77fa75d9cdb8a99132a: +# # # Temp development keys # From modemhero at users.sourceforge.net Tue Aug 22 10:53:49 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Tue, 22 Aug 2006 15:53:49 +0000 Subject: [netrek-cvs] metaserver metarc,1.1,1.2 Message-ID: Update of /cvsroot/netrek/metaserver In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv13503 Modified Files: metarc Log Message: metarc: Removes all servers on the default server list (all the servers on the list were defunct anyways). The newer metaserver solicitation code really eliminates the need for the fixed server list. Index: metarc =================================================================== RCS file: /cvsroot/netrek/metaserver/metarc,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- metarc 14 Feb 2006 06:43:11 -0000 1.1 +++ metarc 22 Aug 2006 15:53:46 -0000 1.2 @@ -72,12 +72,7 @@ # server name ----------------- IP address ---- Port -- Notes (optional) ------ # # BRONCO/VANILLA Servers (B): - -B RSAnetrek.unh.edu 0.0.0.0 2592 20 New Hampshire. -B RSAsoda.csua.berkeley.edu 0.0.0.0 2592 20 Berkeley, CA -B RSAspamburger.openface.ca 0.0.0.0 2592 20 Montreal, Canada -B RSAse.netrek.org 0.0.0.0 2592 20 Sweden -B RSAkirk.hal-pc.org 0.0.0.0 2592 20 +# # # CHAOS Servers (C): @@ -86,16 +81,10 @@ # # HOCKEY Servers (H): # -# H hockey.psychosis.net 140.186.18.198 2592 36 # # PARADISE Servers (P): # -P bode.ee.ualberta.ca 0.0.0.0 2592 20 Alberta, Canada. -P tanya.ucsd.edu 0.0.0.0 2592 20 San Diego, Ca. -P paradise.games.uk.demon.net 0.0.0.0 2592 32 -P europa.informatik.uni-frankfurt.de 141.2.20.4 2592 32 -P paradise-lost.kulua.org 0.0.0.0 2592 32 # # DOGFIGHT/BASEPRACTICE Servers (F): From modemhero at users.sourceforge.net Tue Aug 22 20:51:04 2006 From: modemhero at users.sourceforge.net (Bill Balcerski) Date: Wed, 23 Aug 2006 01:51:04 +0000 Subject: [netrek-cvs] metaserver metarc,1.2,1.3 Message-ID: Update of /cvsroot/netrek/metaserver In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32101 Modified Files: metarc Log Message: Add 1 server (continuum) to the default server list. Most of the initialization functions assume at least 1 server populating the server list before the metaserver goes into loop mode. Index: metarc =================================================================== RCS file: /cvsroot/netrek/metaserver/metarc,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- metarc 22 Aug 2006 15:53:46 -0000 1.2 +++ metarc 23 Aug 2006 01:51:02 -0000 1.3 @@ -73,6 +73,7 @@ # # BRONCO/VANILLA Servers (B): # +B RSAcontinuum.us.netrek.org 0.0.0.0 2592 20 Minnesota # # CHAOS Servers (C):