ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Wireshark-dev: Re: [Wireshark-dev] Last thing before release?

From: Jeff Morriss <jeff.morriss@xxxxxxxxxxx>
Date: Tue, 27 Jun 2006 15:37:51 +0800


Jaap Keuter wrote:
Hi list,

Now that we've jumped from the Ethereal to the Wireshark bandwagon it is
time to get the users on board. This has to be done smoothly, a namechange
is difficult enough. One thing that comes to mind is importing
preferences. The user should have all the help he can get when upgrading.

So I propose to create an import 'wizard' that imports the Ethereal
application settings into Wireshark.

Why a wizard? It fullfills most (all?) scenarios:
1. simple upgrade from Ethereal to Wireshark
2. side-by-side installation of Ethereal and Wireshark.
3. Future proof, the feature has to remain in the program and can adapt
   old Ethereal application setting files when the format advances.

Only question remains, how do we guide the users to this import wizard,
without annoying then.

Tell me what you think.

if [ ! -d /wherever/wireshark/preferences/live ]
then

answer = popup "This appears to be your first time running Wireshark. Would you like to copy your Ethereal settings to Wireshark?"

	if [ $answer == yes ]; then
		cp the files
	fi
fi

Ethereal/Wireshark has always had to deal with reading in old formats of those files anyway, so just copying them shouldn't be a problem I don't think.

I suppose for Windoze this could be done at install time?