Skip to content

Commit

Permalink
Release 1.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Gruszczyński committed Aug 19, 2022
1 parent 12b8abe commit 011c817
Show file tree
Hide file tree
Showing 8 changed files with 37 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.2.8";
public static final String APP_VERSION = "1.2.9";
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 @@ -45,6 +45,8 @@ public AdrManagerFrame(AdrProfileDescriptor selectedProfile) {
super();
this.processingHideEvent = false;
this.setTitle("MercuryTrade ADR");
this.setFocusable(true);
this.setFocusableWindowState(true);
this.setAlwaysOnTop(false);
this.selectedProfile = selectedProfile;
this.exportDialog = new AdrExportDialog(this, new ArrayList<>());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ public class ChatScannerFrame extends AbstractTitledComponentFrame {
public ChatScannerFrame() {
super();
this.processingHideEvent = false;
this.setFocusableWindowState(true);
this.setFocusable(true);
this.setAlwaysOnTop(false);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ public SettingsFrame() {
this.setAlwaysOnTop(false);
this.processingHideEvent = false;
this.processHideEffect = false;
this.setFocusable(true);
this.setFocusableWindowState(true);
this.setPreferredSize(new Dimension(1000, 600));
}

Expand Down
11 changes: 11 additions & 0 deletions app-ui/src/main/resources/notes/patch/patch-notes-new.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
[
{
"version": "1.2.9",
"fix": [
{
"changed": "Fixed button customization not working"
},
{
"changed": "Fixed blocked text fields"
}
]
},
{
"version": "1.2.8",
"fix": [
Expand Down
15 changes: 15 additions & 0 deletions release_files/MercuryTrade/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Here you can put your own sound files to change existing ones.

Simply put a sound file inside this folder and name it like the one which is used in MT.


The list of files which MT uses has names:
button-pressed.wav
chat-filter.wav
icq-message.wav
notification.wav
patch_tone.wav

Also if you want to change betrayal image to any you need just replace "helpIGImg.png" with any image with same name

All files that you want to change need to be in location resources/app
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions release_files/release_config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
<opt>-XX:+UseG1GC</opt>
</jre>
<versionInfo>
<fileVersion>1.2.8.0</fileVersion>
<txtFileVersion>1.2.8</txtFileVersion>
<fileVersion>1.2.9.0</fileVersion>
<txtFileVersion>1.2.9</txtFileVersion>
<fileDescription>MercuryTrade</fileDescription>
<copyright>Morph21</copyright>
<productVersion>1.2.8.0</productVersion>
<txtProductVersion>1.2.8</txtProductVersion>
<productVersion>1.2.9.0</productVersion>
<txtProductVersion>1.2.9</txtProductVersion>
<productName>MercuryTrade</productName>
<companyName>Morph</companyName>
<internalName>MercuryTrade</internalName>
Expand Down

0 comments on commit 011c817

Please sign in to comment.