@opendisplay/epaper-dithering 0.1.0 → 2.1.1

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.
Files changed (2) hide show
  1. package/README.md +7 -15
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,12 +4,12 @@ High-quality dithering algorithms for e-paper/e-ink displays, implemented in Typ
4
4
 
5
5
  ## Features
6
6
 
7
- - 🎨 **9 Dithering Algorithms**: From fast ordered dithering to high-quality error diffusion
8
- - 🎯 **6 Color Schemes**: MONO, BWR, BWY, BWRY, BWGBRY (Spectra 6), GRAYSCALE_4
9
- - 🌐 **Universal**: Works in browser (Canvas API) and Node.js (with sharp/jimp)
10
- - 📦 **Zero Dependencies**: Pure TypeScript, no image library dependencies
11
- - **Fast**: Optimized typed array operations
12
- - 🔒 **Type-Safe**: Full TypeScript support with exported types
7
+ - **9 Dithering Algorithms**: From fast ordered dithering to high-quality error diffusion
8
+ - **6 Color Schemes**: MONO, BWR, BWY, BWRY, BWGBRY (Spectra 6), GRAYSCALE_4
9
+ - **Universal**: Works in browser (Canvas API) and Node.js (with sharp/jimp)
10
+ - **Zero Dependencies**: Pure TypeScript, no image library dependencies
11
+ - **Fast**: Optimized typed array operations
12
+ - **Type-Safe**: Full TypeScript support with exported types
13
13
 
14
14
  ## Installation
15
15
 
@@ -228,12 +228,4 @@ Performance varies by device and JavaScript engine.
228
228
  ## Related Projects
229
229
 
230
230
  - **Python**: [`epaper-dithering`](https://pypi.org/project/epaper-dithering/) - Python implementation
231
- - **OpenDisplay**: [`py-opendisplay`](https://github.com/OpenDisplay-org/py-opendisplay) - Python library for OpenDisplay BLE e-paper tags
232
-
233
- ## License
234
-
235
- MIT © OpenDisplay
236
-
237
- ## Contributing
238
-
239
- Contributions welcome! Please see the [monorepo](https://github.com/OpenDisplay-org/epaper-dithering) for development setup.
231
+ - **OpenDisplay**: [`py-opendisplay`](https://github.com/OpenDisplay-org/py-opendisplay) - Python library for OpenDisplay BLE Devices
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendisplay/epaper-dithering",
3
- "version": "0.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Dithering algorithms for e-paper/e-ink displays (JavaScript/TypeScript)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",