jassub 2.2.0 → 2.2.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 +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,6 +6,10 @@
6
6
  </p>
7
7
  JASSUB is a JS wrapper for <a href="https://github.com/libass/libass">libass</a>, which renders <a href="https://en.wikipedia.org/wiki/SubStation_Alpha">SSA/ASS subtitles</a> directly in your browser. It uses Emscripten to compile libass' C++ code to WASM, and WebGL for hardware acceleration.
8
8
 
9
+ <p align="center">
10
+ <a href="https://jassub.pages.dev" target="_blank">Demo</a>
11
+ </h1>
12
+
9
13
  ## Features
10
14
 
11
15
  * Supports all SSA/ASS features (everything libass supports)
@@ -125,6 +129,8 @@ await instance.renderer.setDefaultFont('Gandhi Sans') // or you can await if if
125
129
 
126
130
  Make sure to always `await instance.ready` before running any methods!!!
127
131
 
132
+ Example usage can be found in the demo source [here](https://github.com/ThaUnknown/jassub/tree/gh-pages).
133
+
128
134
  ## Looking for backwards compatibility with much older browser engines?
129
135
 
130
136
  If you want to support even older engines, then please check the [v1.8.8 tag](https://github.com/ThaUnknown/jassub/releases/tag/1.8.8), or install it via:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jassub",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "The Fastest JavaScript SSA/ASS Subtitle Renderer For Browsers",
5
5
  "main": "dist/jassub.js",
6
6
  "type": "module",