jassub 1.7.7 → 1.7.9

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.
@@ -0,0 +1,32 @@
1
+ License: NTP~disclaimer
2
+ Copyright: 2002 Keith Packard
3
+ 2014 Google, Inc.
4
+
5
+ License: MIT~old
6
+ Copyright: 2004, 2007, 2009 Red Hat, Inc.
7
+ 2012 Mozilla Foundation.
8
+ 2009 Red Hat, Inc.
9
+ 2015 Google, Inc.
10
+ 2014 Google, Inc.
11
+ 2018 Ebrahim Byagowi
12
+ 2016 Igalia S.L.
13
+ 2011 Martin Hosken
14
+ 2018 Ebrahim Byagowi.
15
+ 2019 Ebrahim Byagowi
16
+ 1998-2004 David Turner and Werner Lemberg
17
+ 2020 Ebrahim Byagowi
18
+ 2013 Red Hat, Inc.
19
+ 2011-2012 Google, Inc.
20
+ 2011 SIL International
21
+ 2018 Khaled Hosny
22
+ 2018 Google, Inc.
23
+ 2019-2020 Ebrahim Byagowi
24
+ 2012 Google, Inc.
25
+ 2017 Google, Inc.
26
+ 2007-2009 Red Hat, Inc.
27
+ 2011 Codethink Limited
28
+ 2013 Google, Inc.
29
+ 2015-2019 Ebrahim Byagowi
30
+ 2016 Google, Inc.
31
+ 2011 Google, Inc.
32
+
File without changes
@@ -0,0 +1,28 @@
1
+ License: public-domain
2
+ Copyright: 2006-2016 libass contributors
3
+
4
+ License: NTP
5
+ Copyright: 1994 Sun Microsystems, Inc.
6
+ 2016 Oleg Oshmyan <chortos@inbox.lv>
7
+ 1988-1993 The Regents of the University of California.
8
+
9
+ License: ISC
10
+ Copyright: 2015 Oleg Oshmyan <chortos@inbox.lv>
11
+ 2011-2014 Yu Zhuohuang <yuzhuohuang@qq.com>
12
+ 2013 rcombs <rcombs@rcombs.me>
13
+ 2016 Vabishchevich Nikolay <vabnick@gmail.com>
14
+ 2022 libass contributors
15
+ 2015 Stephan Vedder <stephan.vedder@gmail.com>
16
+ 2015 Vabishchevich Nikolay <vabnick@gmail.com>
17
+ interest in the
18
+ 2006-2016 libass contributors
19
+ 2021 libass contributors
20
+ 2017 Vabishchevich Nikolay <vabnick@gmail.com>
21
+ 2011 Grigori Goronzy <greg@chown.ath.cx>
22
+ 2010 Grigori Goronzy <greg@geekmind.org>
23
+ 2014 Vabishchevich Nikolay <vabnick@gmail.com>
24
+ 2015 Grigori Goronzy <greg@kinoho.net>
25
+ 2013 Stefano Pigozzi <stefano.pigozzi@gmail.com>
26
+ 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
27
+ 2009 Grigori Goronzy <greg@geekmind.org>
28
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jassub",
3
- "version": "1.7.7",
3
+ "version": "1.7.9",
4
4
  "description": "libass Subtitle Renderer and Parser library for browsers",
5
5
  "main": "src/jassub.js",
6
6
  "type": "module",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "homepage": "https://github.com/ThaUnknown/jassub",
31
31
  "dependencies": {
32
- "rvfc-polyfill": "^1.0.6"
32
+ "rvfc-polyfill": "^1.0.7"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/emscripten": "^1.39.7",
package/src/jassub.js CHANGED
@@ -520,11 +520,11 @@ export default class JASSUB extends EventTarget {
520
520
 
521
521
  /**
522
522
  * Overwrite the data of the style with the specified index.
523
- * @param {ASS_Style} event
523
+ * @param {ASS_Style} style
524
524
  * @param {Number} index
525
525
  */
526
- setStyle (event, index) {
527
- this.sendMessage('setStyle', { event, index })
526
+ setStyle (style, index) {
527
+ this.sendMessage('setStyle', { style, index })
528
528
  }
529
529
 
530
530
  /**