diff --git a/Common/Message.h b/Common/Message.h
index 60aedc19e287f44d3db3b5f59a53548736ebe306..7083b7056aadd534ce30e46ba5fcc9edd1d00978 100644
--- a/Common/Message.h
+++ b/Common/Message.h
@@ -1,4 +1,4 @@
-/* $Id: Message.h,v 1.3 2000-11-23 23:20:34 geuzaine Exp $ */
+/* $Id: Message.h,v 1.4 2000-11-24 00:11:25 geuzaine Exp $ */
 #ifndef _MESSAGE_H_
 #define _MESSAGE_H_
 
@@ -26,7 +26,7 @@
 #define PARSER_INFO_STR    "Parse Info  : "
 #define DEBUG_STR          "Debug       : "
 
-#define WHITE_STR          "              "
+#define WHITE_STR          "            : "
 
 void   Signal (int signum);
 void   Msg (int level, char *fmt, ...);
diff --git a/Common/Version.h b/Common/Version.h
index 14bbbdbfb036bf17460331e4f3dffcff45cb21f2..cf27406b88776812d0cd304ff72c8c51979cbe38 100644
--- a/Common/Version.h
+++ b/Common/Version.h
@@ -1,7 +1,7 @@
 #define GMSH_VERSION  0.995
-#define GMSH_DATE     "Thu Nov 23 18:15:16 CET 2000"
-#define GMSH_HOST     "elap20.montefiore.ulg.ac.be"
+#define GMSH_DATE     "Fri Nov 24 00:22:29 CET 2000"
+#define GMSH_HOST     "geuz.montefiore.ulg.ac.be"
 #define GMSH_PACKAGER "geuzaine"
-#define GMSH_OS       "IRIX64 6.5"
+#define GMSH_OS       "Linux 2.2.16-22"
 #define GMSH_URL      "http://www.geuz.org/gmsh/"
 #define GMSH_EMAIL    "Christophe.Geuzaine@ulg.ac.be, Remacle@scorec.rpi.edu"
diff --git a/README b/README
index 43fa99c949165e88f70dd823152c7524353d5e26..adae9535b3022c551ff829063f1f9e63dee7a9c3 100644
--- a/README
+++ b/README
@@ -1,7 +1,24 @@
 
-some rules to follow:
+Some easy rules to make the code easy to read/debug/maintain:
 
-- please!, enable full warnings with your compiler (e.g. gcc -Wall)
-- use Msg() to print information/erros/etc.
+- *please* enable full warnings for your compiler (e.g. gcc -Wall)
+- *always* use Msg() to print information/erros/etc.
 - indent your files and suppress the tabs (untabify)
 
+
+To download the latset full source by CVS, type
+
+cvs -d :pserver:YOUR_NAME@elap57.montefiore.ulg.ac.be:/usr/users57/cvs-master COMMAND
+
+where YOUR_NAME is your username on elap57.montefiore.ulg.ac.be, and where COMMAND is
+first 'login' (you will be prompted for a password), and then 'checkout gmsh'. When
+this is done, you can use 'logout' to exit.
+
+To update your local version, type
+
+cvs update
+
+To submit your changes, type
+
+cvs commit
+
diff --git a/TODO b/TODO
index e6c50d86dce4c8fd3e638e92c3100124bb57c1f9..8b137891791fe96927ad78e64b0aad7bded08bdc 100644
--- a/TODO
+++ b/TODO
@@ -1,3 +1 @@
 
-affichier un point de couleur au CG de chaque element indiquant sa
-qualite.
diff --git a/Unix/Main.cpp b/Unix/Main.cpp
index 31a42865cdcd8972284cd7e55bb8f20e647c7662..c5f92e1f07946f75df3fb8c93c3fb3f1fc68325c 100644
--- a/Unix/Main.cpp
+++ b/Unix/Main.cpp
@@ -1,4 +1,4 @@
-/* $Id: Main.cpp,v 1.6 2000-11-23 23:20:35 geuzaine Exp $ */
+/* $Id: Main.cpp,v 1.7 2000-11-24 00:11:25 geuzaine Exp $ */
 
 #include <signal.h>
 
@@ -454,6 +454,8 @@ int main(int argc, char *argv[]){
   XColor  ov_color_def, ov_color_exact;
   extern char  *TextBuffer, TextAbout[1024];
  
+  fprintf(stderr, "%s, Version %g\n", gmsh_progname, GMSH_VERSION);
+
   /* Gmsh default context options */
   
   InitContext(&CTX);
@@ -462,8 +464,6 @@ int main(int argc, char *argv[]){
 
   Get_Options(argc, argv, &nbf);
 
-  Msg(INFOS, "%s %g", gmsh_progname, GMSH_VERSION);
-
   /* Initialize the static Mesh */
 
   M.Vertices = NULL ;
diff --git a/bin/dxf2geo b/bin/dxf2geo
index 575800852f2c8f325d694e49aa1f7627f21a5a58..d905c66b6223d658761de8a5fa81c732598f2b9a 100644
Binary files a/bin/dxf2geo and b/bin/dxf2geo differ