Do not display changeslog in new version dialog (update check).

This commit is contained in:
Jindra Petřík
2018-01-16 19:58:46 +01:00
parent 08c8d94e29
commit ce4adf97e4
2 changed files with 26 additions and 13 deletions

View File

@@ -2248,7 +2248,10 @@ public class Main {
}
Version v = new Version();
v.versionName = versionObj.get("name").asString();
v.description = versionObj.get("body").asString();
//v.description = versionObj.get("body").asString();
//Note: "body" is Markdown formatted and contains other things than changeslog,
//we cannot show it in FFDec correctly.
v.description = "";
v.releaseDate = versionObj.get("published_at").asString();
boolean isNightly = versionObj.get("prerelease").asBoolean();
if (isNightly && !showNightly) {