Skip to content

Commit ae9771a

Browse files
committed
Release 1.4.0
1 parent b0e9b1d commit ae9771a

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
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.3.9";
4+
public static final String APP_VERSION = "1.4.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/ComponentsFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ private void loadFonts() {
9797
futures.add(executor.submit(krCallable));
9898
futures.add(executor.submit(baseCallable));
9999

100-
Font base = futures.get(0).get();
101-
CJK_FONT = futures.get(1).get();
102-
KR_FONT = futures.get(2).get();
100+
Font base = futures.get(2).get();
101+
CJK_FONT = futures.get(0).get();
102+
KR_FONT = futures.get(1).get();
103103

104104

105105
// Font base = Font.createFont(Font.TRUETYPE_FONT, getClass().getClassLoader().getResourceAsStream("font/NotoSans-VariableFont.ttf"));

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
[
2+
{
3+
"version": "1.4.0",
4+
"fix": [
5+
{
6+
"changed": "Fixed loading fonts for chinese and korean letters"
7+
}
8+
]
9+
},
210
{
311
"version": "1.3.9",
412
"features": [

release_files/release_config.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
<opt>-Dfile.encoding=UTF-8</opt>
3232
</jre>
3333
<versionInfo>
34-
<fileVersion>1.3.9.0</fileVersion>
35-
<txtFileVersion>1.3.9</txtFileVersion>
34+
<fileVersion>1.4.0.0</fileVersion>
35+
<txtFileVersion>1.4.0</txtFileVersion>
3636
<fileDescription>MercuryTrade</fileDescription>
3737
<copyright>Morph21</copyright>
38-
<productVersion>1.3.9.0</productVersion>
39-
<txtProductVersion>1.3.9</txtProductVersion>
38+
<productVersion>1.4.0.0</productVersion>
39+
<txtProductVersion>1.4.0</txtProductVersion>
4040
<productName>MercuryTrade</productName>
4141
<companyName>Morph</companyName>
4242
<internalName>MercuryTrade</internalName>

0 commit comments

Comments
 (0)