Move to version 0.8.9
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 7 Jun 2000 02:37:06 +0000 (02:37 +0000)
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 7 Jun 2000 02:37:06 +0000 (02:37 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2042 f5534014-38df-0310-8fa8-9805f1628bb7

configure.in
image/ethereal.rc
plugins.c

index 93712371bcc3443f8d45e34c5c807fa60fab4e0c..92b37d789c413e9c3035e75e2ea03b1ecefbc8f5 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.91 2000/05/09 03:09:55 gram Exp $
+# $Id: configure.in,v 1.92 2000/06/07 02:36:58 gram Exp $
 dnl
 dnl Process this file with autoconf 2.13 or later to produce a
 dnl configure script; 2.12 doesn't generate a "configure" script that
@@ -13,7 +13,7 @@ AC_INIT(etypes.h)
 
 AC_PREREQ(2.13)
 
-AM_INIT_AUTOMAKE(ethereal, 0.8.8)
+AM_INIT_AUTOMAKE(ethereal, 0.8.9)
 
 AM_CONDITIONAL(SETUID_INSTALL, test x$enable_setuid_install = xyes)
 
@@ -365,7 +365,7 @@ AC_ARG_WITH(plugindir,
   *) PLUGIN_DIR="$withval"
   esac
   ],
-  : ${PLUGIN_DIR=$libdir/ethereal/plugins/0.8.8}
+  : ${PLUGIN_DIR=$libdir/ethereal/plugins/0.8.9}
 )
 
 PLUGIN_DIR=`(
index 430f0df9ed84b8930c239ac47c4d7b03907426a8..db4f8095e8a5280dcc1321c38a8cd27243f5399a 100644 (file)
@@ -3,8 +3,8 @@
 ETHEREAL_ICON          ICON                    "ethereal.ico"
 
 VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,8,8,0
- PRODUCTVERSION 0,8,8,0
+ FILEVERSION 0,8,9,0
+ PRODUCTVERSION 0,8,9,0
  FILEFLAGSMASK 0x0L
 #ifdef _DEBUG
  FILEFLAGS 0x3L
@@ -19,14 +19,14 @@ BEGIN
     BEGIN
         BLOCK "040904b0"
         BEGIN
-            VALUE "CompanyName", "The Ethereal developer community\0"
+            VALUE "CompanyName", "The Ethereal developer community, http://ethereal.zing.org\0"
             VALUE "FileDescription", "Ethereal\0"
-            VALUE "FileVersion", "0.8.8\0"
-            VALUE "InternalName", "Ethereal 0.8.8\0"
+            VALUE "FileVersion", "0.8.9\0"
+            VALUE "InternalName", "Ethereal 0.8.9\0"
             VALUE "LegalCopyright", "Copyright © 2000 Gerald Combs <gerald@zing.org>, Gilbert Ramirez <gram@xiexie.org> and others\0"
             VALUE "OriginalFilename", "Ethereal.exe\0"
             VALUE "ProductName", "Ethereal\0"
-            VALUE "ProductVersion", "0.8.8\0"
+            VALUE "ProductVersion", "0.8.9\0"
         END
     END
     BLOCK "VarFileInfo"
index 55b323ffc6a360aed356cc408a1db2c02c066f5d..de0dadf418a6f7d504c788b862f9530b20fda5a0 100644 (file)
--- a/plugins.c
+++ b/plugins.c
@@ -1,7 +1,7 @@
 /* plugins.c
  * plugin routines
  *
- * $Id: plugins.c,v 1.17 2000/05/31 18:32:06 gram Exp $
+ * $Id: plugins.c,v 1.18 2000/06/07 02:36:59 gram Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@zing.org>
@@ -67,11 +67,11 @@ plugin *plugin_list;
 guint32 enabled_plugins_number;
 
 #ifdef WIN32
-static gchar std_plug_dir[] = "c:/program files/ethereal/plugins/0.8.8";
-static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8.8";
+static gchar std_plug_dir[] = "c:/program files/ethereal/plugins/0.8.9";
+static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8.9";
 #else
-static gchar std_plug_dir[] = "/usr/lib/ethereal/plugins/0.8.8";
-static gchar local_plug_dir[] = "/usr/local/lib/ethereal/plugins/0.8.8";
+static gchar std_plug_dir[] = "/usr/lib/ethereal/plugins/0.8.9";
+static gchar local_plug_dir[] = "/usr/local/lib/ethereal/plugins/0.8.9";
 #endif
 static gchar *user_plug_dir = NULL;
 static gchar *plugin_status_file = NULL;