Skip to content

Commit

Permalink
MILESTONE ver. 3.30
Browse files Browse the repository at this point in the history
icza committed Mar 12, 2010
1 parent 8dd24be commit 3b25cf1
Showing 5 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion latest_stable_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.20 2010-02-01
3.30 2010-03-12
3 changes: 3 additions & 0 deletions src/hu/belicza/andras/bwhfagent/Consts.java
Original file line number Diff line number Diff line change
@@ -31,6 +31,9 @@ public class Consts {
/** Players' Network page url string. */
public static final String PLAYERS_NETWORK_PAGE_URL = "http://bwhf.net/hackerdb/players";

/** Sc2gears home page string. */
public static final String SC2GEARS_HOME_PAGE_URL = "http://sites.google.com/site/sc2gears";

/** URL of the BWHF hacker data base server. */
public static final String BWHF_HACKER_DATA_BASE_SERVER_URL = "http://bwhf.net/hackerdb/hackers";
/** URL of the Players' Network processor server. */
2 changes: 1 addition & 1 deletion src/hu/belicza/andras/bwhfagent/current_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.20 2010-02-01
3.30 2010-03-12
8 changes: 7 additions & 1 deletion src/hu/belicza/andras/bwhfagent/view/AboutTab.java
Original file line number Diff line number Diff line change
@@ -91,14 +91,20 @@ public void actionPerformed( final ActionEvent event ) {
}
} );
buttonsPanel.add( button );
buttonsPanel.add( button );
button = new JButton( "Visit Players' Network", IconResourceManager.ICON_WORLD_GO );
button.addActionListener( new ActionListener() {
public void actionPerformed( final ActionEvent event ) {
Utils.showURLInBrowser( Consts.PLAYERS_NETWORK_PAGE_URL );
}
} );
buttonsPanel.add( button );
button = new JButton( "Visit Sc2gears home page", IconResourceManager.ICON_WORLD_GO );
button.addActionListener( new ActionListener() {
public void actionPerformed( final ActionEvent event ) {
Utils.showURLInBrowser( Consts.SC2GEARS_HOME_PAGE_URL );
}
} );
buttonsPanel.add( button );
contentBox.add( buttonsPanel );

if ( SwingWTUtils.isWindows() ) {
3 changes: 2 additions & 1 deletion src/hu/belicza/andras/bwhfagent/view/MainFrame.java
Original file line number Diff line number Diff line change
@@ -84,7 +84,8 @@ public class MainFrame extends JFrame {
"Leaving all fields empty on the Replay search tab will add all selected replays or all replays in a folder.",
"If you're using a non-English version of Starcraft, you can modify the ignored names on the Player checker tab for your language.",
"Most buttons have hotkeys. If they're hidden, press ALT to see the hotkeys in Win 7 and Vista.",
"You can hide certain buildings on the Map view chart if you filter the action list."
"You can hide certain buildings on the Map view chart if you filter the action list.",
"Are you playing StarCraft 2? Then check out the Sc2gears project."
};

/** Stores the reference of the main frame. */

0 comments on commit 3b25cf1

Please sign in to comment.