Ethereal-dev: [ethereal-dev] Plugin versioning

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Gilbert Ramirez <gram@xxxxxxxxxx>
Date: Tue, 4 Apr 2000 15:11:06 -0500
If no one has a reason against, I'm going to change the plugin version
reflected by the directory names in plugin.c:

#ifdef WIN32
static gchar std_plug_dir[] = "c:/program files/ethereal/plugins/0.8";
static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8";
#else
static gchar std_plug_dir[] = "/usr/lib/ethereal/plugins/0.8";
static gchar local_plug_dir[] = "/usr/local/lib/ethereal/plugins/0.8";
#endif


to "0.8.5", since we have introduced an ABI change in the plugin code
in this version of Ethereal. (We have done that before, too, but we
never thought to change the directory name)

--gilbert