X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=tim%2Fprune%2FGpsPrune.java;h=dd907653c10eec569035e6074d6c90df3565862f;hb=88f2c3647ed9e055090484f01a959d4581f85e7d;hp=e1dc55e0574b29549d5d5596d1a8c9c6c620c753;hpb=4d5796d02a15808311c09448d79e6e7d1de9d636;p=GpsPrune.git diff --git a/tim/prune/GpsPrune.java b/tim/prune/GpsPrune.java index e1dc55e..dd90765 100644 --- a/tim/prune/GpsPrune.java +++ b/tim/prune/GpsPrune.java @@ -28,16 +28,16 @@ import tim.prune.gui.profile.ProfileChart; /** * GpsPrune is a tool to visualize, edit, convert and prune GPS data * Please see the included readme.txt or http://activityworkshop.net - * This software is copyright activityworkshop.net 2006-2012 and made available through the Gnu GPL version 2. + * This software is copyright activityworkshop.net 2006-2014 and made available through the Gnu GPL version 2. * For license details please see the included license.txt. * GpsPrune is the main entry point to the application, including initialisation and launch */ public class GpsPrune { /** Version number of application, used in about screen and for version check */ - public static final String VERSION_NUMBER = "14"; + public static final String VERSION_NUMBER = "16.3"; /** Build number, just used for about screen */ - public static final String BUILD_NUMBER = "265a"; + public static final String BUILD_NUMBER = "303c"; /** Static reference to App object */ private static App APP = null; @@ -98,8 +98,9 @@ public class GpsPrune } } } - if (showUsage) { - System.out.println("Possible parameters:" + if (showUsage) + { + System.out.println("GpsPrune - a tool for editing GPS data.\nPossible parameters:" + "\n --configfile= used to specify a configuration file" + "\n --lang= used to specify language code such as DE" + "\n --langfile= used to specify an alternative language file\n"); @@ -233,6 +234,9 @@ public class GpsPrune } catch (Exception e) {} // ignore + // Set up drag-and-drop handler to accept dropped files + frame.setTransferHandler(new FileDropHandler(APP)); + // finish off and display frame frame.pack(); frame.setSize(650, 450);