File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
src/com/ggtracker/uploader Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,10 @@ public class Consts {
2626 public static final String APP_VERSION = "v1.0" ;
2727 /** Application release date. */
2828 public static final String APP_RELEASE_DATE = "2012-10-10" ;
29-
29+
30+ public static final String ONLINE_HELP_LINK = "http://www.ggtracker.com/uploader/help" ;
31+ public static final String ABOUT_UPLOADER_LINK = "http://www.ggtracker.com/uploader" ;
32+
3033 /** Running operating system. */
3134 public static final OperatingSystem OS = OperatingSystem .detect ();
3235
Original file line number Diff line number Diff line change @@ -158,6 +158,8 @@ public void actionPerformed( final ActionEvent event ) {
158158
159159 contentBox .add ( Box .createVerticalStrut ( SPACING ) );
160160 wrapper = new JPanel ( new FlowLayout ( FlowLayout .RIGHT , 0 , 0 ) );
161+ wrapper .add ( Utils .createLinkLabel ("Online Help" , Consts .ONLINE_HELP_LINK ));
162+ wrapper .add ( Box .createHorizontalStrut ( 20 ) );
161163 final JButton exitButton = new JButton ( "Quit and Stop Uploading Replays" );
162164 exitButton .addActionListener ( new ActionListener () {
163165 @ Override
@@ -166,8 +168,8 @@ public void actionPerformed( final ActionEvent event ) {
166168 }
167169 } );
168170 wrapper .add ( exitButton );
169- wrapper .add ( Box .createHorizontalStrut ( 3 ) );
170- wrapper .add ( Utils .createLinkLabel ( Consts .APP_VERSION , Consts .URL_HOME_PAGE ) );
171+ wrapper .add ( Box .createHorizontalStrut ( 10 ) );
172+ wrapper .add ( Utils .createLinkLabel ( Consts .APP_VERSION , Consts .ABOUT_UPLOADER_LINK ) );
171173 contentBox .add ( wrapper );
172174
173175 Utils .alignBox ( contentBox , SwingConstants .CENTER );
You can’t perform that action at this time.
0 commit comments