Bump to v1.4.0

This commit is contained in:
ColonelParrot 2025-02-18 11:38:31 -05:00
parent 1fa3133944
commit 3f4b902c48
5 changed files with 424 additions and 62 deletions

View File

@ -28,7 +28,7 @@ Available on <a href="https://www.npmjs.com/package/jscanify">npm</a> or via <a
- paper scanning with distortion correction
> [!IMPORTANT]
> 🎉 _jscanify v1.3.0_ has just been released! **Same API, better results.** See the [release](https://github.com/puffinsoft/jscanify/releases/tag/v1.3.0) to see the difference! 🎉
> 🎉 _jscanify v1.3.0+_ has just been released! **Same API, better results.** See the [release](https://github.com/puffinsoft/jscanify/releases/tag/v1.3.0) to see the difference! 🎉
- 🆕 glare suppression

478
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "jscanify",
"version": "1.3.4",
"version": "1.4.0",
"description": "Open-source Javascript mobile document scanner.",
"main": "src/jscanify-node.js",
"directories": {

View File

@ -1,4 +1,4 @@
/*! jscanify v1.3.3 | (c) ColonelParrot and other contributors | MIT License */
/*! jscanify v1.4.0 | (c) ColonelParrot and other contributors | MIT License */
const { Canvas, createCanvas, Image, ImageData } = require("canvas");
const { JSDOM } = require("jsdom");

View File

@ -1,4 +1,4 @@
/*! jscanify v1.3.3 | (c) ColonelParrot and other contributors | MIT License */
/*! jscanify v1.4.0 | (c) ColonelParrot and other contributors | MIT License */
(function (global, factory) {
typeof exports === "object" && typeof module !== "undefined"