Skip to content

Commit

Permalink
added 3.0 beta support
Browse files Browse the repository at this point in the history
  • Loading branch information
Exslims committed Jun 10, 2017
1 parent 858b5bb commit 1fe89cd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.mercury.platform.core;

public class MercuryConstants {
public static final String APP_VERSION = "1.0.1.3";
public static final String APP_VERSION = "1.0.1.4";
public static final String SERVER_HOST = "exslims.ddns.net";
public static final int PORT = 5555;
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MessageParser {
private final static String poeTradePattern = "^(.*\\s)?(.+):.+ to buy your (.+) listed for (\\d+(\\.\\d+)?)? (.+) in (Hardcore Legacy|Standard|Hardcore|Legacy)\\.?\\s*(\\(stash tab \"(.*)\"; position: left (\\d+), top (\\d+)\\))?(.*)$";
private final static String poeCurrencyPattern = "^(.*\\s)?(.+):.+ to buy your (\\d+(\\.\\d+)?)? (.+) for my (\\d+(\\.\\d+)?)? (.+) in (Hardcore Legacy|Standard|Hardcore|Legacy)\\.?\\s*(.*)$";
private final static String poeTradeNoBuyout = "^(.*\\s)?(.+):.+ to buy your (.+) in (Hardcore Legacy|Standard|Hardcore|Legacy)\\.?\\s*(\\(stash tab \"(.*)\"; position: left (\\d+), top (\\d+)\\))?\\s*(.*)$";
private final static String poeTradePattern = "^(.*\\s)?(.+):.+ to buy your (.+) listed for (\\d+(\\.\\d+)?)? (.+) in (Hardcore Legacy|Beta Standard|Standard|Beta Hardcore|Hardcore|Legacy)\\.?\\s*(\\(stash tab \"(.*)\"; position: left (\\d+), top (\\d+)\\))?(.*)$";
private final static String poeCurrencyPattern = "^(.*\\s)?(.+):.+ to buy your (\\d+(\\.\\d+)?)? (.+) for my (\\d+(\\.\\d+)?)? (.+) in (Hardcore Legacy|Beta Standard|Standard|Beta Hardcore|Hardcore|Legacy)\\.?\\s*(.*)$";
private final static String poeTradeNoBuyout = "^(.*\\s)?(.+):.+ to buy your (.+) in (Hardcore Legacy|Beta Standard|Standard|Beta Hardcore|Hardcore|Legacy)\\.?\\s*(\\(stash tab \"(.*)\"; position: left (\\d+), top (\\d+)\\))?\\s*(.*)$";

private Pattern poeTradeItemPattern;
private Pattern poeTradeCurrencyPattern;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ public TestCasesFrame() {
leagues.add("Hardcore Legacy");
leagues.add("Legacy");
leagues.add("Hardcore");
leagues.add("Beta Standard");
leagues.add("Beta Hardcore");
}

@Override
Expand Down
4 changes: 2 additions & 2 deletions app-ui/src/main/resources/notes/patch/patch-notes.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"version":"1.0.1.3",
"version":"1.0.1.4",
"notes":[
{
"title" : "Update",
"text" : "- Added sound volume sliders.\n- Updated Chat Scanner with requested features.\n- Updated Support tab.\n- Fixed the bug with notifications not displaying after some time.\n- Fixed the bug related to having too many notificatons.\n\nIf you love MercuryTrade so much it has become your favourite application to play the game - show your appreciation by supporting it!\nIf you have troubles updating please download directly from github. Thanks!",
"text" : "- MercuryTrade now has 3.0 Beta support!\nThank you for staying with us, closer to Fall of Oriath release MT will have a huge update with unique features, stay tuned!",
"image" : "",
"layout" : "VERTICAL"
}
Expand Down

0 comments on commit 1fe89cd

Please sign in to comment.