textmode.js 0.3.2-beta.3 → 0.4.1-beta.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.
package/README.md CHANGED
@@ -21,7 +21,7 @@ The library is designed to be easy to use and accessible to developers of all sk
21
21
  - Instanced rendering and batching for low draw call counts
22
22
  - Font system with runtime font loading and dynamic sizing *(supports TTF/OTF/WOFF)*
23
23
  - Author custom filter shaders in [`GLSL ES 3.00`](https://registry.khronos.org/OpenGL/specs/es/3.0/GLSL_ES_Specification_3.00.pdf) for advanced effects
24
- - Flexible exporting: TXT, SVG, and raster images *(PNG/JPG/WebP)*
24
+ - Flexible exporting: TXT, SVG, raster images *(PNG/JPG/WebP)*, animated GIFs, and video *(WebM)*
25
25
  - Animation loop control: `frameRate`, `loop`/`noLoop`, `redraw`, `frameCount`, etc.
26
26
  - Framework-agnostic: Use `textmode.js` with any canvas-based framework or library
27
27
  - Zero dependencies, written in TypeScript, with comprehensive type definitions
@@ -62,10 +62,10 @@ To get started with `textmode.js`, you'll need:
62
62
 
63
63
  | Bundle type | File size | Font included? | Best for |
64
64
  |-------------|-----------|---------------|----------|
65
- | **Standard UMD** (`textmode.umd.js`) | ~94kB | ✅ [UrsaFont](https://ursafrank.itch.io/ursafont) embedded | Quick setup, prototyping |
66
- | **Standard ESM** (`textmode.esm.js`) | ~121kB | ✅ [UrsaFont](https://ursafrank.itch.io/ursafont) embedded | Quick setup, prototyping |
67
- | **Minified UMD** (`textmode.umd.min.js`) | ~86kB | ❌ Requires external font | Custom fonts |
68
- | **Minified ESM** (`textmode.esm.min.js`) | ~113kB | ❌ Requires external font | Custom fonts |
65
+ | **Standard UMD** (`textmode.umd.js`) | ~87kB | ✅ [UrsaFont](https://ursafrank.itch.io/ursafont) embedded | Quick setup, prototyping |
66
+ | **Standard ESM** (`textmode.esm.js`) | ~111kB | ✅ [UrsaFont](https://ursafrank.itch.io/ursafont) embedded | Quick setup, prototyping |
67
+ | **Minified UMD** (`textmode.umd.min.js`) | ~79kB | ❌ Requires external font | Custom fonts |
68
+ | **Minified ESM** (`textmode.esm.min.js`) | ~103kB | ❌ Requires external font | Custom fonts |
69
69
 
70
70
  **Choose standard bundles for:**
71
71
  - Quick setup with no additional configuration