Compare commits

...

2 Commits

Author SHA1 Message Date
41337b8b0b update changelog 2022-02-27 16:20:26 +01:00
8fc177c730 fix new line formatting for discord log 2022-02-27 16:16:20 +01:00
2 changed files with 11 additions and 4 deletions

View File

@ -61,18 +61,19 @@ namespace EliteBGS.BGS {
foreach (Objective objective in objectives) {
StringBuilder objlog = new StringBuilder();
objlog.AppendFormat("{0}\n", GenerateObjectiveHeader(objective));
log.AppendFormat("{0}\n", GenerateObjectiveHeader(objective));
foreach (LogFormatter formatter in formatters) {
string text = formatter.GenerateLog(objective);
text = text.Trim();
if (!string.IsNullOrEmpty(text)) {
objlog.AppendFormat("{0}\n", text.Trim());
objlog.AppendFormat("{0}\n\n", text);
}
}
objlog.AppendFormat("{0}\n", GenerateObjectiveFooter(objective));
log.AppendFormat("{0}\n", objlog.ToString().Trim());
log.AppendFormat("{0}\n", GenerateObjectiveFooter(objective));
}
log.AppendFormat("{0}\n", GenerateFooter());

View File

@ -1,5 +1,11 @@
# EliteBGS changelog
## 0.1.0 on 27.02.2022
* Final release without beta in front of it.
* Several new mission names for the XML.
* A few small fixes towards the Discord log formatting.
## 0.1.0-beta14 on 26.02.2022
* Missions that give out no influence whatsoever apparently exist. Here the strategy