@thi.ng/pixel-dither 1.1.155 → 1.1.157
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/atkinson.d.ts +1 -0
- package/burkes.d.ts +2 -2
- package/floyd-steinberg.d.ts +1 -0
- package/jarvis.d.ts +1 -0
- package/ordered.d.ts +1 -1
- package/package.json +7 -7
- package/sierra2.d.ts +2 -2
- package/stucki.d.ts +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 202 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
package/atkinson.d.ts
CHANGED
package/burkes.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import type { DitherKernel } from "./api.js";
|
|
|
3
3
|
* Burkes dither kernel (similar/improved version of {@link STUCKI}).
|
|
4
4
|
*
|
|
5
5
|
* @remarks
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* Reference:
|
|
7
|
+
* https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
|
|
8
8
|
*/
|
|
9
9
|
export declare const BURKES: DitherKernel;
|
|
10
10
|
//# sourceMappingURL=burkes.d.ts.map
|
package/floyd-steinberg.d.ts
CHANGED
package/jarvis.d.ts
CHANGED
package/ordered.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/pixel-dither",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.157",
|
|
4
4
|
"description": "Extensible image dithering w/ various algorithm presets",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@thi.ng/checks": "^3.6.
|
|
43
|
-
"@thi.ng/math": "^5.11.
|
|
44
|
-
"@thi.ng/pixel": "^7.3.
|
|
42
|
+
"@thi.ng/checks": "^3.6.24",
|
|
43
|
+
"@thi.ng/math": "^5.11.21",
|
|
44
|
+
"@thi.ng/pixel": "^7.3.17"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"esbuild": "^0.
|
|
48
|
-
"typedoc": "^0.27.
|
|
47
|
+
"esbuild": "^0.25.0",
|
|
48
|
+
"typedoc": "^0.27.7",
|
|
49
49
|
"typescript": "^5.7.3"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"parent": "@thi.ng/pixel",
|
|
115
115
|
"year": 2021
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "bee617702ac61d093465b967f8f973dc566faa6b\n"
|
|
118
118
|
}
|
package/sierra2.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import type { DitherKernel } from "./api.js";
|
|
|
3
3
|
* (Frankie) Sierra's 2-row dither kernel.
|
|
4
4
|
*
|
|
5
5
|
* @remarks
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* Reference:
|
|
7
|
+
* https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
|
|
8
8
|
*/
|
|
9
9
|
export declare const SIERRA2: DitherKernel;
|
|
10
10
|
//# sourceMappingURL=sierra2.d.ts.map
|
package/stucki.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import type { DitherKernel } from "./api.js";
|
|
|
3
3
|
* Stucki dither kernel (similar/improved version of {@link JARVIS_JUDICE_NINKE}).
|
|
4
4
|
*
|
|
5
5
|
* @remarks
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* Reference:
|
|
7
|
+
* https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
|
|
8
8
|
*/
|
|
9
9
|
export declare const STUCKI: DitherKernel;
|
|
10
10
|
//# sourceMappingURL=stucki.d.ts.map
|