X-Git-Url: http://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=tim%2Fprune%2FGpsPrune.java;fp=tim%2Fprune%2FGpsPruner.java;h=41dac2b0d0300538ecb9813bd8f71462e5b8c828;hp=0028093a3e3412d8a0a51d613d5e61d65d6d19d8;hb=649c5da6ee1bbc590699e11a92316ece2ea8512d;hpb=eebbb64b5d63f9eea43a0dff908c30361a376768 diff --git a/tim/prune/GpsPruner.java b/tim/prune/GpsPrune.java similarity index 93% rename from tim/prune/GpsPruner.java rename to tim/prune/GpsPrune.java index 0028093..41dac2b 100644 --- a/tim/prune/GpsPruner.java +++ b/tim/prune/GpsPrune.java @@ -26,23 +26,23 @@ import tim.prune.gui.map.MapCanvas; import tim.prune.gui.profile.ProfileChart; /** - * Prune is a tool to visualize, edit, convert and prune GPS data + * 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-2010 and made available through the Gnu GPL version 2. + * This software is copyright activityworkshop.net 2006-2011 and made available through the Gnu GPL version 2. * For license details please see the included license.txt. - * GpsPruner is the main entry point to the application, including initialisation and launch + * GpsPrune is the main entry point to the application, including initialisation and launch */ -public class GpsPruner +public class GpsPrune { /** Version number of application, used in about screen and for version check */ - public static final String VERSION_NUMBER = "12.1"; + public static final String VERSION_NUMBER = "13"; /** Build number, just used for about screen */ - public static final String BUILD_NUMBER = "224"; + public static final String BUILD_NUMBER = "240"; /** Static reference to App object */ private static App APP = null; /** Program name, used for Frame title and for Macs also on the system bar */ - private static final String PROGRAM_NAME = "Prune"; + private static final String PROGRAM_NAME = "GpsPrune"; /** @@ -200,7 +200,7 @@ public class GpsPruner UpdateMessageBroker.addSubscriber(profileDisp); StatusBar statusBar = new StatusBar(); UpdateMessageBroker.addSubscriber(statusBar); - UpdateMessageBroker.informSubscribers("Prune v" + VERSION_NUMBER); + UpdateMessageBroker.informSubscribers("GpsPrune v" + VERSION_NUMBER); // Arrange in the frame using split panes JSplitPane midSplit = new JSplitPane(JSplitPane.VERTICAL_SPLIT, mapDisp, profileDisp); @@ -235,6 +235,8 @@ public class GpsPruner frame.setVisible(true); // Set position of map/profile splitter midSplit.setDividerLocation(0.75); + // Update menu (only needed for recent file list) + UpdateMessageBroker.informSubscribers(); // Make a full screen toggler SidebarController fsc = new SidebarController(new Component[] {leftPanel, profileDisp, rightPanel},