[nexuiz-commits] r7313 - trunk/data

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Aug 3 15:25:59 EDT 2009


Author: div0
Date: 2009-08-03 15:25:59 -0400 (Mon, 03 Aug 2009)
New Revision: 7313

Modified:
   trunk/data/defaultNexuiz.cfg
Log:
comment


Modified: trunk/data/defaultNexuiz.cfg
===================================================================
--- trunk/data/defaultNexuiz.cfg	2009-08-03 19:15:26 UTC (rev 7312)
+++ trunk/data/defaultNexuiz.cfg	2009-08-03 19:25:59 UTC (rev 7313)
@@ -37,9 +37,23 @@
 //
 // e.g. Nexuiz 1.5.1 RC1 will be 15101
 gameversion 20000
-gameversion_min 20000 // 2.5.1 still used this
+gameversion_min 20000 // 2.5.2 still used this
 gameversion_max 20699 // 2.5 version allows any 2.6 release, but no more
 
+// compatibility guideline:
+//   version a.b.c   = a0b0c
+//   gameversion_min = a0(b-1)00 // show servers of the previous "line"
+//   gameversion_max = a0(b+1)99 // show servers of the next "line"
+// example: 2.6.3
+//   gameversion 20603
+//   gameversion_min 20500
+//   gameversion_max 20799
+// however, in 2.5.x, we will:
+//   gameversion = 20000 // let other 2.5 clients connect
+//   gameversion_min = 20000 // 2.5.x still has this, we cannot block it within 2.5
+// however, in 2.6.x, we will just:
+//   gameversion_min = 20000 // show 2.5 servers
+
 // say aliases
 alias asay_ctf_flagcarrier "say_team flag carrier at %y"
 alias asay_ctf_haveflag "say_team (%l) have the flag"



More information about the nexuiz-commits mailing list