@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-01-29T16:25:48Z
3
+ - **Last updated**: 2025-02-19T20:59:58Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 201 standalone projects, maintained as part
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
@@ -4,6 +4,7 @@ import type { DitherKernel } from "./api.js";
4
4
  *
5
5
  * @remarks
6
6
  * References:
7
+ *
7
8
  * - https://beyondloom.com/blog/dither.html
8
9
  * - https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
9
10
  */
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
- * References:
7
- * - https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
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
@@ -4,6 +4,7 @@ import type { DitherKernel } from "./api.js";
4
4
  *
5
5
  * @remarks
6
6
  * References:
7
+ *
7
8
  * - https://en.wikipedia.org/wiki/Floyd%E2%80%93Steinberg_dithering
8
9
  * - https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
9
10
  */
package/jarvis.d.ts CHANGED
@@ -4,6 +4,7 @@ import type { DitherKernel } from "./api.js";
4
4
  *
5
5
  * @remarks
6
6
  * References:
7
+ *
7
8
  * - https://en.wikipedia.org/wiki/Error_diffusion#minimized_average_error
8
9
  * - https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
9
10
  */
package/ordered.d.ts CHANGED
@@ -6,7 +6,7 @@ import type { BayerMatrix, BayerSize } from "./api.js";
6
6
  *
7
7
  * @remarks
8
8
  * Reference:
9
- * - https://en.wikipedia.org/wiki/Ordered_dithering
9
+ * https://en.wikipedia.org/wiki/Ordered_dithering
10
10
  *
11
11
  * @param size -
12
12
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/pixel-dither",
3
- "version": "1.1.155",
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.22",
43
- "@thi.ng/math": "^5.11.19",
44
- "@thi.ng/pixel": "^7.3.15"
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.24.2",
48
- "typedoc": "^0.27.6",
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": "fc1d498e8d4b690db873c30cc594352a804e7a65\n"
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
- * References:
7
- * - https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
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
- * References:
7
- * - https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
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