pull/69/head v1.2.0
Thomas Buckley-Houston 2018-07-08 15:51:57 +08:00
rodzic 160a19ece8
commit f6308f0f7b
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Browsh",
"version": "1.1.5",
"version": "1.2.0",
"description": "Renders the browser as realtime, interactive, TTY-compatible text",

Wyświetl plik

@ -38,7 +38,7 @@ export default class CanvasPixels {
pixels.push(0);
pixels.push(0);
}
return pixels;
return { data: pixels };
}
_getIndexValue(i) {
@ -69,7 +69,7 @@ export default class CanvasPixels {
pixels.push(this._getIndexValue(i));
pixels.push(0);
}
return pixels;
return { data: pixels };
}
scaled() {