Move to version 0.8.8

svn path=/trunk/; revision=1925
This commit is contained in:
Gilbert Ramirez 2000-05-08 20:14:03 +00:00
parent 299ae9654e
commit d96ae25070
4 changed files with 50 additions and 12 deletions

38
NEWS
View File

@ -1,3 +1,41 @@
Overview of changes in Ethereal 0.8.8:
* Implement dissector tables for various protocols (Gilbert, Guy)
* Add "visited" flag to each frame (Gilbert, Guy)
* Renamed the DHIS protocol to DDTP (Olivier)
* Change win32 port to build as a Windows (non-console) program (Guy)
* Improved display of FTP data (Richard)
* Add icon and resource for Win32 ethereal (Graham Bloice)
* OSI fix (Guy)
* Wiretap code cleanup (Guy)
* Updates to OSI CLNP, CLTP, ISIS. Added OSI ESIS (Ralf Schneider)
* Per-frame data allocation (Richard)
* Update NCP code to use conversation types (Guy)
* Fix checksum option decoding in CC/CR TPDU in CLNP dissector (Laurent)
* Detect compressed A/C PPP fields (Greg Kilfoyle)
* Support for decoding MS Proxy protocol (Jeff Foster)
* Fragmented IPv6 fix (Guy)
* Fixes to LPD dissector (Matthijs Melchior <mmelchior@lucent.com>)
* Support for RTCP and RTP (Jason Lango)
* RTSP fixes (Guy)
* IPv4 dissector and doco fix (Ben Fowler <wapdev@leedsnet.com>)
* Add proto_tree_add_int_format() (Gilbert)
* Support IPv6 name resolution A6 packet (itojun)
* Support AD and CD bit in RFC2535 section 6 (itojun)
* Add "-s" to editcap (Guy)
* Print spaces as spaces in hex dump pane (Gilbert, Guy)
* Don't dissect encrypted payload in ISAKMP packet (Guy)
* SINEC H1 fixes (Gerrit Gehnen)
* Plugin fixes (Gerrit Gehnen)
* Win32 build fixes (Graham Bloice)
* Doco updates (Guy)
* Menu fixes (Guy)
* Dialogue window helper functions (Guy)
* GUI button-cration functions (Guy)
* Speedups in token-ring dissector (Gilbert)
* Registration of lists of "heuristic" dissectors (Guy)
* Ethereal child process error-handling (Guy)
* Fix problems with dialoge windows popping up multiple times (Guy)
Overview of changes in Ethereal 0.8.7:
* Small memleak in "Find Frame" plugged (Guy)
* Correct behavior for stopping frame search (Guy)

View File

@ -1,4 +1,4 @@
# $Id: configure.in,v 1.89 2000/04/12 21:02:49 gram Exp $
# $Id: configure.in,v 1.90 2000/05/08 20:13:55 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.7)
AM_INIT_AUTOMAKE(ethereal, 0.8.8)
AM_CONDITIONAL(SETUID_INSTALL, test x$enable_setuid_install = xyes)

View File

@ -3,8 +3,8 @@
ETHEREAL_ICON ICON "ethereal.ico"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,8,7,0
PRODUCTVERSION 0,8,7,0
FILEVERSION 0,8,8,0
PRODUCTVERSION 0,8,8,0
FILEFLAGSMASK 0x0L
#ifdef _DEBUG
FILEFLAGS 0x3L
@ -21,12 +21,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "The Ethereal developer community\0"
VALUE "FileDescription", "Ethereal\0"
VALUE "FileVersion", "0.8.7\0"
VALUE "InternalName", "Ethereal 0.8.7\0"
VALUE "FileVersion", "0.8.8\0"
VALUE "InternalName", "Ethereal 0.8.8\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.7\0"
VALUE "ProductVersion", "0.8.8\0"
END
END
BLOCK "VarFileInfo"

View File

@ -1,7 +1,7 @@
/* plugins.c
* plugin routines
*
* $Id: plugins.c,v 1.15 2000/05/05 09:32:10 guy Exp $
* $Id: plugins.c,v 1.16 2000/05/08 20:13:55 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.7";
static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8.7";
static gchar std_plug_dir[] = "c:/program files/ethereal/plugins/0.8.8";
static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8.8";
#else
static gchar std_plug_dir[] = "/usr/lib/ethereal/plugins/0.8.7";
static gchar local_plug_dir[] = "/usr/local/lib/ethereal/plugins/0.8.7";
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";
#endif
static gchar *user_plug_dir = NULL;
static gchar *plugin_status_file = NULL;