Skip to content

Commit

Permalink
1.0.3.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Exslims committed Dec 16, 2019
1 parent ba5efc5 commit e452766
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.3.4.0";
public static final String APP_VERSION = "1.0.3.5.0";
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 @@ -73,7 +73,7 @@ public void parse() {
.collect(Collectors.toList());

List<String> resultMessages = filteredMessages.stream().filter(message -> {
if (message.contains("2017") || message.contains("2018") || message.contains("2019")) { //todo
if (message.contains("2019") || message.contains("2020") || message.contains("2021")) { //todo
Date date = new Date(StringUtils.substring(message, 0, 20));
return date.after(lastMessageDate);
} else {
Expand Down
2 changes: 1 addition & 1 deletion app-ui/src/main/resources/notes/patch/patch-notes.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"notes":[
{
"title": "Update",
"text": "- New feature: Syndicate rewards matrix overlay (see in taskbar) + hotkey (settings -> taskbar). Thanks @Etuldan for contributing.\n- Added support for buying bulk maps from one seller in poeapp.com\n- Fix notification panel layout when buying/selling maps from poe trade/poeapp\n- Added some new icons for currencies.\n\nHappy holidays! Don't forget to support the app. Thanks!",
"text": "-Fix \"notification panel not working\"\n- New feature: Syndicate rewards matrix overlay (see in taskbar) + hotkey (settings -> taskbar). Thanks @Etuldan for contributing.\n- Added support for buying bulk maps from one seller in poeapp.com\n- Fix notification panel layout when buying/selling maps from poe trade/poeapp\n- Added some new icons for currencies.\n\nHappy holidays! Don't forget to support the app. Thanks!",
"image" : "",
"layout" : "VERTICAL"
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<module>app</module>
<module>app-ui</module>
<module>app-core</module>
<module>app-shared</module>
<!--<module>app-shared</module>-->
<module>app-local-updater</module>
</modules>
<packaging>pom</packaging>
Expand Down

0 comments on commit e452766

Please sign in to comment.