diff --git a/app-shared/src/main/java/com/mercury/platform/patches/Change.java b/app-shared/src/main/java/com/mercury/platform/patches/Change.java new file mode 100644 index 00000000..a9000f8d --- /dev/null +++ b/app-shared/src/main/java/com/mercury/platform/patches/Change.java @@ -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; + } +} diff --git a/app-shared/src/main/java/com/mercury/platform/patches/PatchNotes.java b/app-shared/src/main/java/com/mercury/platform/patches/PatchNotes.java new file mode 100644 index 00000000..c5670b20 --- /dev/null +++ b/app-shared/src/main/java/com/mercury/platform/patches/PatchNotes.java @@ -0,0 +1,42 @@ +package com.mercury.platform.patches; + +import java.util.List; + +public class PatchNotes { + private String version; + private List fix; + private List features; + private List minorChanges; + + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version; + } + + public List getFix() { + return fix; + } + + public void setFix(List fix) { + this.fix = fix; + } + + public List getFeatures() { + return features; + } + + public void setFeatures(List features) { + this.features = features; + } + + public List getMinorChanges() { + return minorChanges; + } + + public void setMinorChanges(List minorChanges) { + this.minorChanges = minorChanges; + } +} diff --git a/app-ui/src/main/resources/notes/pathNotesNew.json b/app-ui/src/main/resources/notes/pathNotesNew.json new file mode 100644 index 00000000..04966648 --- /dev/null +++ b/app-ui/src/main/resources/notes/pathNotesNew.json @@ -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)" + } + ] + } +] \ No newline at end of file