X-Git-Url: https://gitweb.fperrin.net/?a=blobdiff_plain;f=tim%2Fprune%2FGpsPrune.java;h=5cc5c9043099ef3fe960ee425b5a5a7b281ba7f2;hb=8c8868ae29b3252f02e094c02307384cf61ba667;hp=70e1c8e7858669816843165d5dfd386b006b62ed;hpb=b361869e590bbca32664c16ac24d6296926594a5;p=GpsPrune.git diff --git a/tim/prune/GpsPrune.java b/tim/prune/GpsPrune.java index 70e1c8e..5cc5c90 100644 --- a/tim/prune/GpsPrune.java +++ b/tim/prune/GpsPrune.java @@ -35,9 +35,9 @@ import tim.prune.gui.profile.ProfileChart; public class GpsPrune { /** Version number of application, used in about screen and for version check */ - public static final String VERSION_NUMBER = "14.1"; + public static final String VERSION_NUMBER = "15.2"; /** Build number, just used for about screen */ - public static final String BUILD_NUMBER = "265a"; + public static final String BUILD_NUMBER = "283b"; /** 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);