forked from Exslims/MercuryTrade
-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
app-shared/src/main/java/com/mercury/platform/patches/Change.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.mercury.platform.patches; | ||
|
||
public class Change { | ||
private String changed; | ||
|
||
public String getChanged() { | ||
return changed; | ||
} | ||
|
||
public void setChanged(String changed) { | ||
this.changed = changed; | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
app-shared/src/main/java/com/mercury/platform/patches/PatchNotes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package com.mercury.platform.patches; | ||
|
||
import java.util.List; | ||
|
||
public class PatchNotes { | ||
private String version; | ||
private List<Change> fix; | ||
private List<Change> features; | ||
private List<Change> minorChanges; | ||
|
||
public String getVersion() { | ||
return version; | ||
} | ||
|
||
public void setVersion(String version) { | ||
this.version = version; | ||
} | ||
|
||
public List<Change> getFix() { | ||
return fix; | ||
} | ||
|
||
public void setFix(List<Change> fix) { | ||
this.fix = fix; | ||
} | ||
|
||
public List<Change> getFeatures() { | ||
return features; | ||
} | ||
|
||
public void setFeatures(List<Change> features) { | ||
this.features = features; | ||
} | ||
|
||
public List<Change> getMinorChanges() { | ||
return minorChanges; | ||
} | ||
|
||
public void setMinorChanges(List<Change> minorChanges) { | ||
this.minorChanges = minorChanges; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[ | ||
{ | ||
"version": "1.1.0", | ||
"fix": [ | ||
{ | ||
"changed": "Fixed occasional crashes" | ||
}, | ||
{ | ||
"changed": "Fixed issue with nullpointer exception while message was corrupted" | ||
} | ||
], | ||
"features": [ | ||
{ | ||
"changed": "Expanded scale values from 90-150% to 50-200%" | ||
}, | ||
{ | ||
"changed": "Added kick/leave feature which can be set up for incoming messages responses" | ||
} | ||
], | ||
"minorChanges": [ | ||
{ | ||
"changed": "Changed font size of game path to make it more readable" | ||
}, | ||
{ | ||
"changed": "Deleted all paypal and discord links" | ||
}, | ||
{ | ||
"changed": "Changed github repo links from Exslims to this Fork" | ||
}, | ||
{ | ||
"changed": "Disabled not working update service (startup is faster now)" | ||
} | ||
] | ||
} | ||
] |