We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8626816 + 5572feb commit 1751bd4Copy full SHA for 1751bd4
playground/misc/misc-3-release-notes.md
@@ -7,6 +7,7 @@ The CodinGame SDK is regularly updated and improved. This document lets you know
7
### 🐞 Bug fix
8
9
- `Invalid negative values for colours no longer crash the game`
10
+- `Fixed missing line breaks in the Game Summary console`
11
12
## 3.4.8
13
runner/src/main/resources/view/app.js
@@ -405,6 +405,7 @@ angular.module('player')
405
.replace(/\xa4GREEN\xa4/g, '<span class="consoleSuccess">')
406
.replace(/\xa7RED\xa7/g, '</span>')
407
.replace(/\xa7GREEN\xa7/g, '</span>')
408
+ .replace(/\n/g, '<br />')
409
410
input = input.replace(/[\u0000-\u0009\u000b-\u000c\u000e-\u001F]/g, function (c) {
411
return '\\' + c.charCodeAt(0)
0 commit comments