Skip to content

Commit

Permalink
adding patch notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Morph21 committed Oct 18, 2020
1 parent ae8bd10 commit 08d75aa
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app-shared/src/main/java/com/mercury/platform/patches/Change.java
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;
}
}
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;
}
}
35 changes: 35 additions & 0 deletions app-ui/src/main/resources/notes/pathNotesNew.json
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)"
}
]
}
]

0 comments on commit 08d75aa

Please sign in to comment.