Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tombh committed Jul 8, 2018
1 parent 160a19e commit f6308f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webext/manifest.json
Original file line number Diff line number Diff line change
@@ -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",

Expand Down
4 changes: 2 additions & 2 deletions webext/test/fixtures/canvas_pixels.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default class CanvasPixels {
pixels.push(0);
pixels.push(0);
}
return pixels;
return { data: pixels };
}

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

scaled() {
Expand Down

0 comments on commit f6308f0

Please sign in to comment.