Move to version 0.8.11
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 3 Aug 2000 01:54:53 +0000 (01:54 +0000)
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 3 Aug 2000 01:54:53 +0000 (01:54 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2196 f5534014-38df-0310-8fa8-9805f1628bb7

NEWS
config.h.win32
configure.in
image/editcap.rc
image/ethereal.rc
image/tethereal.rc
plugins.c

diff --git a/NEWS b/NEWS
index 8383516bc1a151e136a9101fb80dbaad83092935..940c662d827f4ea4b14b16ff03abe6dcca2832d6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,59 @@
+Overview of changes in Ethereal 0.8.11:
+* Set locale in tethereal (Guy)
+* Dialog box utility routines (Guy)
+* Modal window fixes (Guy)
+* GUI cleanups (Guy)
+* Add support for preferences (Guy)
+* IPv4 DiffServ is a preference (Guy)
+* Add strcasecmp.c for those systems that need it, like SINIX-M (Uwe)
+* BOOTP magic cookie fix, option-dissection fix (Guy)
+* SNMPv3 fix for security model values 1 and 2 (Guy)
+* Make AH payload dissection placement a preference (Gilbert)
+* Timestamp display fix (Guy)
+* CLNP TSAP fix (Guy)
+* NFS filehandle dissection for ReliantUNIX and Linux nfsd/knfsd (Uwe)
+* TCP summary info in protocol tree is an option (Gilbert)
+* OSPF enhancements and fixes (Michael Rozhavsky)
+* inet_aton()-related build fixes (Guy)
+* UDP has heuristic dissector table, and uses it for RPC (Uwe)
+* Dissection of RPCSEC_GSS credentials in ONC RPC (Dug Song)
+* DNSSEC additions/name changes (Jakob Schlyter)
+* Error message cleanups (Guy)
+* DNS support for MS's WINS and WINS-R resource records (Guy)
+* tvbuff-ication of H1 dissector, and response identifier display change
+       (Gerrit Gehnen)
+* SCTP dissector (Michael.Tuexen@icn.siemens.de)
+* Capture-window titlebar fix (Gilbert)
+* Support for building SVR4 binary packages (Gerald)
+* proto_tree/dfilter interaction change (Gilbert)
+* Fix URL for libpcap (Guy)
+* Improved autogen.sh script (Bruce Korb)
+* Add "debian" target to Makefile (Olivier)
+* Tethereal packet-count and new-line fix (Gilbert)
+* SNMP "agent address" trap PDU display fix (Guy)
+* Support for many more DHCP options (Jose Pedro Oliveira)
+* Compiler-warning fixes in wiretap (Guy)
+* Reset "visited" flag when rescanning a file (Gilbert)
+* Add RPM and SRPM build targets (Gerald)
+* Another shot at the undead libpcap monster fix (i.e., extra info
+       in headers for ss990915 libpcap) (Guy)
+* Add aclocal-flags to fix build headaches (Guy)
+* In proto_tree_add_item(), access tvbuff before adding anything to
+       proto_tree. (Gilbert)
+* Add Quake 1 dissector (Uwe)
+* GIOP dissector warns about unsupported GIOP versions (Gilbert)
+* dfilter2pod build fix (Gilbert)
+* Re-write of NCP dissector. Adds python to build. :) (Gilbert)
+* Fix Edit->Filters...->Apply (Richard)
+* Add DIAMETER dissector (David Frascone)
+* Display TCP RST data as text, as per RFC 1122 (Guy, with tip o' hat
+       to Kevin Steves)
+* Support for capturing from a pipe (FIFO or STDIN). (Olivier)
+* Cross-platform build fixes (Guy)
+* Fix directory-checking routines (Guy)
+* Display filters now work on string types (Gilbert)
+* Initial templates for decoding all 4 NLM protocol versions (Uwe)
+
 Overview of changes in Ethereal 0.8.10:
 * Code cleanup (Gilbert)
 * Assign port 1052 to DDTP (Olivier)
index 9a771a183a99c9e4dbd266c098d8f7fdd4b151d8..9a68351f3aa540d9b843ead3085b987ad52cdafd 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: config.h.win32,v 1.15 2000/07/31 15:55:46 guy Exp $ */
+/* $Id: config.h.win32,v 1.16 2000/08/03 01:54:43 gram Exp $ */
 /* config.h.win32 Generated manually. :-) */
 /* config.h.  Generated automatically by configure.  */
 /* config.h.in.  Generated automatically from configure.in by autoheader.  */
 /* #undef HAVE_SA_LEN */
 
 #define DATAFILE_DIR "/usr/local/etc"
-#define PLUGIN_DIR "/usr/local/lib/ethereal/plugins/0.8.10"
+#define PLUGIN_DIR "/usr/local/lib/ethereal/plugins/0.8.11"
 
 /* Version number of package */
-#define VERSION "0.8.10"
+#define VERSION "0.8.11"
 
 /* #undef NEED_SNPRINTF_H */
 
index 2db9feeea2b1ef1286624c4fb4c335a6fd4bc930..dcd933ce26068167922faee20d9d188764a3184b 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.99 2000/07/28 20:03:41 gram Exp $
+# $Id: configure.in,v 1.100 2000/08/03 01:54:44 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.10)
+AM_INIT_AUTOMAKE(ethereal, 0.8.11)
 
 AM_CONDITIONAL(SETUID_INSTALL, test x$enable_setuid_install = xyes)
 
@@ -426,7 +426,7 @@ AC_ARG_WITH(plugindir,
   *) PLUGIN_DIR="$withval"
   esac
   ],
