use image/x-xcf rather than application/x-xcf to match gimp.desktop Gimp uses the xcf file extension by default, and registers to handle mime type image/x-xcf in its gimp.desktop file. ===================================================================
fix float precision bug while using timestamps as keys When using the timestamps from the input pcap, the float precision used is 6 However, by default Perl uses a precision of 5 for usage as a key in a hash. . This is problematic when the delta of 2 packets is less then 0.00001, as some of the packets will be overwritten during reading the input file. . This patch fixes this by first turning the timestamp into a string, using a precision of 6. ===================================================================