Skip to content

Commit e452766

Browse files
committed
1.0.3.5 release
1 parent ba5efc5 commit e452766

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.mercury.platform.core;
22

33
public class MercuryConstants {
4-
public static final String APP_VERSION = "1.0.3.4.0";
4+
public static final String APP_VERSION = "1.0.3.5.0";
55
public static final String SERVER_HOST = "exslims.ddns.net";
66
public static final int PORT = 5555;
77
}

app-core/src/main/java/com/mercury/platform/core/utils/MessageFileHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public void parse() {
7373
.collect(Collectors.toList());
7474

7575
List<String> resultMessages = filteredMessages.stream().filter(message -> {
76-
if (message.contains("2017") || message.contains("2018") || message.contains("2019")) { //todo
76+
if (message.contains("2019") || message.contains("2020") || message.contains("2021")) { //todo
7777
Date date = new Date(StringUtils.substring(message, 0, 20));
7878
return date.after(lastMessageDate);
7979
} else {

app-ui/src/main/resources/notes/patch/patch-notes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"notes":[
44
{
55
"title": "Update",
6-
"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!",
6+
"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!",
77
"image" : "",
88
"layout" : "VERTICAL"
99
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<module>app</module>
1313
<module>app-ui</module>
1414
<module>app-core</module>
15-
<module>app-shared</module>
15+
<!--<module>app-shared</module>-->
1616
<module>app-local-updater</module>
1717
</modules>
1818
<packaging>pom</packaging>

0 commit comments

Comments
 (0)