-  : ${PLUGIN_DIR=$libdir/ethereal/plugins/0.8.10}
+  : ${PLUGIN_DIR=$libdir/ethereal/plugins/0.8.11}
 )
 
 PLUGIN_DIR=`(
index 9a69222e7c8c359f7fcf514c6462a60c85386f3b..1ea3745789e4946e01175e6e4725da87b63233c7 100644 (file)
@@ -3,8 +3,8 @@
 ETHEREAL_ICON          ICON                    "ethereal.ico"
 
 VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,8,10,0
- PRODUCTVERSION 0,8,10,0
+ FILEVERSION 0,8,11,0
+ PRODUCTVERSION 0,8,11,0
  FILEFLAGSMASK 0x0L
 #ifdef _DEBUG
  FILEFLAGS 0x3L
@@ -21,12 +21,12 @@ BEGIN
         BEGIN
             VALUE "CompanyName", "The Ethereal developer community\0"
             VALUE "FileDescription", "Editcap\0"
-            VALUE "FileVersion", "0.8.10\0"
-            VALUE "InternalName", "Editcap 0.8.10\0"
+            VALUE "FileVersion", "0.8.11\0"
+            VALUE "InternalName", "Editcap 0.8.11\0"
             VALUE "LegalCopyright", "Copyright © 2000 Gerald Combs <gerald@zing.org>, Gilbert Ramirez <gram@xiexie.org> and others\0"
             VALUE "OriginalFilename", "Editcap.exe\0"
             VALUE "ProductName", "Editcap\0"
-            VALUE "ProductVersion", "0.8.10\0"
+            VALUE "ProductVersion", "0.8.11\0"
         END
     END
     BLOCK "VarFileInfo"
index 36250a11da1bdbaccda0db2585c9302393e044c2..2a14a49f35fbb248cbf0bc2c5457f1b3152dbac7 100644 (file)
@@ -3,8 +3,8 @@
 ETHEREAL_ICON          ICON                    "ethereal.ico"
 
 VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,8,10,0
- PRODUCTVERSION 0,8,10,0
+ FILEVERSION 0,8,11,0
+ PRODUCTVERSION 0,8,11,0
  FILEFLAGSMASK 0x0L
 #ifdef _DEBUG
  FILEFLAGS 0x3L
@@ -21,12 +21,12 @@ BEGIN
         BEGIN
             VALUE "CompanyName", "The Ethereal developer community, http://ethereal.zing.org\0"
             VALUE "FileDescription", "Ethereal\0"
-            VALUE "FileVersion", "0.8.10\0"
-            VALUE "InternalName", "Ethereal 0.8.10\0"
+            VALUE "FileVersion", "0.8.11\0"
+            VALUE "InternalName", "Ethereal 0.8.11\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.10\0"
+            VALUE "ProductVersion", "0.8.11\0"
         END
     END
     BLOCK "VarFileInfo"
index f9d2c9f8f7ceb7eb595415c8b4c57a08f3264150..d33b73cbbe03f73beb966a0007e546f790892b0f 100644 (file)
@@ -3,8 +3,8 @@
 ETHEREAL_ICON          ICON                    "ethereal.ico"
 
 VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,8,10,0
- PRODUCTVERSION 0,8,10,0
+ FILEVERSION 0,8,11,0
+ PRODUCTVERSION 0,8,11,0
  FILEFLAGSMASK 0x0L
 #ifdef _DEBUG
  FILEFLAGS 0x3L
@@ -21,12 +21,12 @@ BEGIN
         BEGIN
             VALUE "CompanyName", "The Ethereal developer community\0"
             VALUE "FileDescription", "Tethereal\0"
-            VALUE "FileVersion", "0.8.10\0"
-            VALUE "InternalName", "Tethereal 0.8.10\0"
+            VALUE "FileVersion", "0.8.11\0"
+            VALUE "InternalName", "Tethereal 0.8.11\0"
             VALUE "LegalCopyright", "Copyright © 2000 Gerald Combs <gerald@zing.org>, Gilbert Ramirez <gram@xiexie.org> and others\0"
             VALUE "OriginalFilename", "Tethereal.exe\0"
             VALUE "ProductName", "Tethereal\0"
-            VALUE "ProductVersion", "0.8.10\0"
+            VALUE "ProductVersion", "0.8.11\0"
         END
     END
     BLOCK "VarFileInfo"
index 2eac3e26baf19dff962bc9436b66abf31ed511a3..64b27c8efdbb4ff78880dd8629ac640b91aa4ab5 100644 (file)
--- a/plugins.c
+++ b/plugins.c
@@ -1,7 +1,7 @@
 /* plugins.c
  * plugin routines
  *
- * $Id: plugins.c,v 1.19 2000/07/04 12:09:45 gram Exp $
+ * $Id: plugins.c,v 1.20 2000/08/03 01:54:44 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.10";
-static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8.10";
+static gchar std_plug_dir[] = "c:/program files/ethereal/plugins/0.8.11";
+static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8.11";
 #else
-static gchar std_plug_dir[] = "/usr/lib/ethereal/plugins/0.8.10";
-static gchar local_plug_dir[] = "/usr/local/lib/ethereal/plugins/0.8.10";
+static gchar std_plug_dir[] = "/usr/lib/ethereal/plugins/0.8.11";
+static gchar local_plug_dir[] = "/usr/local/lib/ethereal/plugins/0.8.11";
 #endif
 static gchar *user_plug_dir = NULL;
 static gchar *plugin_status_file = NULL;