Skip to content

Commit

Permalink
1.0.3.0.0 release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Exslims committed Oct 24, 2017
1 parent 915748d commit 853cacb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.2.0.1";
public static final String APP_VERSION = "1.0.3.0.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 @@ -84,7 +84,7 @@ private JPanel getBottomPanel() {
donateDescriptor.setSize(new Dimension(100, 20));
donateDescriptor.setType(AdrComponentType.PROGRESS_BAR);
donateDescriptor.setCustomTextEnable(true);
donateDescriptor.setCustomText("77$");
donateDescriptor.setCustomText("0$");
donateDescriptor.setFontSize(21);
donateDescriptor.setLowValueTextColor(AppThemeColor.TEXT_DEFAULT);
donateDescriptor.setMediumValueTextColor(AppThemeColor.TEXT_DEFAULT);
Expand All @@ -93,7 +93,7 @@ private JPanel getBottomPanel() {
donateDescriptor.setBackgroundColor(AppThemeColor.FRAME);
donateDescriptor.setForegroundColor(AppThemeColor.BUTTON);
MercuryTracker tracker = new MercuryTracker(donateDescriptor);
tracker.setValue(87 * 1000);
tracker.setValue(1000);
tracker.setPreferredSize(donateDescriptor.getSize());
root.add(this.componentsFactory.getTextLabel("Monthly donations:", FontStyle.BOLD, 16), BorderLayout.LINE_START);
root.add(this.componentsFactory.wrapToSlide(tracker, AppThemeColor.ADR_FOOTER_BG, 2, 2, 2, 1), BorderLayout.CENTER);
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.2.0.1",
"version": "1.0.3.0.0",
"notes":[
{
"title": "Update",
"text": "More than 20k unique users, thank you a lot for support!\n\n- New feature - Whisper helper! Now you can send a trade message directly to the chat from browser. More info in notification's settings.\n- Added sound alerts to overseer.\n- Added invite button to scanner panel.\n- Added new currency icons to notification panels.\n- Auto-close notification now as option in settings.\n- Fixed a bug when settings (like DND or max/min opacity) not saved properly.",
"text": "- Fixed a bug when the amount of currency is not displayed correctly in the notification panel.\n- Fixed a bug when notification panel sometimes did not work.\n- Whisper helper now have own hotkey button.\n- And minor backend improvements.\n\nThank you for staying with us.",
"image" : "",
"layout" : "VERTICAL"
}
Expand Down

0 comments on commit 853cacb

Please sign in to comment.