looks-same
Advanced tools
Comparing version 8.2.2 to 8.2.3
@@ -5,2 +5,9 @@ # Changelog | ||
### [8.2.3](https://github.com/gemini-testing/looks-same/compare/v8.2.2...v8.2.3) (2023-09-27) | ||
### Bug Fixes | ||
* createDiffImage off by one ([cd9744b](https://github.com/gemini-testing/looks-same/commit/cd9744b576e56b957f33c3ff2ec3c41a76457a62)) | ||
### [8.2.2](https://github.com/gemini-testing/looks-same/compare/v8.2.1...v8.2.2) (2023-09-25) | ||
@@ -7,0 +14,0 @@ |
@@ -146,3 +146,3 @@ 'use strict'; | ||
for (let x = 0; x < maxWidth; x++) { | ||
if (y > minHeight || x > minWidth) { | ||
if (y >= minHeight || x >= minWidth) { | ||
markDiff(x, y); // Out of bounds pixels considered as diff | ||
@@ -149,0 +149,0 @@ continue; |
{ | ||
"name": "looks-same", | ||
"version": "8.2.2", | ||
"version": "8.2.3", | ||
"description": "Pure node.js library for comparing PNG-images, taking into account human color perception.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54991