Skip to content

Commit 6d006a3

Browse files
committed
support tab updated
1 parent 913f411 commit 6d006a3

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
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.1.0";
4+
public static final String APP_VERSION = "1.0.3.2.0";
55
public static final String SERVER_HOST = "exslims.ddns.net";
66
public static final int PORT = 5555;
77
}

app-ui/src/main/java/com/mercury/platform/ui/components/panel/settings/page/SupportPagePanel.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,15 @@ public void mouseWheelMoved(MouseWheelEvent e) {
105105

106106
private List<DonationPair> getDonations() {
107107
List<DonationPair> donations = new ArrayList<>();
108+
donations.add(new DonationPair("Sklifan", AppThemeColor.TEXT_DEFAULT));
108109
donations.add(new DonationPair("222Craft", AppThemeColor.TEXT_DEFAULT));
109110
donations.add(new DonationPair("Xagulz", AppThemeColor.TEXT_DEFAULT));
110111
donations.add(new DonationPair("Taw", AppThemeColor.TEXT_DEFAULT));
111112
donations.add(new DonationPair("AMusel", AppThemeColor.TEXT_DEFAULT));
112113
donations.add(new DonationPair("Blightsand", AppThemeColor.TEXT_DEFAULT));
113114
donations.add(new DonationPair("Mattc3303", AppThemeColor.TEXT_DEFAULT));
114115
donations.add(new DonationPair("StubenZocker", AppThemeColor.TEXT_DEFAULT));
116+
donations.add(new DonationPair("Bjertsjö", AppThemeColor.TEXT_DEFAULT));
115117
donations.add(new DonationPair("SirKultan", AppThemeColor.TEXT_DEFAULT));
116118
return donations;
117119
}

app-ui/src/main/java/com/mercury/platform/ui/frame/titled/SettingsFrame.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ private JPanel getBottomPanel() {
8080

8181
AdrDurationComponentDescriptor donateDescriptor = new AdrProgressBarDescriptor();
8282
donateDescriptor.setIconEnable(false);
83-
donateDescriptor.setDuration(200d);
83+
donateDescriptor.setDuration(50d);
8484
donateDescriptor.setSize(new Dimension(100, 20));
8585
donateDescriptor.setType(AdrComponentType.PROGRESS_BAR);
8686
donateDescriptor.setCustomTextEnable(true);
87-
donateDescriptor.setCustomText("0$");
87+
donateDescriptor.setCustomText("21$");
8888
donateDescriptor.setFontSize(21);
8989
donateDescriptor.setLowValueTextColor(AppThemeColor.TEXT_DEFAULT);
9090
donateDescriptor.setMediumValueTextColor(AppThemeColor.TEXT_DEFAULT);
@@ -93,7 +93,7 @@ private JPanel getBottomPanel() {
9393
donateDescriptor.setBackgroundColor(AppThemeColor.FRAME);
9494
donateDescriptor.setForegroundColor(AppThemeColor.BUTTON);
9595
MercuryTracker tracker = new MercuryTracker(donateDescriptor);
96-
tracker.setValue(1000);
96+
tracker.setValue(22 * 1000);
9797
tracker.setPreferredSize(donateDescriptor.getSize());
9898
root.add(this.componentsFactory.getTextLabel("Monthly donations:", FontStyle.BOLD, 16), BorderLayout.LINE_START);
9999
root.add(this.componentsFactory.wrapToSlide(tracker, AppThemeColor.ADR_FOOTER_BG, 2, 2, 2, 1), BorderLayout.CENTER);

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"version": "1.0.3.1.0",
2+
"version": "1.0.3.2.0",
33
"notes":[
44
{
55
"title": "Update",
6-
"text": "- Added /whois button to outgoing notification panel.\n- Fixed a bug when sometimes notification panel won't show orb icons.\n- Many backend improvements for rework \"History\" feature in next version.\n- Support tab updated.\n\nHappy new year! If you love MercuryTrade so much it has become your favourite application to play the game - show your appreciation by supporting it! Thanks!",
6+
"text": "- Added /whois button to scanner notification panel. \n- Fixed a bug when chat scanner is not ignore nickname from chat.\n- Now notification panel works with french POE client.\n- Support tab updated.\n\nDon't forget to [support ](https://www.paypal.me/mercurytrade) the app, we really appreciate it! Thanks!",
77
"image" : "",
88
"layout" : "VERTICAL"
99
}

0 commit comments

Comments
 (0)